google-apis-androiddeviceprovisioning_v1 0.21.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e147e8b4f518ffbcd84504280d38275730a40889202c71306c5444ddd25a8d24
4
- data.tar.gz: 6baa3f186c58670cbce805d0b876998dd6aaacb9b636b27f28df2d194064662d
3
+ metadata.gz: bb3c7c68f6ed77384e4a8692f0455cab10922d5e6cf0382a3eb47f692f2f5cdd
4
+ data.tar.gz: d406a95f581d6c1cc62149f6644698c9a6a6eb04fccb5ce940e26808234ed973
5
5
  SHA512:
6
- metadata.gz: e33a64518b7182becee2fd55a7191ad076b42896ce74b46e5b22e5a15fde660c82f82e100186d93dfe3a08b7a83cb90b8086dded0a9f2da481764530a90884a0
7
- data.tar.gz: 769e436abf68be9d8cd0214def44e33dd5846c219b85b9b5c1cd65c54a41ee65dabf0c8912c4d11d010405339ddc0b10ef7621150a0eed9e6ef738f82417d58f
6
+ metadata.gz: 316604e24ec0be767634b7fde88187a1d15d4cc84c56927d8cc3eeee4bac055fbde0ed46d326e37694b52c8789836074b7d5236baacf3fc9ebc2f488aedaab84
7
+ data.tar.gz: f1b17479a9e1e082ad61f9cee2373fc7b2b0bdb94c2d5d46505b1e87048f437a5ad98eeaf4164f3e851ab390be37283f295ca4113491112d625a90dbeb7a340b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androiddeviceprovisioning_v1
2
2
 
3
+ ### v0.22.0 (2023-11-05)
4
+
5
+ * Regenerated from discovery document revision 20231029
6
+
3
7
  ### v0.21.0 (2023-09-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20230829
@@ -26,6 +26,12 @@ module Google
26
26
  class ClaimDeviceRequest
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
+ # Optional. The unique identifier of the configuration (internally known as
30
+ # profile) to set for the section.
31
+ # Corresponds to the JSON property `configurationId`
32
+ # @return [Fixnum]
33
+ attr_accessor :configuration_id
34
+
29
35
  # The ID of the customer for whom the device is being claimed.
30
36
  # Corresponds to the JSON property `customerId`
31
37
  # @return [Fixnum]
@@ -59,8 +65,7 @@ module Google
59
65
  # @return [String]
60
66
  attr_accessor :section_type
61
67
 
62
- # Optional. Must and can only be set when DeviceProvisioningSectionType is
63
- # SECTION_TYPE_SIM_LOCK. The unique identifier of the SimLock profile.
68
+ # Optional.
64
69
  # Corresponds to the JSON property `simlockProfileId`
65
70
  # @return [Fixnum]
66
71
  attr_accessor :simlock_profile_id
@@ -71,6 +76,7 @@ module Google
71
76
 
72
77
  # Update properties of this object
73
78
  def update!(**args)
79
+ @configuration_id = args[:configuration_id] if args.key?(:configuration_id)
74
80
  @customer_id = args[:customer_id] if args.key?(:customer_id)
75
81
  @device_identifier = args[:device_identifier] if args.key?(:device_identifier)
76
82
  @device_metadata = args[:device_metadata] if args.key?(:device_metadata)
@@ -1269,6 +1275,12 @@ module Google
1269
1275
  class PartnerClaim
1270
1276
  include Google::Apis::Core::Hashable
1271
1277
 
1278
+ # Optional. The unique identifier of the configuration (internally known as
1279
+ # profile) to set for the section.
1280
+ # Corresponds to the JSON property `configurationId`
1281
+ # @return [Fixnum]
1282
+ attr_accessor :configuration_id
1283
+
1272
1284
  # The ID of the customer for whom the device is being claimed.
1273
1285
  # Corresponds to the JSON property `customerId`
1274
1286
  # @return [Fixnum]
@@ -1302,8 +1314,7 @@ module Google
1302
1314
  # @return [String]
1303
1315
  attr_accessor :section_type
1304
1316
 
1305
- # Optional. Must and can only be set when DeviceProvisioningSectionType is
1306
- # SECTION_TYPE_SIM_LOCK. The unique identifier of the SimLock profile.
1317
+ # Optional.
1307
1318
  # Corresponds to the JSON property `simlockProfileId`
1308
1319
  # @return [Fixnum]
1309
1320
  attr_accessor :simlock_profile_id
@@ -1314,6 +1325,7 @@ module Google
1314
1325
 
1315
1326
  # Update properties of this object
1316
1327
  def update!(**args)
1328
+ @configuration_id = args[:configuration_id] if args.key?(:configuration_id)
1317
1329
  @customer_id = args[:customer_id] if args.key?(:customer_id)
1318
1330
  @device_identifier = args[:device_identifier] if args.key?(:device_identifier)
1319
1331
  @device_metadata = args[:device_metadata] if args.key?(:device_metadata)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroiddeviceprovisioningV1
18
18
  # Version of the google-apis-androiddeviceprovisioning_v1 gem
19
- GEM_VERSION = "0.21.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230829"
25
+ REVISION = "20231029"
26
26
  end
27
27
  end
28
28
  end
@@ -283,6 +283,7 @@ module Google
283
283
  class ClaimDeviceRequest
284
284
  # @private
285
285
  class Representation < Google::Apis::Core::JsonRepresentation
286
+ property :configuration_id, :numeric_string => true, as: 'configurationId'
286
287
  property :customer_id, :numeric_string => true, as: 'customerId'
287
288
  property :device_identifier, as: 'deviceIdentifier', class: Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier, decorator: Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier::Representation
288
289
 
@@ -624,6 +625,7 @@ module Google
624
625
  class PartnerClaim
625
626
  # @private
626
627
  class Representation < Google::Apis::Core::JsonRepresentation
628
+ property :configuration_id, :numeric_string => true, as: 'configurationId'
627
629
  property :customer_id, :numeric_string => true, as: 'customerId'
628
630
  property :device_identifier, as: 'deviceIdentifier', class: Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier, decorator: Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier::Representation
629
631
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androiddeviceprovisioning_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-03 00:00:00.000000000 Z
11
+ date: 2023-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androiddeviceprovisioning_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androiddeviceprovisioning_v1/v0.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androiddeviceprovisioning_v1/v0.22.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androiddeviceprovisioning_v1
63
63
  post_install_message:
64
64
  rdoc_options: []