class Google::Apis::CloudresourcemanagerV1::ListOrgPoliciesResponse
The response returned from the `ListOrgPolicies` method. It will be empty if no `Policies` are set on the resource.
Attributes
next_page_token[RW]
Page token used to retrieve the next page. This is currently not used, but the server may at any point start supplying a valid token. Corresponds to the JSON property `nextPageToken` @return [String]
policies[RW]
The `Policies` that are set on the resource. It will be empty if no `Policies` are set. Corresponds to the JSON property `policies` @return [Array<Google::Apis::CloudresourcemanagerV1::OrgPolicy>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 1063 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 1068 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @policies = args[:policies] if args.key?(:policies) end