Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListAuthConfigsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb

Overview

Response to list AuthConfigs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListAuthConfigsResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaListAuthConfigsResponse.



7372
7373
7374
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7372

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#auth_configsArray<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAuthConfig>

The list of AuthConfigs retrieved. Corresponds to the JSON property authConfigs



7365
7366
7367
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7365

def auth_configs
  @auth_configs
end

#next_page_tokenString

The token used to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7370
7371
7372
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7370

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7377
7378
7379
7380
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7377

def update!(**args)
  @auth_configs = args[:auth_configs] if args.key?(:auth_configs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end