Class: Google::Apis::AndroiddeviceprovisioningV1::Configuration
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::Configuration
- 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
A configuration collects the provisioning options for Android devices. Each configuration combines the following: * The EMM device policy controller (DPC) installed on the devices. * EMM policies enforced on the devices. * Metadata displayed on the device to help users during setup. Customers can add as many configurations as they need. However, zero-touch enrollment works best when a customer sets a default configuration that's applied to any new devices the organization purchases.
Instance Attribute Summary collapse
-
#company_name ⇒ String
Required.
-
#configuration_id ⇒ Fixnum
Output only.
-
#configuration_name ⇒ String
Required.
-
#contact_email ⇒ String
Required.
-
#contact_phone ⇒ String
Required.
-
#custom_message ⇒ String
A message, containing one or two sentences, to help device users get help or give them more details about what’s happening to their device.
-
#dpc_extras ⇒ String
The JSON-formatted EMM provisioning extras that are passed to the DPC.
-
#dpc_resource_path ⇒ String
Required.
-
#forced_reset_time ⇒ String
Optional.
-
#is_default ⇒ Boolean
(also: #is_default?)
Required.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Configuration
constructor
A new instance of Configuration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Configuration
Returns a new instance of Configuration.
312 313 314 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 312 def initialize(**args) update!(**args) end |
Instance Attribute Details
#company_name ⇒ String
Required. The name of the organization. Zero-touch enrollment shows this
organization name to device users during device provisioning.
Corresponds to the JSON property companyName
241 242 243 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 241 def company_name @company_name end |
#configuration_id ⇒ Fixnum
Output only. The ID of the configuration. Assigned by the server.
Corresponds to the JSON property configurationId
246 247 248 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 246 def configuration_id @configuration_id end |
#configuration_name ⇒ String
Required. A short name that describes the configuration's purpose. For example,
Sales team or Temporary employees. The zero-touch enrollment portal
displays this name to IT admins.
Corresponds to the JSON property configurationName
253 254 255 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 253 def configuration_name @configuration_name end |
#contact_email ⇒ String
Required. The email address that device users can contact to get help. Zero-
touch enrollment shows this email address to device users before device
provisioning. The value is validated on input.
Corresponds to the JSON property contactEmail
260 261 262 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 260 def contact_email @contact_email end |
#contact_phone ⇒ String
Required. The telephone number that device users can call, using another
device, to get help. Zero-touch enrollment shows this number to device users
before device provisioning. Accepts numerals, spaces, the plus sign, hyphens,
and parentheses.
Corresponds to the JSON property contactPhone
268 269 270 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 268 def contact_phone @contact_phone end |
#custom_message ⇒ String
A message, containing one or two sentences, to help device users get help or
give them more details about what’s happening to their device. Zero-touch
enrollment shows this message before the device is provisioned.
Corresponds to the JSON property customMessage
275 276 277 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 275 def @custom_message end |
#dpc_extras ⇒ String
The JSON-formatted EMM provisioning extras that are passed to the DPC.
Corresponds to the JSON property dpcExtras
280 281 282 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 280 def dpc_extras @dpc_extras end |
#dpc_resource_path ⇒ String
Required. The resource name of the selected DPC (device policy controller) in
the format customers/[CUSTOMER_ID]/dpcs/*
. To list the supported DPCs, call
customers.dpcs.list
.
Corresponds to the JSON property dpcResourcePath
287 288 289 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 287 def dpc_resource_path @dpc_resource_path end |
#forced_reset_time ⇒ String
Optional. The timeout before forcing factory reset the device if the device
doesn't go through provisioning in the setup wizard, usually due to lack of
network connectivity during setup wizard. Ranges from 0-6 hours, with 2 hours
being the default if unset.
Corresponds to the JSON property forcedResetTime
295 296 297 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 295 def forced_reset_time @forced_reset_time end |
#is_default ⇒ Boolean Also known as: is_default?
Required. Whether this is the default configuration that zero-touch enrollment
applies to any new devices the organization purchases in the future. Only one
customer configuration can be the default. Setting this value to true
,
changes the previous default configuration's isDefault
value to false
.
Corresponds to the JSON property isDefault
303 304 305 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 303 def is_default @is_default end |
#name ⇒ String
Output only. The API resource name in the format customers/[CUSTOMER_ID]/
configurations/[CONFIGURATION_ID]
. Assigned by the server.
Corresponds to the JSON property name
310 311 312 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 310 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 317 def update!(**args) @company_name = args[:company_name] if args.key?(:company_name) @configuration_id = args[:configuration_id] if args.key?(:configuration_id) @configuration_name = args[:configuration_name] if args.key?(:configuration_name) @contact_email = args[:contact_email] if args.key?(:contact_email) @contact_phone = args[:contact_phone] if args.key?(:contact_phone) @custom_message = args[:custom_message] if args.key?(:custom_message) @dpc_extras = args[:dpc_extras] if args.key?(:dpc_extras) @dpc_resource_path = args[:dpc_resource_path] if args.key?(:dpc_resource_path) @forced_reset_time = args[:forced_reset_time] if args.key?(:forced_reset_time) @is_default = args[:is_default] if args.key?(:is_default) @name = args[:name] if args.key?(:name) end |