Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ListPluginInstancesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tokenString

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

Returns:

  • (String)


3164
3165
3166
# File 'lib/google/apis/apihub_v1/classes.rb', line 3164

def next_page_token
  @next_page_token
end

#plugin_instancesArray<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