class Google::Apis::ConnectorsV1::ListConnectorsResponse

Response message for Connectors.ListConnectors.

Attributes

connectors[RW]

A list of connectors. Corresponds to the JSON property ‘connectors` @return [Array<Google::Apis::ConnectorsV1::Connector>]

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