Class: Google::Apis::CloudidentityV1beta1::CreateDeviceRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::CreateDeviceRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Request message for creating a Company Owned device.
Instance Attribute Summary collapse
-
#customer ⇒ String
Optional.
-
#device ⇒ Google::Apis::CloudidentityV1beta1::Device
A Device within the Cloud Identity Devices API.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateDeviceRequest
constructor
A new instance of CreateDeviceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateDeviceRequest
Returns a new instance of CreateDeviceRequest.
552 553 554 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 552 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer ⇒ String
Optional. Resource name
of the customer. If you're using this API for your own organization, use
customers/my_customer If you're using this API to manage another organization,
use customers/customer_id`, where customer_id is the customer to whom the
device belongs.
Corresponds to the JSON propertycustomer`
543 544 545 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 543 def customer @customer end |
#device ⇒ Google::Apis::CloudidentityV1beta1::Device
A Device within the Cloud Identity Devices API. Represents a Device known to
Google Cloud, independent of the device ownership, type, and whether it is
assigned or in use by a user.
Corresponds to the JSON property device
550 551 552 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 550 def device @device end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
557 558 559 560 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 557 def update!(**args) @customer = args[:customer] if args.key?(:customer) @device = args[:device] if args.key?(:device) end |