class Google::Apis::AccesscontextmanagerV1beta::ListAccessLevelsResponse
A response to `ListAccessLevelsRequest`.
Attributes
access_levels[RW]
List of the Access Level instances. Corresponds to the JSON property `accessLevels` @return [Array<Google::Apis::AccesscontextmanagerV1beta::AccessLevel>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/accesscontextmanager_v1beta/classes.rb, line 393 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/accesscontextmanager_v1beta/classes.rb, line 398 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