class Google::Apis::OsconfigV1beta::ListGuestPoliciesResponse

A response message for listing guest policies.

Attributes

guest_policies[RW]

The list of GuestPolicies. Corresponds to the JSON property `guestPolicies` @return [Array<Google::Apis::OsconfigV1beta::GuestPolicy>]

next_page_token[RW]

A pagination token that can be used to get the next page of guest policies. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/osconfig_v1beta/classes.rb, line 695
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/osconfig_v1beta/classes.rb, line 700
def update!(**args)
  @guest_policies = args[:guest_policies] if args.key?(:guest_policies)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end