Class: Google::Apis::AndroiddeviceprovisioningV1::FindDevicesByOwnerRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androiddeviceprovisioning_v1/classes.rb,
lib/google/apis/androiddeviceprovisioning_v1/representations.rb,
lib/google/apis/androiddeviceprovisioning_v1/representations.rb

Overview

Request to find devices by customers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FindDevicesByOwnerRequest

Returns a new instance of FindDevicesByOwnerRequest.



973
974
975
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 973

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

Instance Attribute Details

#customer_idArray<Fixnum>

The list of customer IDs to search for. Corresponds to the JSON property customerId

Returns:

  • (Array<Fixnum>)


950
951
952
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 950

def customer_id
  @customer_id
end

#google_workspace_customer_idArray<String>

The list of IDs of Google Workspace accounts to search for. Corresponds to the JSON property googleWorkspaceCustomerId

Returns:

  • (Array<String>)


955
956
957
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 955

def google_workspace_customer_id
  @google_workspace_customer_id
end

#limitFixnum

Required. The maximum number of devices to show in a page of results. Must be between 1 and 100 inclusive. Corresponds to the JSON property limit

Returns:

  • (Fixnum)


961
962
963
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 961

def limit
  @limit
end

#page_tokenString

A token specifying which result page to return. Corresponds to the JSON property pageToken

Returns:

  • (String)


966
967
968
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 966

def page_token
  @page_token
end

#section_typeString

Required. The section type of the device's provisioning record. Corresponds to the JSON property sectionType

Returns:

  • (String)


971
972
973
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 971

def section_type
  @section_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



978
979
980
981
982
983
984
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 978

def update!(**args)
  @customer_id = args[:customer_id] if args.key?(:customer_id)
  @google_workspace_customer_id = args[:google_workspace_customer_id] if args.key?(:google_workspace_customer_id)
  @limit = args[:limit] if args.key?(:limit)
  @page_token = args[:page_token] if args.key?(:page_token)
  @section_type = args[:section_type] if args.key?(:section_type)
end