Class: Google::Apis::ServicemanagementV1::ListServiceConfigsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb

Overview

Response message for ListServiceConfigs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListServiceConfigsResponse

Returns a new instance of ListServiceConfigsResponse.



2309
2310
2311
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2309

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

Instance Attribute Details

#next_page_tokenString

The token of the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2302
2303
2304
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2302

def next_page_token
  @next_page_token
end

#service_configsArray<Google::Apis::ServicemanagementV1::Service>

The list of service configuration resources. Corresponds to the JSON property serviceConfigs



2307
2308
2309
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2307

def service_configs
  @service_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2314
2315
2316
2317
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2314

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