Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListTraceConfigOverridesResponse

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

Response for ListTraceConfigOverrides.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListTraceConfigOverridesResponse

Returns a new instance of GoogleCloudApigeeV1ListTraceConfigOverridesResponse.



6559
6560
6561
# File 'lib/google/apis/apigee_v1/classes.rb', line 6559

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

Instance Attribute Details

#next_page_tokenString

Token value that can be passed as page_token to retrieve the next page of content. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6552
6553
6554
# File 'lib/google/apis/apigee_v1/classes.rb', line 6552

def next_page_token
  @next_page_token
end

#trace_config_overridesArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOverride>

List all trace configuration overrides in an environment. Corresponds to the JSON property traceConfigOverrides



6557
6558
6559
# File 'lib/google/apis/apigee_v1/classes.rb', line 6557

def trace_config_overrides
  @trace_config_overrides
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6564
6565
6566
6567
# File 'lib/google/apis/apigee_v1/classes.rb', line 6564

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