Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DebugSession
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DebugSession
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Optional.
-
#create_time ⇒ String
Output only.
-
#filter ⇒ String
Optional.
-
#name ⇒ String
A unique ID for this DebugSession.
-
#timeout ⇒ Fixnum
Optional.
-
#tracesize ⇒ Fixnum
Optional.
-
#validity ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1DebugSession
constructor
A new instance of GoogleCloudApigeeV1DebugSession.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1DebugSession
Returns a new instance of GoogleCloudApigeeV1DebugSession.
3151 3152 3153 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3151 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Optional. The number of request to be traced. Min = 1, Max = 15, Default = 10.
Corresponds to the JSON property count
3113 3114 3115 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3113 def count @count end |
#create_time ⇒ String
Output only. The first transaction creation timestamp, recorded by UAP.
Corresponds to the JSON property createTime
3118 3119 3120 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3118 def create_time @create_time end |
#filter ⇒ String
Optional. A conditional statement which is evaluated against the request
message to determine if it should be traced. Syntax matches that of on API
Proxy bundle flow Condition.
Corresponds to the JSON property filter
3125 3126 3127 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3125 def filter @filter end |
#name ⇒ String
A unique ID for this DebugSession.
Corresponds to the JSON property name
3130 3131 3132 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3130 def name @name end |
#timeout ⇒ Fixnum
Optional. The time in seconds after which this DebugSession should end. This
value will override the value in query param, if both are provided.
Corresponds to the JSON property timeout
3136 3137 3138 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3136 def timeout @timeout end |
#tracesize ⇒ Fixnum
Optional. The maximum number of bytes captured from the response payload. Min =
0, Max = 5120, Default = 5120.
Corresponds to the JSON property tracesize
3142 3143 3144 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3142 def tracesize @tracesize end |
#validity ⇒ Fixnum
Optional. The length of time, in seconds, that this debug session is valid,
starting from when it's received in the control plane. Min = 1, Max = 15,
Default = 10.
Corresponds to the JSON property validity
3149 3150 3151 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3149 def validity @validity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3156 3157 3158 3159 3160 3161 3162 3163 3164 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 3156 def update!(**args) @count = args[:count] if args.key?(:count) @create_time = args[:create_time] if args.key?(:create_time) @filter = args[:filter] if args.key?(:filter) @name = args[:name] if args.key?(:name) @timeout = args[:timeout] if args.key?(:timeout) @tracesize = args[:tracesize] if args.key?(:tracesize) @validity = args[:validity] if args.key?(:validity) end |