class Google::Apis::CloudresourcemanagerV1::ListOrgPoliciesRequest

The request sent to the ListOrgPolicies method.

Attributes

page_size[RW]

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` @return [Fixnum]

page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 1035
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 1040
def update!(**args)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
end