class Google::Apis::OsconfigV1alpha::ListOsPolicyAssignmentsResponse

A response message for listing all assignments under given parent.

Attributes

next_page_token[RW]

The pagination token to retrieve the next page of OS policy assignments. Corresponds to the JSON property `nextPageToken` @return [String]

os_policy_assignments[RW]

The list of assignments Corresponds to the JSON property `osPolicyAssignments` @return [Array<Google::Apis::OsconfigV1alpha::OsPolicyAssignment>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 926
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_v1alpha/classes.rb, line 931
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @os_policy_assignments = args[:os_policy_assignments] if args.key?(:os_policy_assignments)
end