Class: Google::Apis::CloudresourcemanagerV1::ListAvailableOrgPolicyConstraintsRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1::ListAvailableOrgPolicyConstraintsRequest
- 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 request sent to the [ListAvailableOrgPolicyConstraints] google.cloud.OrgPolicy.v1.ListAvailableOrgPolicyConstraints] method.
Instance Attribute Summary collapse
-
#page_size ⇒ Fixnum
Size of the pages to be returned.
-
#page_token ⇒ String
Page token used to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAvailableOrgPolicyConstraintsRequest
constructor
A new instance of ListAvailableOrgPolicyConstraintsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAvailableOrgPolicyConstraintsRequest
Returns a new instance of ListAvailableOrgPolicyConstraintsRequest
65 66 67 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 65 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_size ⇒ Fixnum
Size of the pages to be returned. This is currently unsupported and will
be ignored. The server may at any point start using this field to limit
page size.
Corresponds to the JSON property pageSize
63 64 65 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 63 def page_size @page_size end |
#page_token ⇒ String
Page token used to retrieve the next page. This is currently unsupported
and will be ignored. The server may at any point start using this field.
Corresponds to the JSON property pageToken
56 57 58 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 56 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
70 71 72 73 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 70 def update!(**args) @page_token = args[:page_token] if args.key?(:page_token) @page_size = args[:page_size] if args.key?(:page_size) end |