Class: Google::Apis::CloudresourcemanagerV1::ListOrgPoliciesResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudresourcemanager_v1/classes.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb

Overview

The response returned from the ListOrgPolicies method. It will be empty if no Policies are set on the resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListOrgPoliciesResponse

Returns a new instance of ListOrgPoliciesResponse.



1037
1038
1039
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1037

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1029
1030
1031
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1029

def next_page_token
  @next_page_token
end

#policiesArray<Google::Apis::CloudresourcemanagerV1::OrgPolicy>

The Policies that are set on the resource. It will be empty if no Policies are set. Corresponds to the JSON property policies



1035
1036
1037
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1035

def policies
  @policies
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1042
1043
1044
1045
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1042

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @policies = args[:policies] if args.key?(:policies)
end