google-apis-smartdevicemanagement_v1 0.25.0 → 0.26.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: e46fc09105db5d91ca88e53b3ff29a3af015d2a2d770e8a72744a068e6108b2d
4
- data.tar.gz: 057b20558e094016adfb18521570ee25e90cd6497bd0c6b67cdaf32e5ec99327
3
+ metadata.gz: 0a2a893161ceb8e49edd1acecebc83116a33041fde17f24bc36721ec1c5718bb
4
+ data.tar.gz: 8694685f9df6f82f91ee0f8faffaadb1b5cab6e4eeda5801459d4f06f18c9cd7
5
5
  SHA512:
6
- metadata.gz: a00989e76ab512e94afe199282167c1117d01fcb17759e1783aae2a2aef4df62e616bc121957eca43156e33855648980cf7e881c9c365a1311890bb994d6e42d
7
- data.tar.gz: 2fb4a8bd1dc964c5827616cb4852a269de32b07b55fcad3ac524b4e27c3530db527facc36cb12e5cc8f9a14ac959b4991aedb7b38ed1b10a92863b335ce7d114
6
+ metadata.gz: fb08ef4a218c2a10a06cfef95d3f91ea6148d9fbe97f90404f46639f10bd2eee20d2a009bd57f64d12ca18eed9d12b599291d32a12a4c353b7bb22a7081ad74d
7
+ data.tar.gz: 0dcd9a29c9fd7aea01c6bb93ce1e1b4d239a8c4fce449b21492b140a079e7a29151888759333298eb0c4297827bea27b572801c2e5704da2e447d4da05dc84e0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-smartdevicemanagement_v1
2
2
 
3
+ ### v0.26.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260112
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.25.0 (2025-05-04)
4
9
 
5
10
  * Regenerated using generator version 0.17.0
@@ -27,6 +27,11 @@ module Google
27
27
  class GoogleHomeEnterpriseSdmV1Device
28
28
  include Google::Apis::Core::Hashable
29
29
 
30
+ # Output only. The GHP device ID of the device.
31
+ # Corresponds to the JSON property `ghpName`
32
+ # @return [String]
33
+ attr_accessor :ghp_name
34
+
30
35
  # Required. The resource name of the device. For example: "enterprises/XYZ/
31
36
  # devices/123".
32
37
  # Corresponds to the JSON property `name`
@@ -57,6 +62,7 @@ module Google
57
62
 
58
63
  # Update properties of this object
59
64
  def update!(**args)
65
+ @ghp_name = args[:ghp_name] if args.key?(:ghp_name)
60
66
  @name = args[:name] if args.key?(:name)
61
67
  @parent_relations = args[:parent_relations] if args.key?(:parent_relations)
62
68
  @traits = args[:traits] if args.key?(:traits)
@@ -177,6 +183,13 @@ module Google
177
183
  # @return [String]
178
184
  attr_accessor :display_name
179
185
 
186
+ # Output only. The GHP name of the relation -- e.g., structure/room where the
187
+ # device is assigned to. For example: "homegraph.googleapis.com/Structure/ABC"
188
+ # or "homegraph.googleapis.com/Room/ABC"
189
+ # Corresponds to the JSON property `ghpParent`
190
+ # @return [String]
191
+ attr_accessor :ghp_parent
192
+
180
193
  # Output only. The name of the relation -- e.g., structure/room where the device
181
194
  # is assigned to. For example: "enterprises/XYZ/structures/ABC" or "enterprises/
182
195
  # XYZ/structures/ABC/rooms/123"
@@ -191,6 +204,7 @@ module Google
191
204
  # Update properties of this object
192
205
  def update!(**args)
193
206
  @display_name = args[:display_name] if args.key?(:display_name)
207
+ @ghp_parent = args[:ghp_parent] if args.key?(:ghp_parent)
194
208
  @parent = args[:parent] if args.key?(:parent)
195
209
  end
196
210
  end
@@ -227,6 +241,12 @@ module Google
227
241
  class GoogleHomeEnterpriseSdmV1Structure
228
242
  include Google::Apis::Core::Hashable
229
243
 
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
+
230
250
  # Output only. The resource name of the structure. For example: "enterprises/XYZ/
231
251
  # structures/ABC".
232
252
  # Corresponds to the JSON property `name`
@@ -244,6 +264,7 @@ module Google
244
264
 
245
265
  # Update properties of this object
246
266
  def update!(**args)
267
+ @ghp_name = args[:ghp_name] if args.key?(:ghp_name)
247
268
  @name = args[:name] if args.key?(:name)
248
269
  @traits = args[:traits] if args.key?(:traits)
249
270
  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.25.0"
19
+ GEM_VERSION = "0.26.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 = "20231119"
25
+ REVISION = "20260112"
26
26
  end
27
27
  end
28
28
  end
@@ -79,6 +79,7 @@ module Google
79
79
  class GoogleHomeEnterpriseSdmV1Device
80
80
  # @private
81
81
  class Representation < Google::Apis::Core::JsonRepresentation
82
+ property :ghp_name, as: 'ghpName'
82
83
  property :name, as: 'name'
83
84
  collection :parent_relations, as: 'parentRelations', class: Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1ParentRelation, decorator: Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1ParentRelation::Representation
84
85
 
@@ -130,6 +131,7 @@ module Google
130
131
  # @private
131
132
  class Representation < Google::Apis::Core::JsonRepresentation
132
133
  property :display_name, as: 'displayName'
134
+ property :ghp_parent, as: 'ghpParent'
133
135
  property :parent, as: 'parent'
134
136
  end
135
137
  end
@@ -145,6 +147,7 @@ module Google
145
147
  class GoogleHomeEnterpriseSdmV1Structure
146
148
  # @private
147
149
  class Representation < Google::Apis::Core::JsonRepresentation
150
+ property :ghp_name, as: 'ghpName'
148
151
  property :name, as: 'name'
149
152
  hash :traits, as: 'traits'
150
153
  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.25.0
4
+ version: 0.26.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.25.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-smartdevicemanagement_v1/v0.26.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:
@@ -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 Smart Device Management API V1
79
79
  test_files: []