Class: Google::Apis::ApimV1alpha::ListApiOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApimV1alpha::ListApiOperationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apim_v1alpha/classes.rb,
lib/google/apis/apim_v1alpha/representations.rb,
lib/google/apis/apim_v1alpha/representations.rb more...
Overview
Message for response to listing ApiOperations
Instance Attribute Summary collapse
-
#api_operations ⇒ Array<Google::Apis::ApimV1alpha::ApiOperation>
The ApiOperations from the specified project and location and ObservationJob and ApiObservation.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListApiOperationsResponse
constructor
A new instance of ListApiOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListApiOperationsResponse
Returns a new instance of ListApiOperationsResponse.
470 471 472 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 470 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_operations ⇒ Array<Google::Apis::ApimV1alpha::ApiOperation>
The ApiOperations from the specified project and location and ObservationJob
and ApiObservation.
Corresponds to the JSON property apiOperations
462 463 464 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 462 def api_operations @api_operations end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
468 469 470 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 468 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
475 476 477 478 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 475 def update!(**args) @api_operations = args[:api_operations] if args.key?(:api_operations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |