Class: Google::Apis::ServiceusageV1beta1::ListServicesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListServicesResponse

Returns a new instance of ListServicesResponse.



4167
4168
4169
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4167

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

Instance Attribute Details

#next_page_tokenString

Token that can be passed to ListServices to resume a paginated query. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4160
4161
4162
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4160

def next_page_token
  @next_page_token
end

#servicesArray<Google::Apis::ServiceusageV1beta1::Service>

The available services for the requested project. Corresponds to the JSON property services



4165
4166
4167
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4165

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4172
4173
4174
4175
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4172

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @services = args[:services] if args.key?(:services)
end