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.
1058 1059 1060 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1058 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
1051 1052 1053 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1051 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
1056 1057 1058 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1056 def workload_identity_pool_provider_keys @workload_identity_pool_provider_keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1063 1064 1065 1066 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1063 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 |