Class: Google::Apis::IamV1::ListWorkloadIdentityPoolsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::ListWorkloadIdentityPoolsResponse
- 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 ListWorkloadIdentityPools.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#workload_identity_pools ⇒ Array<Google::Apis::IamV1::WorkloadIdentityPool>
A list of pools.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListWorkloadIdentityPoolsResponse
constructor
A new instance of ListWorkloadIdentityPoolsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListWorkloadIdentityPoolsResponse
Returns a new instance of ListWorkloadIdentityPoolsResponse.
1326 1327 1328 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1326 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
1319 1320 1321 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1319 def next_page_token @next_page_token end |
#workload_identity_pools ⇒ Array<Google::Apis::IamV1::WorkloadIdentityPool>
A list of pools.
Corresponds to the JSON property workloadIdentityPools
1324 1325 1326 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1324 def workload_identity_pools @workload_identity_pools end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1331 1332 1333 1334 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1331 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @workload_identity_pools = args[:workload_identity_pools] if args.key?(:workload_identity_pools) end |