class Google::Apis::CloudresourcemanagerV1::ListAvailableOrgPolicyConstraintsResponse
The response returned from the `ListAvailableOrgPolicyConstraints` method. Returns all `Constraints` that could be set at this level of the hierarchy ( contrast with the response from `ListPolicies`, which returns all policies which are set).
Attributes
constraints[RW]
The collection of constraints that are settable on the request resource. Corresponds to the JSON property `constraints` @return [Array<Google::Apis::CloudresourcemanagerV1::Constraint>]
next_page_token[RW]
Page token used to retrieve the next page. This is currently not used. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 952 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 957 def update!(**args) @constraints = args[:constraints] if args.key?(:constraints) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end