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

Inherits:
Object
  • Object
show all
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

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.



7409
7410
7411
# File 'lib/google/apis/apigee_v1/classes.rb', line 7409

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)


7402
7403
7404
# File 'lib/google/apis/apigee_v1/classes.rb', line 7402

def id
  @id
end

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

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



7407
7408
7409
# File 'lib/google/apis/apigee_v1/classes.rb', line 7407

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7414
7415
7416
7417
# File 'lib/google/apis/apigee_v1/classes.rb', line 7414

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