Class: Google::Apis::CloudresourcemanagerV1::ListOrgPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1::ListOrgPoliciesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudresourcemanager_v1/classes.rb,
lib/google/apis/cloudresourcemanager_v1/representations.rb,
lib/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
-
#next_page_token ⇒ String
Page token used to retrieve the next page.
-
#policies ⇒ Array<Google::Apis::CloudresourcemanagerV1::OrgPolicy>
The
Policies
that are set on the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOrgPoliciesResponse
constructor
A new instance of ListOrgPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListOrgPoliciesResponse
Returns a new instance of ListOrgPoliciesResponse.
1095 1096 1097 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1095 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1087 1088 1089 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1087 def next_page_token @next_page_token end |
#policies ⇒ Array<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
1093 1094 1095 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1093 def policies @policies end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1100 1101 1102 1103 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1100 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @policies = args[:policies] if args.key?(:policies) end |