class Google::Apis::ManagedidentitiesV1alpha1::ListSqlIntegrationsResponse

ListSQLIntegrationsResponse is the response message for ListSQLIntegrations method.

Attributes

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

sql_integrations[RW]

A list of SQLIntegrations of a domain. Corresponds to the JSON property `sqlIntegrations` @return [Array<Google::Apis::ManagedidentitiesV1alpha1::SqlIntegration>]

unreachable[RW]

A list of 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/managedidentities_v1alpha1/classes.rb, line 1239
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/managedidentities_v1alpha1/classes.rb, line 1244
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @sql_integrations = args[:sql_integrations] if args.key?(:sql_integrations)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end