Class: Google::Apis::CloudidentityV1::ListPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::ListPoliciesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
The response message for PoliciesService.ListPolicies.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The pagination token to retrieve the next page of results.
-
#policies ⇒ Array<Google::Apis::CloudidentityV1::Policy>
The results Corresponds to the JSON property
policies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPoliciesResponse
constructor
A new instance of ListPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPoliciesResponse
Returns a new instance of ListPoliciesResponse.
2251 2252 2253 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2251 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The pagination token to retrieve the next page of results. If this field is
empty, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2244 2245 2246 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2244 def next_page_token @next_page_token end |
#policies ⇒ Array<Google::Apis::CloudidentityV1::Policy>
The results
Corresponds to the JSON property policies
2249 2250 2251 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2249 def policies @policies end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2256 2257 2258 2259 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2256 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @policies = args[:policies] if args.key?(:policies) end |