Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ListDiscoveredApiOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApihubV1::GoogleCloudApihubV1ListDiscoveredApiOperationsResponse
- 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
Message for response to listing DiscoveredApiOperations
Instance Attribute Summary collapse
-
#discovered_api_operations ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1DiscoveredApiOperation>
The DiscoveredApiOperations from the specified project, location and DiscoveredApiObservation.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApihubV1ListDiscoveredApiOperationsResponse
constructor
A new instance of GoogleCloudApihubV1ListDiscoveredApiOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApihubV1ListDiscoveredApiOperationsResponse
Returns a new instance of GoogleCloudApihubV1ListDiscoveredApiOperationsResponse.
3093 3094 3095 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3093 def initialize(**args) update!(**args) end |
Instance Attribute Details
#discovered_api_operations ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1DiscoveredApiOperation>
The DiscoveredApiOperations from the specified project, location and
DiscoveredApiObservation.
Corresponds to the JSON property discoveredApiOperations
3085 3086 3087 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3085 def discovered_api_operations @discovered_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
3091 3092 3093 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3091 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3098 3099 3100 3101 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3098 def update!(**args) @discovered_api_operations = args[:discovered_api_operations] if args.key?(:discovered_api_operations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |