Class: Google::Apis::IamV1::ListWorkforcePoolProviderKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::ListWorkforcePoolProviderKeysResponse
- 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 ListWorkforcePoolProviderKeys.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#workforce_pool_provider_keys ⇒ Array<Google::Apis::IamV1::WorkforcePoolProviderKey>
A list of WorkforcePoolProviderKeys.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListWorkforcePoolProviderKeysResponse
constructor
A new instance of ListWorkforcePoolProviderKeysResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListWorkforcePoolProviderKeysResponse
Returns a new instance of ListWorkforcePoolProviderKeysResponse.
980 981 982 |
# File 'lib/google/apis/iam_v1/classes.rb', line 980 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
973 974 975 |
# File 'lib/google/apis/iam_v1/classes.rb', line 973 def next_page_token @next_page_token end |
#workforce_pool_provider_keys ⇒ Array<Google::Apis::IamV1::WorkforcePoolProviderKey>
A list of WorkforcePoolProviderKeys.
Corresponds to the JSON property workforcePoolProviderKeys
978 979 980 |
# File 'lib/google/apis/iam_v1/classes.rb', line 978 def workforce_pool_provider_keys @workforce_pool_provider_keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
985 986 987 988 |
# File 'lib/google/apis/iam_v1/classes.rb', line 985 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @workforce_pool_provider_keys = args[:workforce_pool_provider_keys] if args.key?(:workforce_pool_provider_keys) end |