Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
- 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
-
#auth_configs ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAuthConfig>
The list of AuthConfigs retrieved.
-
#next_page_token ⇒ String
The token used to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListAuthConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListAuthConfigsResponse.
7260 7261 7262 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7260 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth_configs ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAuthConfig>
The list of AuthConfigs retrieved.
Corresponds to the JSON property authConfigs
7253 7254 7255 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7253 def auth_configs @auth_configs end |
#next_page_token ⇒ String
The token used to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
7258 7259 7260 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7258 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7265 7266 7267 7268 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7265 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 |