google-apis-smartdevicemanagement_v1 0.27.0 → 0.28.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: 1bdbf4a6bbb3568e1c76f1a872d16dcb335d9420af8c7c0069216e93bb1e3340
|
|
4
|
+
data.tar.gz: 4bf3998117be20158fddbe2273cd3e41d66903a72633adebb63731bda3ba246e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e74a3db81f2dc736163816128a9000d13a205976e25722802061b6c822c914b5a2a361d23e9488bb98631320c93a2c6ae83fcc75f3e22bb0225ca4f0ea820ba1
|
|
7
|
+
data.tar.gz: 9e7de6038b222da9e82c6ea4c248ea7e6d2e8835c952051f523b857bc813d910d75359980953f91d10c99cb8dc0540c101f9f9683f63166cea4141be052e7e80
|
data/CHANGELOG.md
CHANGED
|
@@ -27,11 +27,6 @@ module Google
|
|
|
27
27
|
class GoogleHomeEnterpriseSdmV1Device
|
|
28
28
|
include Google::Apis::Core::Hashable
|
|
29
29
|
|
|
30
|
-
# Output only. The Home APIs device ID of the device.
|
|
31
|
-
# Corresponds to the JSON property `ghpName`
|
|
32
|
-
# @return [String]
|
|
33
|
-
attr_accessor :ghp_name
|
|
34
|
-
|
|
35
30
|
# Required. The resource name of the device. For example: "enterprises/XYZ/
|
|
36
31
|
# devices/123".
|
|
37
32
|
# Corresponds to the JSON property `name`
|
|
@@ -62,7 +57,6 @@ module Google
|
|
|
62
57
|
|
|
63
58
|
# Update properties of this object
|
|
64
59
|
def update!(**args)
|
|
65
|
-
@ghp_name = args[:ghp_name] if args.key?(:ghp_name)
|
|
66
60
|
@name = args[:name] if args.key?(:name)
|
|
67
61
|
@parent_relations = args[:parent_relations] if args.key?(:parent_relations)
|
|
68
62
|
@traits = args[:traits] if args.key?(:traits)
|
|
@@ -183,13 +177,6 @@ module Google
|
|
|
183
177
|
# @return [String]
|
|
184
178
|
attr_accessor :display_name
|
|
185
179
|
|
|
186
|
-
# Output only. The Home APIs name of the relation -- e.g., structure/room where
|
|
187
|
-
# the device is assigned to. For example: "homegraph.googleapis.com/Structure/
|
|
188
|
-
# ABC" or "homegraph.googleapis.com/Room/ABC"
|
|
189
|
-
# Corresponds to the JSON property `ghpParent`
|
|
190
|
-
# @return [String]
|
|
191
|
-
attr_accessor :ghp_parent
|
|
192
|
-
|
|
193
180
|
# Output only. The name of the relation -- e.g., structure/room where the device
|
|
194
181
|
# is assigned to. For example: "enterprises/XYZ/structures/ABC" or "enterprises/
|
|
195
182
|
# XYZ/structures/ABC/rooms/123"
|
|
@@ -204,7 +191,6 @@ module Google
|
|
|
204
191
|
# Update properties of this object
|
|
205
192
|
def update!(**args)
|
|
206
193
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
207
|
-
@ghp_parent = args[:ghp_parent] if args.key?(:ghp_parent)
|
|
208
194
|
@parent = args[:parent] if args.key?(:parent)
|
|
209
195
|
end
|
|
210
196
|
end
|
|
@@ -241,12 +227,6 @@ module Google
|
|
|
241
227
|
class GoogleHomeEnterpriseSdmV1Structure
|
|
242
228
|
include Google::Apis::Core::Hashable
|
|
243
229
|
|
|
244
|
-
# Output only. The unique identifier for the structure in Google Home Platform.
|
|
245
|
-
# Format: homegraph.googleapis.com/Structure/`structure_id`
|
|
246
|
-
# Corresponds to the JSON property `ghpName`
|
|
247
|
-
# @return [String]
|
|
248
|
-
attr_accessor :ghp_name
|
|
249
|
-
|
|
250
230
|
# Output only. The resource name of the structure. For example: "enterprises/XYZ/
|
|
251
231
|
# structures/ABC".
|
|
252
232
|
# Corresponds to the JSON property `name`
|
|
@@ -264,7 +244,6 @@ module Google
|
|
|
264
244
|
|
|
265
245
|
# Update properties of this object
|
|
266
246
|
def update!(**args)
|
|
267
|
-
@ghp_name = args[:ghp_name] if args.key?(:ghp_name)
|
|
268
247
|
@name = args[:name] if args.key?(:name)
|
|
269
248
|
@traits = args[:traits] if args.key?(:traits)
|
|
270
249
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SmartdevicemanagementV1
|
|
18
18
|
# Version of the google-apis-smartdevicemanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.28.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -79,7 +79,6 @@ module Google
|
|
|
79
79
|
class GoogleHomeEnterpriseSdmV1Device
|
|
80
80
|
# @private
|
|
81
81
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
82
|
-
property :ghp_name, as: 'ghpName'
|
|
83
82
|
property :name, as: 'name'
|
|
84
83
|
collection :parent_relations, as: 'parentRelations', class: Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1ParentRelation, decorator: Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1ParentRelation::Representation
|
|
85
84
|
|
|
@@ -131,7 +130,6 @@ module Google
|
|
|
131
130
|
# @private
|
|
132
131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
133
132
|
property :display_name, as: 'displayName'
|
|
134
|
-
property :ghp_parent, as: 'ghpParent'
|
|
135
133
|
property :parent, as: 'parent'
|
|
136
134
|
end
|
|
137
135
|
end
|
|
@@ -147,7 +145,6 @@ module Google
|
|
|
147
145
|
class GoogleHomeEnterpriseSdmV1Structure
|
|
148
146
|
# @private
|
|
149
147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
150
|
-
property :ghp_name, as: 'ghpName'
|
|
151
148
|
property :name, as: 'name'
|
|
152
149
|
hash :traits, as: 'traits'
|
|
153
150
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-smartdevicemanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.28.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-smartdevicemanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-smartdevicemanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-smartdevicemanagement_v1/v0.28.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-smartdevicemanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|