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.
      6559 6560 6561  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6559 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
      6552 6553 6554  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6552 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
      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  |