Class: Google::Apis::CloudresourcemanagerV1::ListOrgPoliciesRequest

Inherits:
Object
  • Object
show all
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 request sent to the ListOrgPolicies method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListOrgPoliciesRequest

Returns a new instance of ListOrgPoliciesRequest.



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

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

Instance Attribute Details

#page_sizeFixnum

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

Returns:

  • (Fixnum)


1034
1035
1036
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1034

def page_size
  @page_size
end

#page_tokenString

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

Returns:

  • (String)


1040
1041
1042
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1040

def page_token
  @page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1047
1048
1049
1050
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1047

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