Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolveResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolveResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromepolicy_v1/classes.rb,
lib/google/apis/chromepolicy_v1/representations.rb,
lib/google/apis/chromepolicy_v1/representations.rb
Overview
Response message for getting the resolved policy value for a specific target.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The page token used to get the next set of resolved policies found by the request.
-
#resolved_policies ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolvedPolicy>
The list of resolved policies found by the resolve request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromePolicyV1ResolveResponse
constructor
A new instance of GoogleChromePolicyV1ResolveResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromePolicyV1ResolveResponse
Returns a new instance of GoogleChromePolicyV1ResolveResponse.
488 489 490 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 488 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The page token used to get the next set of resolved policies found by the
request.
Corresponds to the JSON property nextPageToken
481 482 483 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 481 def next_page_token @next_page_token end |
#resolved_policies ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolvedPolicy>
The list of resolved policies found by the resolve request.
Corresponds to the JSON property resolvedPolicies
486 487 488 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 486 def resolved_policies @resolved_policies end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
493 494 495 496 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 493 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resolved_policies = args[:resolved_policies] if args.key?(:resolved_policies) end |