Class: Google::Apis::ServiceusageV1beta1::ListServicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1beta1::ListServicesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceusage_v1beta1/classes.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb
Overview
Response message for the ListServices method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token that can be passed to
ListServicesto resume a paginated query. -
#services ⇒ Array<Google::Apis::ServiceusageV1beta1::Service>
The available services for the requested project.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListServicesResponse
constructor
A new instance of ListServicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListServicesResponse
Returns a new instance of ListServicesResponse.
3203 3204 3205 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 3203 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token that can be passed to ListServices to resume a paginated query.
Corresponds to the JSON property nextPageToken
3196 3197 3198 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 3196 def next_page_token @next_page_token end |
#services ⇒ Array<Google::Apis::ServiceusageV1beta1::Service>
The available services for the requested project.
Corresponds to the JSON property services
3201 3202 3203 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 3201 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3208 3209 3210 3211 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 3208 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end |