Class: Google::Apis::AndroiddeviceprovisioningV1::ClaimDeviceRequest
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::ClaimDeviceRequest
- 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 message to claim a device on behalf of a customer.
Instance Attribute Summary collapse
-
#customer_id ⇒ Fixnum
The ID of the customer for whom the device is being claimed.
-
#device_identifier ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier
Encapsulates hardware and product IDs to identify a manufactured device.
-
#device_metadata ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceMetadata
Metadata entries that can be attached to a
Device. -
#google_workspace_customer_id ⇒ String
The Google Workspace customer ID.
-
#pre_provisioning_token ⇒ String
Optional.
-
#section_type ⇒ String
Required.
-
#simlock_profile_id ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClaimDeviceRequest
constructor
A new instance of ClaimDeviceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClaimDeviceRequest
Returns a new instance of ClaimDeviceRequest.
68 69 70 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 68 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer_id ⇒ Fixnum
The ID of the customer for whom the device is being claimed.
Corresponds to the JSON property customerId
32 33 34 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 32 def customer_id @customer_id end |
#device_identifier ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier
Encapsulates hardware and product IDs to identify a manufactured device. To
understand requirements on identifier sets, read Identifiers.
Corresponds to the JSON property deviceIdentifier
39 40 41 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 39 def device_identifier @device_identifier end |
#device_metadata ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceMetadata
Metadata entries that can be attached to a Device. To learn more, read
Device metadata.
Corresponds to the JSON property deviceMetadata
45 46 47 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 45 def @device_metadata end |
#google_workspace_customer_id ⇒ String
The Google Workspace customer ID.
Corresponds to the JSON property googleWorkspaceCustomerId
50 51 52 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 50 def google_workspace_customer_id @google_workspace_customer_id end |
#pre_provisioning_token ⇒ String
Optional. Must and can only be set for Chrome OS devices.
Corresponds to the JSON property preProvisioningToken
55 56 57 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 55 def pre_provisioning_token @pre_provisioning_token end |
#section_type ⇒ String
Required. The section type of the device's provisioning record.
Corresponds to the JSON property sectionType
60 61 62 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 60 def section_type @section_type end |
#simlock_profile_id ⇒ Fixnum
Optional. Must and can only be set when DeviceProvisioningSectionType is
SECTION_TYPE_SIM_LOCK. The unique identifier of the SimLock profile.
Corresponds to the JSON property simlockProfileId
66 67 68 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 66 def simlock_profile_id @simlock_profile_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
73 74 75 76 77 78 79 80 81 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 73 def update!(**args) @customer_id = args[:customer_id] if args.key?(:customer_id) @device_identifier = args[:device_identifier] if args.key?(:device_identifier) @device_metadata = args[:device_metadata] if args.key?(:device_metadata) @google_workspace_customer_id = args[:google_workspace_customer_id] if args.key?(:google_workspace_customer_id) @pre_provisioning_token = args[:pre_provisioning_token] if args.key?(:pre_provisioning_token) @section_type = args[:section_type] if args.key?(:section_type) @simlock_profile_id = args[:simlock_profile_id] if args.key?(:simlock_profile_id) end |