Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ListApiOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApihubV1::GoogleCloudApihubV1ListApiOperationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apihub_v1/classes.rb,
lib/google/apis/apihub_v1/representations.rb,
lib/google/apis/apihub_v1/representations.rb
Overview
The ListApiOperations method's response.
Instance Attribute Summary collapse
-
#api_operations ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1ApiOperation>
The operations corresponding to an API version.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApihubV1ListApiOperationsResponse
constructor
A new instance of GoogleCloudApihubV1ListApiOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApihubV1ListApiOperationsResponse
Returns a new instance of GoogleCloudApihubV1ListApiOperationsResponse.
2910 2911 2912 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 2910 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_operations ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1ApiOperation>
The operations corresponding to an API version.
Corresponds to the JSON property apiOperations
2902 2903 2904 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 2902 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
2908 2909 2910 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 2908 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2915 2916 2917 2918 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 2915 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 |