Class: Google::Apis::AccesscontextmanagerV1::ListAccessLevelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AccesscontextmanagerV1::ListAccessLevelsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/accesscontextmanager_v1/classes.rb,
generated/google/apis/accesscontextmanager_v1/representations.rb,
generated/google/apis/accesscontextmanager_v1/representations.rb
Overview
A response to ListAccessLevelsRequest
.
Instance Attribute Summary collapse
-
#access_levels ⇒ Array<Google::Apis::AccesscontextmanagerV1::AccessLevel>
List of the Access Level instances.
-
#next_page_token ⇒ String
The pagination token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAccessLevelsResponse
constructor
A new instance of ListAccessLevelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAccessLevelsResponse
Returns a new instance of ListAccessLevelsResponse.
789 790 791 |
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 789 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_levels ⇒ Array<Google::Apis::AccesscontextmanagerV1::AccessLevel>
List of the Access Level instances.
Corresponds to the JSON property accessLevels
781 782 783 |
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 781 def access_levels @access_levels 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
787 788 789 |
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 787 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
794 795 796 797 |
# File 'generated/google/apis/accesscontextmanager_v1/classes.rb', line 794 def update!(**args) @access_levels = args[:access_levels] if args.key?(:access_levels) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |