google-apis-androidmanagement_v1 0.90.0 → 0.92.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: 5f6015ea5e02d433551b563fb05a20f90c03bbd6f1246b9248ed84b9f10cf40f
4
- data.tar.gz: bd7eb865356679bf81d223ce5aa65ffaf3a8f23394c0ae2880a9e8a148da9884
3
+ metadata.gz: 17046b29f5292cf21c018c52b6b34b5e974e680a5a99656ee24c12570522fe75
4
+ data.tar.gz: 6eb7d7716bf26e87f3ace8df6017815a5e9b442ed58dc01a7637d975de2971ca
5
5
  SHA512:
6
- metadata.gz: 70cca8a0a06fea5c4b5924ec5ca5632663ded9a94462a9c2ba6f1dbd1e3d0b4f753539a94f297b9f3ff1a45ac765f18f7f44eea6804daa0fcbdebeaa808f6d7a
7
- data.tar.gz: b11f3f9f5a5a7460e67b23219bb5739578a3d80a9f1194e7885a3986d682198963e09afae50b6cd0920d08b169f1227765f1fe371c0a6b9ad226044af6c51e90
6
+ metadata.gz: 4eb8e2dc912d2760a107999ccb5d80d303f775902bd4ec02706162f65101be608d8323dbcb7bc1128dafb056a63de45fcb9b5b1a9a683282665894dd03a07244
7
+ data.tar.gz: f6927801dd63a935ca81efff4860e3472690d099756413476cd5fe05fa603c1b899e36e56960ad57a5eab8a7e87b6c78629493b3b1722f277825c9746c9ff6fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.92.0 (2025-06-08)
4
+
5
+ * Regenerated from discovery document revision 20250603
6
+
7
+ ### v0.91.0 (2025-06-01)
8
+
9
+ * Regenerated from discovery document revision 20250529
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.90.0 (2025-05-18)
4
13
 
5
14
  * 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
@@ -2725,15 +2821,18 @@ module Google
2725
2821
  # @return [String]
2726
2822
  attr_accessor :notification_receiver
2727
2823
 
2728
- # Hex-encoded SHA-256 hash of the signing certificate of the extension app. Only
2729
- # hexadecimal string representations of 64 characters are valid.If not specified,
2730
- # the signature for the corresponding package name is obtained from the Play
2731
- # Store instead.If this list is empty, the signature of the extension app on the
2732
- # device must match the signature obtained from the Play Store for the app to be
2733
- # able to communicate with Android Device Policy.If this list is not empty, the
2734
- # signature of the extension app on the device must match one of the entries in
2735
- # this list for the app to be able to communicate with Android Device Policy.In
2736
- # production use cases, it is recommended to leave this empty.
2824
+ # Hex-encoded SHA-256 hashes of the signing key certificates of the extension
2825
+ # app. Only hexadecimal string representations of 64 characters are valid.The
2826
+ # signing key certificate fingerprints are always obtained from the Play Store
2827
+ # and this field is used to provide additional signing key certificate
2828
+ # fingerprints. However, if the application is not available on the Play Store,
2829
+ # this field needs to be set. A nonComplianceDetail with INVALID_VALUE is
2830
+ # reported if this field is not set when the application is not available on the
2831
+ # Play Store.The signing key certificate fingerprint of the extension app on the
2832
+ # device must match one of the signing key certificate fingerprints obtained
2833
+ # from the Play Store or the ones provided in this field for the app to be able
2834
+ # to communicate with Android Device Policy.In production use cases, it is
2835
+ # recommended to leave this empty.
2737
2836
  # Corresponds to the JSON property `signingKeyFingerprintsSha256`
2738
2837
  # @return [Array<String>]
2739
2838
  attr_accessor :signing_key_fingerprints_sha256
@@ -3159,6 +3258,49 @@ module Google
3159
3258
  end
3160
3259
  end
3161
3260
 
3261
+ # Internal error details if present for the ADD_ESIM or REMOVE_ESIM command.
3262
+ class InternalErrorDetails
3263
+ include Google::Apis::Core::Hashable
3264
+
3265
+ # Output only. Integer representation of the error code as specified here (https:
3266
+ # //developer.android.com/reference/android/telephony/euicc/EuiccManager#
3267
+ # EXTRA_EMBEDDED_SUBSCRIPTION_DETAILED_CODE). See also,
3268
+ # OPERATION_SMDX_SUBJECT_REASON_CODE. See error_code_detail for more details.
3269
+ # Corresponds to the JSON property `errorCode`
3270
+ # @return [Fixnum]
3271
+ attr_accessor :error_code
3272
+
3273
+ # Output only. The error code detail corresponding to the error_code.
3274
+ # Corresponds to the JSON property `errorCodeDetail`
3275
+ # @return [String]
3276
+ attr_accessor :error_code_detail
3277
+
3278
+ # Output only. Integer representation of the operation code as specified here (
3279
+ # https://developer.android.com/reference/android/telephony/euicc/EuiccManager#
3280
+ # EXTRA_EMBEDDED_SUBSCRIPTION_DETAILED_CODE). See operation_code_detail for more
3281
+ # details.
3282
+ # Corresponds to the JSON property `operationCode`
3283
+ # @return [Fixnum]
3284
+ attr_accessor :operation_code
3285
+
3286
+ # Output only. The operation code detail corresponding to the operation_code.
3287
+ # Corresponds to the JSON property `operationCodeDetail`
3288
+ # @return [String]
3289
+ attr_accessor :operation_code_detail
3290
+
3291
+ def initialize(**args)
3292
+ update!(**args)
3293
+ end
3294
+
3295
+ # Update properties of this object
3296
+ def update!(**args)
3297
+ @error_code = args[:error_code] if args.key?(:error_code)
3298
+ @error_code_detail = args[:error_code_detail] if args.key?(:error_code_detail)
3299
+ @operation_code = args[:operation_code] if args.key?(:operation_code)
3300
+ @operation_code_detail = args[:operation_code_detail] if args.key?(:operation_code_detail)
3301
+ end
3302
+ end
3303
+
3162
3304
  # Response on issuing a command. This is currently empty as a placeholder.
3163
3305
  class IssueCommandResponse
3164
3306
  include Google::Apis::Core::Hashable
@@ -5362,6 +5504,20 @@ module Google
5362
5504
  attr_accessor :wifi_configs_lockdown_enabled
5363
5505
  alias_method :wifi_configs_lockdown_enabled?, :wifi_configs_lockdown_enabled
5364
5506
 
5507
+ # Optional. Wipe flags to indicate what data is wiped when a device or profile
5508
+ # wipe is triggered due to any reason (for example, non-compliance). This does
5509
+ # not apply to the enterprises.devices.delete method. . This list must not have
5510
+ # duplicates.
5511
+ # Corresponds to the JSON property `wipeDataFlags`
5512
+ # @return [Array<String>]
5513
+ attr_accessor :wipe_data_flags
5514
+
5515
+ # Controls the work account setup configuration, such as details of whether a
5516
+ # Google authenticated account is required.
5517
+ # Corresponds to the JSON property `workAccountSetupConfig`
5518
+ # @return [Google::Apis::AndroidmanagementV1::WorkAccountSetupConfig]
5519
+ attr_accessor :work_account_setup_config
5520
+
5365
5521
  def initialize(**args)
5366
5522
  update!(**args)
5367
5523
  end
@@ -5463,6 +5619,8 @@ module Google
5463
5619
  @vpn_config_disabled = args[:vpn_config_disabled] if args.key?(:vpn_config_disabled)
5464
5620
  @wifi_config_disabled = args[:wifi_config_disabled] if args.key?(:wifi_config_disabled)
5465
5621
  @wifi_configs_lockdown_enabled = args[:wifi_configs_lockdown_enabled] if args.key?(:wifi_configs_lockdown_enabled)
5622
+ @wipe_data_flags = args[:wipe_data_flags] if args.key?(:wipe_data_flags)
5623
+ @work_account_setup_config = args[:work_account_setup_config] if args.key?(:work_account_setup_config)
5466
5624
  end
5467
5625
  end
5468
5626
 
@@ -5799,6 +5957,26 @@ module Google
5799
5957
  end
5800
5958
  end
5801
5959
 
5960
+ # Parameters associated with the REMOVE_ESIM command to remove an eSIM profile
5961
+ # from the device.
5962
+ class RemoveEsimParams
5963
+ include Google::Apis::Core::Hashable
5964
+
5965
+ # Required. ICC ID of the eSIM profile to be deleted.
5966
+ # Corresponds to the JSON property `iccId`
5967
+ # @return [String]
5968
+ attr_accessor :icc_id
5969
+
5970
+ def initialize(**args)
5971
+ update!(**args)
5972
+ end
5973
+
5974
+ # Update properties of this object
5975
+ def update!(**args)
5976
+ @icc_id = args[:icc_id] if args.key?(:icc_id)
5977
+ end
5978
+ end
5979
+
5802
5980
  # Parameters associated with the REQUEST_DEVICE_INFO command to get device
5803
5981
  # related information.
5804
5982
  class RequestDeviceInfoParams
@@ -6525,11 +6703,27 @@ module Google
6525
6703
  class TelephonyInfo
6526
6704
  include Google::Apis::Core::Hashable
6527
6705
 
6706
+ # Output only. Activation state of the SIM card on the device. This is
6707
+ # applicable for eSIMs only. This is supported on all devices for API level 35
6708
+ # and above. This is always ACTIVATION_STATE_UNSPECIFIED for physical SIMs and
6709
+ # for devices below API level 35.
6710
+ # Corresponds to the JSON property `activationState`
6711
+ # @return [String]
6712
+ attr_accessor :activation_state
6713
+
6528
6714
  # The carrier name associated with this SIM card.
6529
6715
  # Corresponds to the JSON property `carrierName`
6530
6716
  # @return [String]
6531
6717
  attr_accessor :carrier_name
6532
6718
 
6719
+ # Output only. The configuration mode of the SIM card on the device. This is
6720
+ # applicable for eSIMs only. This is supported on all devices for API level 35
6721
+ # and above. This is always CONFIG_MODE_UNSPECIFIED for physical SIMs and for
6722
+ # devices below API level 35.
6723
+ # Corresponds to the JSON property `configMode`
6724
+ # @return [String]
6725
+ attr_accessor :config_mode
6726
+
6533
6727
  # Output only. The ICCID associated with this SIM card.
6534
6728
  # Corresponds to the JSON property `iccId`
6535
6729
  # @return [String]
@@ -6546,7 +6740,9 @@ module Google
6546
6740
 
6547
6741
  # Update properties of this object
6548
6742
  def update!(**args)
6743
+ @activation_state = args[:activation_state] if args.key?(:activation_state)
6549
6744
  @carrier_name = args[:carrier_name] if args.key?(:carrier_name)
6745
+ @config_mode = args[:config_mode] if args.key?(:config_mode)
6550
6746
  @icc_id = args[:icc_id] if args.key?(:icc_id)
6551
6747
  @phone_number = args[:phone_number] if args.key?(:phone_number)
6552
6748
  end
@@ -7184,6 +7380,36 @@ module Google
7184
7380
  def update!(**args)
7185
7381
  end
7186
7382
  end
7383
+
7384
+ # Controls the work account setup configuration, such as details of whether a
7385
+ # Google authenticated account is required.
7386
+ class WorkAccountSetupConfig
7387
+ include Google::Apis::Core::Hashable
7388
+
7389
+ # Optional. The authentication type of the user on the device.
7390
+ # Corresponds to the JSON property `authenticationType`
7391
+ # @return [String]
7392
+ attr_accessor :authentication_type
7393
+
7394
+ # Optional. The specific google work account email address to be added. This
7395
+ # field is only relevant if authenticationType is GOOGLE_AUTHENTICATED. This
7396
+ # must be an enterprise account and not a consumer account. Once set and a
7397
+ # Google authenticated account is added to the device, changing this field will
7398
+ # have no effect, and thus recommended to be set only once.
7399
+ # Corresponds to the JSON property `requiredAccountEmail`
7400
+ # @return [String]
7401
+ attr_accessor :required_account_email
7402
+
7403
+ def initialize(**args)
7404
+ update!(**args)
7405
+ end
7406
+
7407
+ # Update properties of this object
7408
+ def update!(**args)
7409
+ @authentication_type = args[:authentication_type] if args.key?(:authentication_type)
7410
+ @required_account_email = args[:required_account_email] if args.key?(:required_account_email)
7411
+ end
7412
+ end
7187
7413
  end
7188
7414
  end
7189
7415
  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.90.0"
19
+ GEM_VERSION = "0.92.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250515"
25
+ REVISION = "20250603"
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.90.0
4
+ version: 0.92.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.92.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.8
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: []