class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Point

Point is a group of information collected by runtime plane at critical points of the message flow of the processed API request. This is a list of supported point IDs, categorized to three major buckets. For each category, debug points that we are currently supporting are listed below: - Flow status debug points: StateChange FlowInfo Condition Execution DebugMask Error - Flow control debug points: FlowCallout Paused Resumed FlowReturn BreakFlow Error - Runtime debug points: ScriptExecutor FlowCalloutStepDefinition CustomTarget StepDefinition Oauth2ServicePoint RaiseFault NodeJS The detail information of the given debug point is stored in a list of results.

Attributes

id[RW]

Name of a step in the transaction. Corresponds to the JSON property `id` @return [String]

results[RW]

List of results extracted from a given debug point. Corresponds to the JSON property `results` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Result>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 5243
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 5248
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @results = args[:results] if args.key?(:results)
end