Class: Google::Apis::ApigatewayV1::ApigatewayListOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigatewayV1::ApigatewayListOperationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigateway_v1/classes.rb,
lib/google/apis/apigateway_v1/representations.rb,
lib/google/apis/apigateway_v1/representations.rb
Overview
The response message for Operations.ListOperations.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The standard List next-page token.
-
#operations ⇒ Array<Google::Apis::ApigatewayV1::ApigatewayOperation>
A list of operations that matches the specified filter in the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApigatewayListOperationsResponse
constructor
A new instance of ApigatewayListOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApigatewayListOperationsResponse
Returns a new instance of ApigatewayListOperationsResponse.
695 696 697 |
# File 'lib/google/apis/apigateway_v1/classes.rb', line 695 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The standard List next-page token.
Corresponds to the JSON property nextPageToken
688 689 690 |
# File 'lib/google/apis/apigateway_v1/classes.rb', line 688 def next_page_token @next_page_token end |
#operations ⇒ Array<Google::Apis::ApigatewayV1::ApigatewayOperation>
A list of operations that matches the specified filter in the request.
Corresponds to the JSON property operations
693 694 695 |
# File 'lib/google/apis/apigateway_v1/classes.rb', line 693 def operations @operations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
700 701 702 703 |
# File 'lib/google/apis/apigateway_v1/classes.rb', line 700 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) end |