class Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolveRequest
Request message for getting the resolved policy value for a specific target.
Attributes
The maximum number of policies to return, defaults to 100 and has a maximum of 1000. Corresponds to the JSON property `pageSize` @return [Fixnum]
The page token used to retrieve a specific page of the request. Corresponds to the JSON property `pageToken` @return [String]
The schema filter to apply to the resolve request. Specify a schema name to view a particular schema, for example: chrome.users.ShowLogoutButton Wildcards are supported, but only in the leaf portion of the schema name. Wildcards cannot be used in namespace directly. Please read developers.google. com/chrome/chrome-management/guides/policyapi for details on schema namepsaces. For example: Valid: “chrome.users.*”, “chrome.users.apps.*”, “chrome.printers. *” Invalid: “*”, “*.users”, “chrome.*”, “chrome..apps.” Corresponds to the JSON property `policySchemaFilter` @return [String]
The key used to identify the target on which the policy will be applied. Corresponds to the JSON property `policyTargetKey` @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyTargetKey]
Public Class Methods
# File lib/google/apis/chromepolicy_v1/classes.rb, line 493 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/chromepolicy_v1/classes.rb, line 498 def update!(**args) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) @policy_schema_filter = args[:policy_schema_filter] if args.key?(:policy_schema_filter) @policy_target_key = args[:policy_target_key] if args.key?(:policy_target_key) end