class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DebugSession

Attributes

count[RW]

Optional. The number of request to be traced. Min = 1, Max = 15, Default = 10. Corresponds to the JSON property `count` @return [Fixnum]

filter[RW]

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` @return [String]

name[RW]

A unique ID for this DebugSession. Corresponds to the JSON property `name` @return [String]

timeout[RW]

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` @return [Fixnum]

tracesize[RW]

Optional. The maximum number of bytes captured from the response payload. Min = 0, Max = 5120, Default = 5120. Corresponds to the JSON property `tracesize` @return [Fixnum]

validity[RW]

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` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2062
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 2067
def update!(**args)
  @count = args[:count] if args.key?(:count)
  @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