Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Point

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Point

Returns a new instance of GoogleCloudApigeeV1Point.



4462
4463
4464
# File 'generated/google/apis/apigee_v1/classes.rb', line 4462

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

Name of a step in the transaction. Corresponds to the JSON property id

Returns:

  • (String)


4455
4456
4457
# File 'generated/google/apis/apigee_v1/classes.rb', line 4455

def id
  @id
end

#resultsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Result>

List of results extracted from a given debug point. Corresponds to the JSON property results



4460
4461
4462
# File 'generated/google/apis/apigee_v1/classes.rb', line 4460

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4467
4468
4469
4470
# File 'generated/google/apis/apigee_v1/classes.rb', line 4467

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @results = args[:results] if args.key?(:results)
end