Class: Google::Apis::CloudresourcemanagerV1::SearchOrganizationsRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudresourcemanagerV1::SearchOrganizationsRequest
 
- 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 SearchOrganizations method.
Instance Attribute Summary collapse
- 
  
    
      #filter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An optional query string used to filter the Organizations to return in the response. 
- 
  
    
      #page_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum number of Organizations to return in the response. 
- 
  
    
      #page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A pagination token returned from a previous call to SearchOrganizationsthat indicates from where listing should continue.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SearchOrganizationsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SearchOrganizationsRequest. 
- 
  
    
      #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) ⇒ SearchOrganizationsRequest
Returns a new instance of SearchOrganizationsRequest
| 1485 1486 1487 | # File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1485 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#filter ⇒ String
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|Description|
|------|-----------|
|owner.directorycustomerid:123456789|Organizations with
owner.directory_customer_id equal to 123456789.|
|domain:google.com|Organizations corresponding to the domain google.com.|
This field is optional.
Corresponds to the JSON property filter
| 1470 1471 1472 | # File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1470 def filter @filter end | 
#page_size ⇒ Fixnum
The maximum number of Organizations to return in the response.
This field is optional.
Corresponds to the JSON property pageSize
| 1476 1477 1478 | # File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1476 def page_size @page_size end | 
#page_token ⇒ String
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
| 1483 1484 1485 | # File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1483 def page_token @page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1490 1491 1492 1493 1494 | # File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1490 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 |