google-apis-parametermanager_v1 0.10.0 → 0.11.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: e010be6ec1e7b7ead9b0aa2b2e567edcac84a5ace007be3a7f749fd9d2607ba8
4
- data.tar.gz: d2eb698397536bcead996a09348e5f948e6a584f7c2d38dde5d443c7ffa1ff66
3
+ metadata.gz: e2e4dc85f8a44f46b0e131cc1f29c71686bf13ae6a55a40eb5fcc35471bf5a15
4
+ data.tar.gz: 5ae2c9760b6294068a3ec99bde17b16e680e4a4fe3a37e1cc1384501f1fd2430
5
5
  SHA512:
6
- metadata.gz: a049d2b46741632c21e9d195e99297081ba966754f185f41d8bfcb1eef15a4ccec6b792c2334a6f28ea902b00cf38cd76646976c7bf32a39d29be12a6102f5f1
7
- data.tar.gz: 9a0dae9a04081e128a853c02a925f0439a2ba5f2cae56cc1a46677ae8f4438f4be61ca680f87e76674a13fe73604f559a0dae4530ca8530aadaa4ec28c4c532c
6
+ metadata.gz: 701f29dfce51b25dfd11f2acd62da0270bcabc3e48bf25aff77bdc5803932d02ef7f61f0864bed7024af97472ef0b6694c0e2c42be0b25d03a039a9e68204c74
7
+ data.tar.gz: 17f554edf7c021b143bb608ffface2f33dfbff0b2504469405e336f953a3eab3d0a1c56e4292d7d906ebdb920b2a191df1e58c278e4b84c127c11e4c9715d80e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-parametermanager_v1
2
2
 
3
+ ### v0.11.0 (2026-09-20)
4
+
5
+ * Regenerated from discovery document revision 20260831
6
+
3
7
  ### v0.10.0 (2026-07-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20260629
@@ -274,6 +274,16 @@ module Google
274
274
  # @return [Google::Apis::ParametermanagerV1::ResourcePolicyMember]
275
275
  attr_accessor :policy_member
276
276
 
277
+ # Optional. Input only. Immutable. Tag keys and tag values that are bound to
278
+ # this Parameter. You must represent each item in the map as: `"" : ""`. For
279
+ # example, a single resource can have the following tags: ``` "123/environment":
280
+ # "production", "123/costCenter": "marketing", ``` Tags are used to organize and
281
+ # group resources. Tags can be used to control policy evaluation for the
282
+ # resource.
283
+ # Corresponds to the JSON property `tags`
284
+ # @return [Hash<String,String>]
285
+ attr_accessor :tags
286
+
277
287
  # Output only. [Output only] Update time stamp
278
288
  # Corresponds to the JSON property `updateTime`
279
289
  # @return [String]
@@ -291,6 +301,7 @@ module Google
291
301
  @labels = args[:labels] if args.key?(:labels)
292
302
  @name = args[:name] if args.key?(:name)
293
303
  @policy_member = args[:policy_member] if args.key?(:policy_member)
304
+ @tags = args[:tags] if args.key?(:tags)
294
305
  @update_time = args[:update_time] if args.key?(:update_time)
295
306
  end
296
307
  end
@@ -299,6 +310,11 @@ module Google
299
310
  class ParameterVersion
300
311
  include Google::Apis::Core::Hashable
301
312
 
313
+ # Optional. Output only. [Output only] The source of the checksum.
314
+ # Corresponds to the JSON property `checksumSource`
315
+ # @return [String]
316
+ attr_accessor :checksum_source
317
+
302
318
  # Output only. [Output only] Create time stamp
303
319
  # Corresponds to the JSON property `createTime`
304
320
  # @return [String]
@@ -343,6 +359,7 @@ module Google
343
359
 
344
360
  # Update properties of this object
345
361
  def update!(**args)
362
+ @checksum_source = args[:checksum_source] if args.key?(:checksum_source)
346
363
  @create_time = args[:create_time] if args.key?(:create_time)
347
364
  @disabled = args[:disabled] if args.key?(:disabled)
348
365
  @kms_key_version = args[:kms_key_version] if args.key?(:kms_key_version)
@@ -362,6 +379,13 @@ module Google
362
379
  # @return [String]
363
380
  attr_accessor :data
364
381
 
382
+ # Optional. [Optional] The integrity checksum of the payload. If provided, the
383
+ # server will verify that the checksum matches the payload. If not provided, the
384
+ # server will generate the checksum.
385
+ # Corresponds to the JSON property `dataCrc32c`
386
+ # @return [Fixnum]
387
+ attr_accessor :data_crc32c
388
+
365
389
  def initialize(**args)
366
390
  update!(**args)
367
391
  end
@@ -369,6 +393,7 @@ module Google
369
393
  # Update properties of this object
370
394
  def update!(**args)
371
395
  @data = args[:data] if args.key?(:data)
396
+ @data_crc32c = args[:data_crc32c] if args.key?(:data_crc32c)
372
397
  end
373
398
  end
374
399
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ParametermanagerV1
18
18
  # Version of the google-apis-parametermanager_v1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260629"
25
+ REVISION = "20260831"
26
26
  end
27
27
  end
28
28
  end
@@ -194,6 +194,7 @@ module Google
194
194
  property :name, as: 'name'
195
195
  property :policy_member, as: 'policyMember', class: Google::Apis::ParametermanagerV1::ResourcePolicyMember, decorator: Google::Apis::ParametermanagerV1::ResourcePolicyMember::Representation
196
196
 
197
+ hash :tags, as: 'tags'
197
198
  property :update_time, as: 'updateTime'
198
199
  end
199
200
  end
@@ -201,6 +202,7 @@ module Google
201
202
  class ParameterVersion
202
203
  # @private
203
204
  class Representation < Google::Apis::Core::JsonRepresentation
205
+ property :checksum_source, as: 'checksumSource'
204
206
  property :create_time, as: 'createTime'
205
207
  property :disabled, as: 'disabled'
206
208
  property :kms_key_version, as: 'kmsKeyVersion'
@@ -215,6 +217,7 @@ module Google
215
217
  # @private
216
218
  class Representation < Google::Apis::Core::JsonRepresentation
217
219
  property :data, :base64 => true, as: 'data'
220
+ property :data_crc32c, :numeric_string => true, as: 'dataCrc32c'
218
221
  end
219
222
  end
220
223
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-parametermanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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-parametermanager_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-parametermanager_v1/v0.10.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-parametermanager_v1/v0.11.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-parametermanager_v1
62
62
  rdoc_options: []
63
63
  require_paths: