google-apis-certificatemanager_v1 0.31.0 → 0.32.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: c3a17d922fb44395ca1a6479664a753c05e7f464f7f107da7e4a6e1a79ec4c90
4
- data.tar.gz: 9110a987dabc09eaf9ebb814d922b91c32aa8a6c03ec53e6c1e29bc6fdf70f81
3
+ metadata.gz: b86f7649bb4148074d5b86f012e6e11ff0c67c681158a9d43724e31ea9cb4881
4
+ data.tar.gz: ff74f31a6427a9b822cbceb4c9f484812d587e68b2aa6a3e2ebacfe2770c017d
5
5
  SHA512:
6
- metadata.gz: 76d50af6912bc94bd0dba117958f81a4d48d2582d9a3e51266384e5f0b5ccf69ad0ea46afa5214f959986c1f999fe249a83962bb73e4b8d66513f7f74e9910c9
7
- data.tar.gz: 4a92e24d886cf4d82e16f736a7c4c4e655dca0b84b66b9d0c93c2b7bbed5e7997e57d37c865060cd71b45052e2b3b01d06a1023daf94f23e482f723d23ad4cae
6
+ metadata.gz: 2e1270202217c00e74551c97bcd4eb8ab9a38e3386ca3023dfde387ad074463ec0310f68043774058f026195f791cd03a0abddb218f341d237309cf8ec0cb0ac
7
+ data.tar.gz: d80e2e32d5f3c2ae86a4a614036ecfc29a52ee98f4bdb75e21d107e0156b150e8ec4d29e688878525596d159f9e44a26187cf61376f4130fa127c7e3d5503903
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-certificatemanager_v1
2
2
 
3
+ ### v0.32.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250211
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.31.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241204
@@ -161,6 +161,11 @@ module Google
161
161
  # @return [String]
162
162
  attr_accessor :update_time
163
163
 
164
+ # Output only. The list of resources that use this Certificate.
165
+ # Corresponds to the JSON property `usedBy`
166
+ # @return [Array<Google::Apis::CertificatemanagerV1::UsedBy>]
167
+ attr_accessor :used_by
168
+
164
169
  def initialize(**args)
165
170
  update!(**args)
166
171
  end
@@ -178,6 +183,7 @@ module Google
178
183
  @scope = args[:scope] if args.key?(:scope)
179
184
  @self_managed = args[:self_managed] if args.key?(:self_managed)
180
185
  @update_time = args[:update_time] if args.key?(:update_time)
186
+ @used_by = args[:used_by] if args.key?(:used_by)
181
187
  end
182
188
  end
183
189
 
@@ -1304,6 +1310,28 @@ module Google
1304
1310
  @trust_anchors = args[:trust_anchors] if args.key?(:trust_anchors)
1305
1311
  end
1306
1312
  end
1313
+
1314
+ # Defines a resource that uses the certificate.
1315
+ class UsedBy
1316
+ include Google::Apis::Core::Hashable
1317
+
1318
+ # Output only. Full name of the resource https://google.aip.dev/122#full-
1319
+ # resource-names, e.g. `//certificatemanager.googleapis.com/projects/*/locations/
1320
+ # */certificateMaps/*/certificateMapEntries/*` or `//compute.googleapis.com/
1321
+ # projects/*/locations/*/targetHttpsProxies/*`.
1322
+ # Corresponds to the JSON property `name`
1323
+ # @return [String]
1324
+ attr_accessor :name
1325
+
1326
+ def initialize(**args)
1327
+ update!(**args)
1328
+ end
1329
+
1330
+ # Update properties of this object
1331
+ def update!(**args)
1332
+ @name = args[:name] if args.key?(:name)
1333
+ end
1334
+ end
1307
1335
  end
1308
1336
  end
1309
1337
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CertificatemanagerV1
18
18
  # Version of the google-apis-certificatemanager_v1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241204"
25
+ REVISION = "20250211"
26
26
  end
27
27
  end
28
28
  end
@@ -220,6 +220,12 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
+ class UsedBy
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
223
229
  class AllowlistedCertificate
224
230
  # @private
225
231
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -259,6 +265,8 @@ module Google
259
265
  property :self_managed, as: 'selfManaged', class: Google::Apis::CertificatemanagerV1::SelfManagedCertificate, decorator: Google::Apis::CertificatemanagerV1::SelfManagedCertificate::Representation
260
266
 
261
267
  property :update_time, as: 'updateTime'
268
+ collection :used_by, as: 'usedBy', class: Google::Apis::CertificatemanagerV1::UsedBy, decorator: Google::Apis::CertificatemanagerV1::UsedBy::Representation
269
+
262
270
  end
263
271
  end
264
272
 
@@ -561,6 +569,13 @@ module Google
561
569
 
562
570
  end
563
571
  end
572
+
573
+ class UsedBy
574
+ # @private
575
+ class Representation < Google::Apis::Core::JsonRepresentation
576
+ property :name, as: 'name'
577
+ end
578
+ end
564
579
  end
565
580
  end
566
581
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-certificatemanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.32.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Certificate Manager API V1
82
79
  test_files: []