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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb3c7c68f6ed77384e4a8692f0455cab10922d5e6cf0382a3eb47f692f2f5cdd
|
4
|
+
data.tar.gz: d406a95f581d6c1cc62149f6644698c9a6a6eb04fccb5ce940e26808234ed973
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 316604e24ec0be767634b7fde88187a1d15d4cc84c56927d8cc3eeee4bac055fbde0ed46d326e37694b52c8789836074b7d5236baacf3fc9ebc2f488aedaab84
|
7
|
+
data.tar.gz: f1b17479a9e1e082ad61f9cee2373fc7b2b0bdb94c2d5d46505b1e87048f437a5ad98eeaf4164f3e851ab390be37283f295ca4113491112d625a90dbeb7a340b
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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.
|
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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|