class Google::Apis::ConnectorsV1::ListConnectionsResponse

Response message for ConnectorsService.ListConnections

Attributes

connections[RW]

Connections. Corresponds to the JSON property ‘connections` @return [Array<Google::Apis::ConnectorsV1::Connection>]

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 1026
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 1031
def update!(**args)
  @connections = args[:connections] if args.key?(:connections)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end