Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ListPluginInstancesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApihubV1::GoogleCloudApihubV1ListPluginInstancesResponse
- 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 ListPluginInstances method's response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#plugin_instances ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1PluginInstance>
The plugin instances from the specified parent resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApihubV1ListPluginInstancesResponse
constructor
A new instance of GoogleCloudApihubV1ListPluginInstancesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApihubV1ListPluginInstancesResponse
Returns a new instance of GoogleCloudApihubV1ListPluginInstancesResponse.
3171 3172 3173 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3171 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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
3164 3165 3166 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3164 def next_page_token @next_page_token end |
#plugin_instances ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1PluginInstance>
The plugin instances from the specified parent resource.
Corresponds to the JSON property pluginInstances
3169 3170 3171 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3169 def plugin_instances @plugin_instances end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3176 3177 3178 3179 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3176 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @plugin_instances = args[:plugin_instances] if args.key?(:plugin_instances) end |