Class: Google::Apis::IamV1::ListWorkloadIdentityPoolProvidersResponse

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

Overview

Response message for ListWorkloadIdentityPoolProviders.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWorkloadIdentityPoolProvidersResponse

Returns a new instance of ListWorkloadIdentityPoolProvidersResponse.



1300
1301
1302
# File 'lib/google/apis/iam_v1/classes.rb', line 1300

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

Instance Attribute Details

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1293
1294
1295
# File 'lib/google/apis/iam_v1/classes.rb', line 1293

def next_page_token
  @next_page_token
end

#workload_identity_pool_providersArray<Google::Apis::IamV1::WorkloadIdentityPoolProvider>

A list of providers. Corresponds to the JSON property workloadIdentityPoolProviders



1298
1299
1300
# File 'lib/google/apis/iam_v1/classes.rb', line 1298

def workload_identity_pool_providers
  @workload_identity_pool_providers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1305
1306
1307
1308
# File 'lib/google/apis/iam_v1/classes.rb', line 1305

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