Class: Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudidentity_v1beta1/classes.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Response containing resource names of the DeviceUsers associated with the caller's credentials.
Instance Attribute Summary collapse
-
#customer ⇒ String
The obfuscated customer Id that may be passed back to other Devices API methods such as List, Get, etc.
-
#names ⇒ Array<String>
Resource names of the DeviceUsers in the format:
devices/
device_id/deviceUsers/
user_resource_id`, where device_id is the unique ID assigned to a Device and user_resource_id is the unique user ID Corresponds to the JSON property
names`. -
#next_page_token ⇒ String
Token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LookupSelfDeviceUsersResponse
constructor
A new instance of LookupSelfDeviceUsersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LookupSelfDeviceUsersResponse
Returns a new instance of LookupSelfDeviceUsersResponse.
1764 1765 1766 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1764 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer ⇒ String
The obfuscated customer Id that may be passed back to other Devices API
methods such as List, Get, etc.
Corresponds to the JSON property customer
1749 1750 1751 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1749 def customer @customer end |
#names ⇒ Array<String>
Resource names of the
DeviceUsers in the format: devices/
device_id/deviceUsers/
user_resource_id`
, where device_id is the unique ID assigned to a Device and user_resource_id
is the unique user ID
Corresponds to the JSON property
names`
1757 1758 1759 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1757 def names @names end |
#next_page_token ⇒ String
Token to retrieve the next page of results. Empty if there are no more results.
Corresponds to the JSON property nextPageToken
1762 1763 1764 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1762 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1769 1770 1771 1772 1773 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1769 def update!(**args) @customer = args[:customer] if args.key?(:customer) @names = args[:names] if args.key?(:names) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |