Class: Google::Apis::ServicemanagementV1::ListServiceConfigsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServicemanagementV1::ListServiceConfigsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
 generated/google/apis/servicemanagement_v1/representations.rb,
 generated/google/apis/servicemanagement_v1/representations.rb
Overview
Response message for ListServiceConfigs method.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token of the next page of results. 
- 
  
    
      #service_configs  ⇒ Array<Google::Apis::ServicemanagementV1::Service> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of service configuration resources. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListServiceConfigsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListServiceConfigsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListServiceConfigsResponse
Returns a new instance of ListServiceConfigsResponse
| 1984 1985 1986 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1984 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
The token of the next page of results.
Corresponds to the JSON property nextPageToken
| 1977 1978 1979 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1977 def next_page_token @next_page_token end | 
#service_configs ⇒ Array<Google::Apis::ServicemanagementV1::Service>
The list of service configuration resources.
Corresponds to the JSON property serviceConfigs
| 1982 1983 1984 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1982 def service_configs @service_configs end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1989 1990 1991 1992 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1989 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @service_configs = args[:service_configs] if args.key?(:service_configs) end |