class Google::Apis::ConnectorsV1::ListProvidersResponse

Response message for Connectors.ListProviders.

Attributes

next_page_token[RW]

Next page token. Corresponds to the JSON property ‘nextPageToken` @return [String]

providers[RW]

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

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