Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListTraceConfigOverridesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListTraceConfigOverridesResponse
- 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
Response for ListTraceConfigOverrides.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token value that can be passed as
page_tokento retrieve the next page of content. -
#trace_config_overrides ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOverride>
List all trace configuration overrides in an environment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListTraceConfigOverridesResponse
constructor
A new instance of GoogleCloudApigeeV1ListTraceConfigOverridesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListTraceConfigOverridesResponse
Returns a new instance of GoogleCloudApigeeV1ListTraceConfigOverridesResponse.
5147 5148 5149 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5147 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token value that can be passed as page_token to retrieve the next page of
content.
Corresponds to the JSON property nextPageToken
5140 5141 5142 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5140 def next_page_token @next_page_token end |
#trace_config_overrides ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOverride>
List all trace configuration overrides in an environment.
Corresponds to the JSON property traceConfigOverrides
5145 5146 5147 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5145 def trace_config_overrides @trace_config_overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5152 5153 5154 5155 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5152 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @trace_config_overrides = args[:trace_config_overrides] if args.key?(:trace_config_overrides) end |