google-apis-androidmanagement_v1 0.90.0 → 0.91.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb31af89f01f79e11d43767e66b0c111d19edf55a9b2a79516e54bdea3a59cc7
|
4
|
+
data.tar.gz: daab6f503afe138b551f1f6c155f93869fd8970d486ead947705a91bf103f3d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce8cf742c207938fa300197ef12c24124f1806aca1a72cfa665024adc2a6ef6ce179bfc1d73df41133f4458ed7fc9d79d2837b3866f283a11e859c0ed77b7887
|
7
|
+
data.tar.gz: 2b1d872c5afbdf8009c7b31161e80ab4d1e24dd71a09d9e2eacfe64e2e8117ce1b5fc305d356ca34135d486c05436bc05083b6edbd2dacef2b0b25f0a53a0e17
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
2
2
|
|
3
|
+
### v0.91.0 (2025-06-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250529
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.90.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250515
|
@@ -55,6 +55,32 @@ module Google
|
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
58
|
+
# Parameters associated with the ADD_ESIM command to add an eSIM profile to the
|
59
|
+
# device.
|
60
|
+
class AddEsimParams
|
61
|
+
include Google::Apis::Core::Hashable
|
62
|
+
|
63
|
+
# Required. The activation code for the eSIM profile.
|
64
|
+
# Corresponds to the JSON property `activationCode`
|
65
|
+
# @return [String]
|
66
|
+
attr_accessor :activation_code
|
67
|
+
|
68
|
+
# Required. The activation state of the eSIM profile once it is downloaded.
|
69
|
+
# Corresponds to the JSON property `activationState`
|
70
|
+
# @return [String]
|
71
|
+
attr_accessor :activation_state
|
72
|
+
|
73
|
+
def initialize(**args)
|
74
|
+
update!(**args)
|
75
|
+
end
|
76
|
+
|
77
|
+
# Update properties of this object
|
78
|
+
def update!(**args)
|
79
|
+
@activation_code = args[:activation_code] if args.key?(:activation_code)
|
80
|
+
@activation_state = args[:activation_state] if args.key?(:activation_state)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
58
84
|
# Advanced security settings. In most cases, setting these is not needed.
|
59
85
|
class AdvancedSecurityOverrides
|
60
86
|
include Google::Apis::Core::Hashable
|
@@ -1344,6 +1370,12 @@ module Google
|
|
1344
1370
|
class Command
|
1345
1371
|
include Google::Apis::Core::Hashable
|
1346
1372
|
|
1373
|
+
# Parameters associated with the ADD_ESIM command to add an eSIM profile to the
|
1374
|
+
# device.
|
1375
|
+
# Corresponds to the JSON property `addEsimParams`
|
1376
|
+
# @return [Google::Apis::AndroidmanagementV1::AddEsimParams]
|
1377
|
+
attr_accessor :add_esim_params
|
1378
|
+
|
1347
1379
|
# Parameters associated with the CLEAR_APP_DATA command to clear the data of
|
1348
1380
|
# specified apps from the device.
|
1349
1381
|
# Corresponds to the JSON property `clearAppsDataParams`
|
@@ -1379,6 +1411,11 @@ module Google
|
|
1379
1411
|
# @return [String]
|
1380
1412
|
attr_accessor :error_code
|
1381
1413
|
|
1414
|
+
# Status and error details (if present) of an ADD_ESIM or REMOVE_ESIM command.
|
1415
|
+
# Corresponds to the JSON property `esimStatus`
|
1416
|
+
# @return [Google::Apis::AndroidmanagementV1::EsimCommandStatus]
|
1417
|
+
attr_accessor :esim_status
|
1418
|
+
|
1382
1419
|
# For commands of type RESET_PASSWORD, optionally specifies the new password.
|
1383
1420
|
# Note: The new password must be at least 6 characters long if it is numeric in
|
1384
1421
|
# case of Android 14 devices. Else the command will fail with INVALID_VALUE.
|
@@ -1386,6 +1423,12 @@ module Google
|
|
1386
1423
|
# @return [String]
|
1387
1424
|
attr_accessor :new_password
|
1388
1425
|
|
1426
|
+
# Parameters associated with the REMOVE_ESIM command to remove an eSIM profile
|
1427
|
+
# from the device.
|
1428
|
+
# Corresponds to the JSON property `removeEsimParams`
|
1429
|
+
# @return [Google::Apis::AndroidmanagementV1::RemoveEsimParams]
|
1430
|
+
attr_accessor :remove_esim_params
|
1431
|
+
|
1389
1432
|
# Parameters associated with the REQUEST_DEVICE_INFO command to get device
|
1390
1433
|
# related information.
|
1391
1434
|
# Corresponds to the JSON property `requestDeviceInfoParams`
|
@@ -1443,12 +1486,15 @@ module Google
|
|
1443
1486
|
|
1444
1487
|
# Update properties of this object
|
1445
1488
|
def update!(**args)
|
1489
|
+
@add_esim_params = args[:add_esim_params] if args.key?(:add_esim_params)
|
1446
1490
|
@clear_apps_data_params = args[:clear_apps_data_params] if args.key?(:clear_apps_data_params)
|
1447
1491
|
@clear_apps_data_status = args[:clear_apps_data_status] if args.key?(:clear_apps_data_status)
|
1448
1492
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1449
1493
|
@duration = args[:duration] if args.key?(:duration)
|
1450
1494
|
@error_code = args[:error_code] if args.key?(:error_code)
|
1495
|
+
@esim_status = args[:esim_status] if args.key?(:esim_status)
|
1451
1496
|
@new_password = args[:new_password] if args.key?(:new_password)
|
1497
|
+
@remove_esim_params = args[:remove_esim_params] if args.key?(:remove_esim_params)
|
1452
1498
|
@request_device_info_params = args[:request_device_info_params] if args.key?(:request_device_info_params)
|
1453
1499
|
@request_device_info_status = args[:request_device_info_status] if args.key?(:request_device_info_status)
|
1454
1500
|
@reset_password_flags = args[:reset_password_flags] if args.key?(:reset_password_flags)
|
@@ -2687,6 +2733,56 @@ module Google
|
|
2687
2733
|
end
|
2688
2734
|
end
|
2689
2735
|
|
2736
|
+
# Status and error details (if present) of an ADD_ESIM or REMOVE_ESIM command.
|
2737
|
+
class EsimCommandStatus
|
2738
|
+
include Google::Apis::Core::Hashable
|
2739
|
+
|
2740
|
+
# Details of the eSIM added or removed.
|
2741
|
+
# Corresponds to the JSON property `esimInfo`
|
2742
|
+
# @return [Google::Apis::AndroidmanagementV1::EsimInfo]
|
2743
|
+
attr_accessor :esim_info
|
2744
|
+
|
2745
|
+
# Internal error details if present for the ADD_ESIM or REMOVE_ESIM command.
|
2746
|
+
# Corresponds to the JSON property `internalErrorDetails`
|
2747
|
+
# @return [Google::Apis::AndroidmanagementV1::InternalErrorDetails]
|
2748
|
+
attr_accessor :internal_error_details
|
2749
|
+
|
2750
|
+
# Output only. Status of an ADD_ESIM or REMOVE_ESIM command.
|
2751
|
+
# Corresponds to the JSON property `status`
|
2752
|
+
# @return [String]
|
2753
|
+
attr_accessor :status
|
2754
|
+
|
2755
|
+
def initialize(**args)
|
2756
|
+
update!(**args)
|
2757
|
+
end
|
2758
|
+
|
2759
|
+
# Update properties of this object
|
2760
|
+
def update!(**args)
|
2761
|
+
@esim_info = args[:esim_info] if args.key?(:esim_info)
|
2762
|
+
@internal_error_details = args[:internal_error_details] if args.key?(:internal_error_details)
|
2763
|
+
@status = args[:status] if args.key?(:status)
|
2764
|
+
end
|
2765
|
+
end
|
2766
|
+
|
2767
|
+
# Details of the eSIM added or removed.
|
2768
|
+
class EsimInfo
|
2769
|
+
include Google::Apis::Core::Hashable
|
2770
|
+
|
2771
|
+
# Output only. ICC ID of the eSIM.
|
2772
|
+
# Corresponds to the JSON property `iccId`
|
2773
|
+
# @return [String]
|
2774
|
+
attr_accessor :icc_id
|
2775
|
+
|
2776
|
+
def initialize(**args)
|
2777
|
+
update!(**args)
|
2778
|
+
end
|
2779
|
+
|
2780
|
+
# Update properties of this object
|
2781
|
+
def update!(**args)
|
2782
|
+
@icc_id = args[:icc_id] if args.key?(:icc_id)
|
2783
|
+
end
|
2784
|
+
end
|
2785
|
+
|
2690
2786
|
# Information related to the eUICC chip.
|
2691
2787
|
class EuiccChipInfo
|
2692
2788
|
include Google::Apis::Core::Hashable
|
@@ -3159,6 +3255,49 @@ module Google
|
|
3159
3255
|
end
|
3160
3256
|
end
|
3161
3257
|
|
3258
|
+
# Internal error details if present for the ADD_ESIM or REMOVE_ESIM command.
|
3259
|
+
class InternalErrorDetails
|
3260
|
+
include Google::Apis::Core::Hashable
|
3261
|
+
|
3262
|
+
# Output only. Integer representation of the error code as specified here (https:
|
3263
|
+
# //developer.android.com/reference/android/telephony/euicc/EuiccManager#
|
3264
|
+
# EXTRA_EMBEDDED_SUBSCRIPTION_DETAILED_CODE). See also,
|
3265
|
+
# OPERATION_SMDX_SUBJECT_REASON_CODE. See error_code_detail for more details.
|
3266
|
+
# Corresponds to the JSON property `errorCode`
|
3267
|
+
# @return [Fixnum]
|
3268
|
+
attr_accessor :error_code
|
3269
|
+
|
3270
|
+
# Output only. The error code detail corresponding to the error_code.
|
3271
|
+
# Corresponds to the JSON property `errorCodeDetail`
|
3272
|
+
# @return [String]
|
3273
|
+
attr_accessor :error_code_detail
|
3274
|
+
|
3275
|
+
# Output only. Integer representation of the operation code as specified here (
|
3276
|
+
# https://developer.android.com/reference/android/telephony/euicc/EuiccManager#
|
3277
|
+
# EXTRA_EMBEDDED_SUBSCRIPTION_DETAILED_CODE). See operation_code_detail for more
|
3278
|
+
# details.
|
3279
|
+
# Corresponds to the JSON property `operationCode`
|
3280
|
+
# @return [Fixnum]
|
3281
|
+
attr_accessor :operation_code
|
3282
|
+
|
3283
|
+
# Output only. The operation code detail corresponding to the operation_code.
|
3284
|
+
# Corresponds to the JSON property `operationCodeDetail`
|
3285
|
+
# @return [String]
|
3286
|
+
attr_accessor :operation_code_detail
|
3287
|
+
|
3288
|
+
def initialize(**args)
|
3289
|
+
update!(**args)
|
3290
|
+
end
|
3291
|
+
|
3292
|
+
# Update properties of this object
|
3293
|
+
def update!(**args)
|
3294
|
+
@error_code = args[:error_code] if args.key?(:error_code)
|
3295
|
+
@error_code_detail = args[:error_code_detail] if args.key?(:error_code_detail)
|
3296
|
+
@operation_code = args[:operation_code] if args.key?(:operation_code)
|
3297
|
+
@operation_code_detail = args[:operation_code_detail] if args.key?(:operation_code_detail)
|
3298
|
+
end
|
3299
|
+
end
|
3300
|
+
|
3162
3301
|
# Response on issuing a command. This is currently empty as a placeholder.
|
3163
3302
|
class IssueCommandResponse
|
3164
3303
|
include Google::Apis::Core::Hashable
|
@@ -5362,6 +5501,20 @@ module Google
|
|
5362
5501
|
attr_accessor :wifi_configs_lockdown_enabled
|
5363
5502
|
alias_method :wifi_configs_lockdown_enabled?, :wifi_configs_lockdown_enabled
|
5364
5503
|
|
5504
|
+
# Optional. Wipe flags to indicate what data is wiped when a device or profile
|
5505
|
+
# wipe is triggered due to any reason (for example, non-compliance). This does
|
5506
|
+
# not apply to the enterprises.devices.delete method. . This list must not have
|
5507
|
+
# duplicates.
|
5508
|
+
# Corresponds to the JSON property `wipeDataFlags`
|
5509
|
+
# @return [Array<String>]
|
5510
|
+
attr_accessor :wipe_data_flags
|
5511
|
+
|
5512
|
+
# Controls the work account setup configuration, such as details of whether a
|
5513
|
+
# Google authenticated account is required.
|
5514
|
+
# Corresponds to the JSON property `workAccountSetupConfig`
|
5515
|
+
# @return [Google::Apis::AndroidmanagementV1::WorkAccountSetupConfig]
|
5516
|
+
attr_accessor :work_account_setup_config
|
5517
|
+
|
5365
5518
|
def initialize(**args)
|
5366
5519
|
update!(**args)
|
5367
5520
|
end
|
@@ -5463,6 +5616,8 @@ module Google
|
|
5463
5616
|
@vpn_config_disabled = args[:vpn_config_disabled] if args.key?(:vpn_config_disabled)
|
5464
5617
|
@wifi_config_disabled = args[:wifi_config_disabled] if args.key?(:wifi_config_disabled)
|
5465
5618
|
@wifi_configs_lockdown_enabled = args[:wifi_configs_lockdown_enabled] if args.key?(:wifi_configs_lockdown_enabled)
|
5619
|
+
@wipe_data_flags = args[:wipe_data_flags] if args.key?(:wipe_data_flags)
|
5620
|
+
@work_account_setup_config = args[:work_account_setup_config] if args.key?(:work_account_setup_config)
|
5466
5621
|
end
|
5467
5622
|
end
|
5468
5623
|
|
@@ -5799,6 +5954,26 @@ module Google
|
|
5799
5954
|
end
|
5800
5955
|
end
|
5801
5956
|
|
5957
|
+
# Parameters associated with the REMOVE_ESIM command to remove an eSIM profile
|
5958
|
+
# from the device.
|
5959
|
+
class RemoveEsimParams
|
5960
|
+
include Google::Apis::Core::Hashable
|
5961
|
+
|
5962
|
+
# Required. ICC ID of the eSIM profile to be deleted.
|
5963
|
+
# Corresponds to the JSON property `iccId`
|
5964
|
+
# @return [String]
|
5965
|
+
attr_accessor :icc_id
|
5966
|
+
|
5967
|
+
def initialize(**args)
|
5968
|
+
update!(**args)
|
5969
|
+
end
|
5970
|
+
|
5971
|
+
# Update properties of this object
|
5972
|
+
def update!(**args)
|
5973
|
+
@icc_id = args[:icc_id] if args.key?(:icc_id)
|
5974
|
+
end
|
5975
|
+
end
|
5976
|
+
|
5802
5977
|
# Parameters associated with the REQUEST_DEVICE_INFO command to get device
|
5803
5978
|
# related information.
|
5804
5979
|
class RequestDeviceInfoParams
|
@@ -6525,11 +6700,27 @@ module Google
|
|
6525
6700
|
class TelephonyInfo
|
6526
6701
|
include Google::Apis::Core::Hashable
|
6527
6702
|
|
6703
|
+
# Output only. Activation state of the SIM card on the device. This is
|
6704
|
+
# applicable for eSIMs only. This is supported on all devices for API level 35
|
6705
|
+
# and above. This is always ACTIVATION_STATE_UNSPECIFIED for physical SIMs and
|
6706
|
+
# for devices below API level 35.
|
6707
|
+
# Corresponds to the JSON property `activationState`
|
6708
|
+
# @return [String]
|
6709
|
+
attr_accessor :activation_state
|
6710
|
+
|
6528
6711
|
# The carrier name associated with this SIM card.
|
6529
6712
|
# Corresponds to the JSON property `carrierName`
|
6530
6713
|
# @return [String]
|
6531
6714
|
attr_accessor :carrier_name
|
6532
6715
|
|
6716
|
+
# Output only. The configuration mode of the SIM card on the device. This is
|
6717
|
+
# applicable for eSIMs only. This is supported on all devices for API level 35
|
6718
|
+
# and above. This is always CONFIG_MODE_UNSPECIFIED for physical SIMs and for
|
6719
|
+
# devices below API level 35.
|
6720
|
+
# Corresponds to the JSON property `configMode`
|
6721
|
+
# @return [String]
|
6722
|
+
attr_accessor :config_mode
|
6723
|
+
|
6533
6724
|
# Output only. The ICCID associated with this SIM card.
|
6534
6725
|
# Corresponds to the JSON property `iccId`
|
6535
6726
|
# @return [String]
|
@@ -6546,7 +6737,9 @@ module Google
|
|
6546
6737
|
|
6547
6738
|
# Update properties of this object
|
6548
6739
|
def update!(**args)
|
6740
|
+
@activation_state = args[:activation_state] if args.key?(:activation_state)
|
6549
6741
|
@carrier_name = args[:carrier_name] if args.key?(:carrier_name)
|
6742
|
+
@config_mode = args[:config_mode] if args.key?(:config_mode)
|
6550
6743
|
@icc_id = args[:icc_id] if args.key?(:icc_id)
|
6551
6744
|
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
6552
6745
|
end
|
@@ -7184,6 +7377,36 @@ module Google
|
|
7184
7377
|
def update!(**args)
|
7185
7378
|
end
|
7186
7379
|
end
|
7380
|
+
|
7381
|
+
# Controls the work account setup configuration, such as details of whether a
|
7382
|
+
# Google authenticated account is required.
|
7383
|
+
class WorkAccountSetupConfig
|
7384
|
+
include Google::Apis::Core::Hashable
|
7385
|
+
|
7386
|
+
# Optional. The authentication type of the user on the device.
|
7387
|
+
# Corresponds to the JSON property `authenticationType`
|
7388
|
+
# @return [String]
|
7389
|
+
attr_accessor :authentication_type
|
7390
|
+
|
7391
|
+
# Optional. The specific google work account email address to be added. This
|
7392
|
+
# field is only relevant if authenticationType is GOOGLE_AUTHENTICATED. This
|
7393
|
+
# must be an enterprise account and not a consumer account. Once set and a
|
7394
|
+
# Google authenticated account is added to the device, changing this field will
|
7395
|
+
# have no effect, and thus recommended to be set only once.
|
7396
|
+
# Corresponds to the JSON property `requiredAccountEmail`
|
7397
|
+
# @return [String]
|
7398
|
+
attr_accessor :required_account_email
|
7399
|
+
|
7400
|
+
def initialize(**args)
|
7401
|
+
update!(**args)
|
7402
|
+
end
|
7403
|
+
|
7404
|
+
# Update properties of this object
|
7405
|
+
def update!(**args)
|
7406
|
+
@authentication_type = args[:authentication_type] if args.key?(:authentication_type)
|
7407
|
+
@required_account_email = args[:required_account_email] if args.key?(:required_account_email)
|
7408
|
+
end
|
7409
|
+
end
|
7187
7410
|
end
|
7188
7411
|
end
|
7189
7412
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AndroidmanagementV1
|
18
18
|
# Version of the google-apis-androidmanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.91.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250529"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,12 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class AddEsimParams
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
37
43
|
class AdvancedSecurityOverrides
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
@@ -322,6 +328,18 @@ module Google
|
|
322
328
|
include Google::Apis::Core::JsonObjectSupport
|
323
329
|
end
|
324
330
|
|
331
|
+
class EsimCommandStatus
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
337
|
+
class EsimInfo
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
325
343
|
class EuiccChipInfo
|
326
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
345
|
|
@@ -394,6 +412,12 @@ module Google
|
|
394
412
|
include Google::Apis::Core::JsonObjectSupport
|
395
413
|
end
|
396
414
|
|
415
|
+
class InternalErrorDetails
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
397
421
|
class IssueCommandResponse
|
398
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
423
|
|
@@ -736,6 +760,12 @@ module Google
|
|
736
760
|
include Google::Apis::Core::JsonObjectSupport
|
737
761
|
end
|
738
762
|
|
763
|
+
class RemoveEsimParams
|
764
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
765
|
+
|
766
|
+
include Google::Apis::Core::JsonObjectSupport
|
767
|
+
end
|
768
|
+
|
739
769
|
class RequestDeviceInfoParams
|
740
770
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
771
|
|
@@ -940,6 +970,12 @@ module Google
|
|
940
970
|
include Google::Apis::Core::JsonObjectSupport
|
941
971
|
end
|
942
972
|
|
973
|
+
class WorkAccountSetupConfig
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
943
979
|
class AdbShellCommandEvent
|
944
980
|
# @private
|
945
981
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -953,6 +989,14 @@ module Google
|
|
953
989
|
end
|
954
990
|
end
|
955
991
|
|
992
|
+
class AddEsimParams
|
993
|
+
# @private
|
994
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
995
|
+
property :activation_code, as: 'activationCode'
|
996
|
+
property :activation_state, as: 'activationState'
|
997
|
+
end
|
998
|
+
end
|
999
|
+
|
956
1000
|
class AdvancedSecurityOverrides
|
957
1001
|
# @private
|
958
1002
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1242,6 +1286,8 @@ module Google
|
|
1242
1286
|
class Command
|
1243
1287
|
# @private
|
1244
1288
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1289
|
+
property :add_esim_params, as: 'addEsimParams', class: Google::Apis::AndroidmanagementV1::AddEsimParams, decorator: Google::Apis::AndroidmanagementV1::AddEsimParams::Representation
|
1290
|
+
|
1245
1291
|
property :clear_apps_data_params, as: 'clearAppsDataParams', class: Google::Apis::AndroidmanagementV1::ClearAppsDataParams, decorator: Google::Apis::AndroidmanagementV1::ClearAppsDataParams::Representation
|
1246
1292
|
|
1247
1293
|
property :clear_apps_data_status, as: 'clearAppsDataStatus', class: Google::Apis::AndroidmanagementV1::ClearAppsDataStatus, decorator: Google::Apis::AndroidmanagementV1::ClearAppsDataStatus::Representation
|
@@ -1249,7 +1295,11 @@ module Google
|
|
1249
1295
|
property :create_time, as: 'createTime'
|
1250
1296
|
property :duration, as: 'duration'
|
1251
1297
|
property :error_code, as: 'errorCode'
|
1298
|
+
property :esim_status, as: 'esimStatus', class: Google::Apis::AndroidmanagementV1::EsimCommandStatus, decorator: Google::Apis::AndroidmanagementV1::EsimCommandStatus::Representation
|
1299
|
+
|
1252
1300
|
property :new_password, as: 'newPassword'
|
1301
|
+
property :remove_esim_params, as: 'removeEsimParams', class: Google::Apis::AndroidmanagementV1::RemoveEsimParams, decorator: Google::Apis::AndroidmanagementV1::RemoveEsimParams::Representation
|
1302
|
+
|
1253
1303
|
property :request_device_info_params, as: 'requestDeviceInfoParams', class: Google::Apis::AndroidmanagementV1::RequestDeviceInfoParams, decorator: Google::Apis::AndroidmanagementV1::RequestDeviceInfoParams::Representation
|
1254
1304
|
|
1255
1305
|
property :request_device_info_status, as: 'requestDeviceInfoStatus', class: Google::Apis::AndroidmanagementV1::RequestDeviceInfoStatus, decorator: Google::Apis::AndroidmanagementV1::RequestDeviceInfoStatus::Representation
|
@@ -1567,6 +1617,24 @@ module Google
|
|
1567
1617
|
end
|
1568
1618
|
end
|
1569
1619
|
|
1620
|
+
class EsimCommandStatus
|
1621
|
+
# @private
|
1622
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1623
|
+
property :esim_info, as: 'esimInfo', class: Google::Apis::AndroidmanagementV1::EsimInfo, decorator: Google::Apis::AndroidmanagementV1::EsimInfo::Representation
|
1624
|
+
|
1625
|
+
property :internal_error_details, as: 'internalErrorDetails', class: Google::Apis::AndroidmanagementV1::InternalErrorDetails, decorator: Google::Apis::AndroidmanagementV1::InternalErrorDetails::Representation
|
1626
|
+
|
1627
|
+
property :status, as: 'status'
|
1628
|
+
end
|
1629
|
+
end
|
1630
|
+
|
1631
|
+
class EsimInfo
|
1632
|
+
# @private
|
1633
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1634
|
+
property :icc_id, as: 'iccId'
|
1635
|
+
end
|
1636
|
+
end
|
1637
|
+
|
1570
1638
|
class EuiccChipInfo
|
1571
1639
|
# @private
|
1572
1640
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1681,6 +1749,16 @@ module Google
|
|
1681
1749
|
end
|
1682
1750
|
end
|
1683
1751
|
|
1752
|
+
class InternalErrorDetails
|
1753
|
+
# @private
|
1754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1755
|
+
property :error_code, :numeric_string => true, as: 'errorCode'
|
1756
|
+
property :error_code_detail, as: 'errorCodeDetail'
|
1757
|
+
property :operation_code, :numeric_string => true, as: 'operationCode'
|
1758
|
+
property :operation_code_detail, as: 'operationCodeDetail'
|
1759
|
+
end
|
1760
|
+
end
|
1761
|
+
|
1684
1762
|
class IssueCommandResponse
|
1685
1763
|
# @private
|
1686
1764
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2241,6 +2319,9 @@ module Google
|
|
2241
2319
|
property :vpn_config_disabled, as: 'vpnConfigDisabled'
|
2242
2320
|
property :wifi_config_disabled, as: 'wifiConfigDisabled'
|
2243
2321
|
property :wifi_configs_lockdown_enabled, as: 'wifiConfigsLockdownEnabled'
|
2322
|
+
collection :wipe_data_flags, as: 'wipeDataFlags'
|
2323
|
+
property :work_account_setup_config, as: 'workAccountSetupConfig', class: Google::Apis::AndroidmanagementV1::WorkAccountSetupConfig, decorator: Google::Apis::AndroidmanagementV1::WorkAccountSetupConfig::Representation
|
2324
|
+
|
2244
2325
|
end
|
2245
2326
|
end
|
2246
2327
|
|
@@ -2327,6 +2408,13 @@ module Google
|
|
2327
2408
|
end
|
2328
2409
|
end
|
2329
2410
|
|
2411
|
+
class RemoveEsimParams
|
2412
|
+
# @private
|
2413
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2414
|
+
property :icc_id, as: 'iccId'
|
2415
|
+
end
|
2416
|
+
end
|
2417
|
+
|
2330
2418
|
class RequestDeviceInfoParams
|
2331
2419
|
# @private
|
2332
2420
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2519,7 +2607,9 @@ module Google
|
|
2519
2607
|
class TelephonyInfo
|
2520
2608
|
# @private
|
2521
2609
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2610
|
+
property :activation_state, as: 'activationState'
|
2522
2611
|
property :carrier_name, as: 'carrierName'
|
2612
|
+
property :config_mode, as: 'configMode'
|
2523
2613
|
property :icc_id, as: 'iccId'
|
2524
2614
|
property :phone_number, as: 'phoneNumber'
|
2525
2615
|
end
|
@@ -2707,6 +2797,14 @@ module Google
|
|
2707
2797
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2708
2798
|
end
|
2709
2799
|
end
|
2800
|
+
|
2801
|
+
class WorkAccountSetupConfig
|
2802
|
+
# @private
|
2803
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2804
|
+
property :authentication_type, as: 'authenticationType'
|
2805
|
+
property :required_account_email, as: 'requiredAccountEmail'
|
2806
|
+
end
|
2807
|
+
end
|
2710
2808
|
end
|
2711
2809
|
end
|
2712
2810
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-androidmanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.91.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.91.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Android Management API V1
|
79
79
|
test_files: []
|