Class: Google::Apis::IamV1::ListWorkloadIdentityPoolProviderKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::ListWorkloadIdentityPoolProviderKeysResponse
- 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 ListWorkloadIdentityPoolProviderKeys.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#workload_identity_pool_provider_keys ⇒ Array<Google::Apis::IamV1::WorkloadIdentityPoolProviderKey>
A list of WorkloadIdentityPoolProviderKey Corresponds to the JSON property
workloadIdentityPoolProviderKeys
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListWorkloadIdentityPoolProviderKeysResponse
constructor
A new instance of ListWorkloadIdentityPoolProviderKeysResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListWorkloadIdentityPoolProviderKeysResponse
Returns a new instance of ListWorkloadIdentityPoolProviderKeysResponse.
1274 1275 1276 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1274 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1267 1268 1269 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1267 def next_page_token @next_page_token end |
#workload_identity_pool_provider_keys ⇒ Array<Google::Apis::IamV1::WorkloadIdentityPoolProviderKey>
A list of WorkloadIdentityPoolProviderKey
Corresponds to the JSON property workloadIdentityPoolProviderKeys
1272 1273 1274 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1272 def workload_identity_pool_provider_keys @workload_identity_pool_provider_keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1279 1280 1281 1282 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1279 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @workload_identity_pool_provider_keys = args[:workload_identity_pool_provider_keys] if args.key?(:workload_identity_pool_provider_keys) end |