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.



5846
5847
5848
# File 'lib/google/apis/apigee_v1/classes.rb', line 5846

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)


5839
5840
5841
# File 'lib/google/apis/apigee_v1/classes.rb', line 5839

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



5844
5845
5846
# File 'lib/google/apis/apigee_v1/classes.rb', line 5844

def trace_config_overrides
  @trace_config_overrides
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5851
5852
5853
5854
# File 'lib/google/apis/apigee_v1/classes.rb', line 5851

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