Class: Google::Apis::AccesscontextmanagerV1::ListAccessPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AccesscontextmanagerV1::ListAccessPoliciesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/accesscontextmanager_v1/classes.rb,
lib/google/apis/accesscontextmanager_v1/representations.rb,
lib/google/apis/accesscontextmanager_v1/representations.rb
Overview
A response to ListAccessPoliciesRequest
.
Instance Attribute Summary collapse
-
#access_policies ⇒ Array<Google::Apis::AccesscontextmanagerV1::AccessPolicy>
List of the AccessPolicy instances.
-
#next_page_token ⇒ String
The pagination token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAccessPoliciesResponse
constructor
A new instance of ListAccessPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAccessPoliciesResponse
Returns a new instance of ListAccessPoliciesResponse.
1256 1257 1258 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1256 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_policies ⇒ Array<Google::Apis::AccesscontextmanagerV1::AccessPolicy>
List of the AccessPolicy instances.
Corresponds to the JSON property accessPolicies
1248 1249 1250 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1248 def access_policies @access_policies end |
#next_page_token ⇒ String
The pagination token to retrieve the next page of results. If the value is
empty, no further results remain.
Corresponds to the JSON property nextPageToken
1254 1255 1256 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1254 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1261 1262 1263 1264 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 1261 def update!(**args) @access_policies = args[:access_policies] if args.key?(:access_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |