class Google::Apis::ConnectorsV1::ListConnectorVersionsResponse
Response message for Connectors.ListConnectorVersions.
Attributes
connector_versions[RW]
A list of connector versions. Corresponds to the JSON property ‘connectorVersions` @return [Array<Google::Apis::ConnectorsV1::ConnectorVersion>]
next_page_token[RW]
Next page token. Corresponds to the JSON property ‘nextPageToken` @return [String]
unreachable[RW]
Locations that could not be reached. Corresponds to the JSON property ‘unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1057 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/connectors_v1/classes.rb, line 1062 def update!(**args) @connector_versions = args[:connector_versions] if args.key?(:connector_versions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end