class Google::Apis::CloudresourcemanagerV1::SearchOrganizationsRequest

The request sent to the `SearchOrganizations` method.

Attributes

filter[RW]

An optional query string used to filter the Organizations to return in the response. Filter rules are case-insensitive. Organizations may be filtered by ` owner.directoryCustomerId` or by `domain`, where the domain is a G Suite domain, for example: * Filter `owner.directorycustomerid:123456789` returns Organization resources with `owner.directory_customer_id` equal to `123456789`.

  • Filter `domain:google.com` returns Organization resources corresponding to

the domain `google.com`. This field is optional. Corresponds to the JSON property `filter` @return [String]

page_size[RW]

The maximum number of Organizations to return in the response. The server can return fewer organizations than requested. If unspecified, server picks an appropriate default. Corresponds to the JSON property `pageSize` @return [Fixnum]

page_token[RW]

A pagination token returned from a previous call to `SearchOrganizations` that indicates from where listing should continue. This field is optional. 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 1776
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 1781
def update!(**args)
  @filter = args[:filter] if args.key?(:filter)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
end