google-apis-certificatemanager_v1 0.30.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/certificatemanager_v1/classes.rb +31 -2
- data/lib/google/apis/certificatemanager_v1/gem_version.rb +3 -3
- data/lib/google/apis/certificatemanager_v1/representations.rb +15 -0
- data/lib/google/apis/certificatemanager_v1/service.rb +2 -2
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b86f7649bb4148074d5b86f012e6e11ff0c67c681158a9d43724e31ea9cb4881
|
4
|
+
data.tar.gz: ff74f31a6427a9b822cbceb4c9f484812d587e68b2aa6a3e2ebacfe2770c017d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e1270202217c00e74551c97bcd4eb8ab9a38e3386ca3023dfde387ad074463ec0310f68043774058f026195f791cd03a0abddb218f341d237309cf8ec0cb0ac
|
7
|
+
data.tar.gz: d80e2e32d5f3c2ae86a4a614036ecfc29a52ee98f4bdb75e21d107e0156b150e8ec4d29e688878525596d159f9e44a26187cf61376f4130fa127c7e3d5503903
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
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
|
+
|
8
|
+
### v0.31.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241204
|
11
|
+
|
3
12
|
### v0.30.0 (2024-08-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240729
|
@@ -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
|
|
@@ -1054,8 +1060,9 @@ module Google
|
|
1054
1060
|
attr_accessor :end_time
|
1055
1061
|
|
1056
1062
|
# Identifies whether the user has requested cancellation of the operation.
|
1057
|
-
# Operations that have successfully been cancelled have
|
1058
|
-
# with a google.rpc.Status.code of 1
|
1063
|
+
# Operations that have successfully been cancelled have google.longrunning.
|
1064
|
+
# Operation.error value with a google.rpc.Status.code of `1`, corresponding to `
|
1065
|
+
# Code.CANCELLED`.
|
1059
1066
|
# Corresponds to the JSON property `requestedCancellation`
|
1060
1067
|
# @return [Boolean]
|
1061
1068
|
attr_accessor :requested_cancellation
|
@@ -1303,6 +1310,28 @@ module Google
|
|
1303
1310
|
@trust_anchors = args[:trust_anchors] if args.key?(:trust_anchors)
|
1304
1311
|
end
|
1305
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
|
1306
1335
|
end
|
1307
1336
|
end
|
1308
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.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
@@ -1066,8 +1066,8 @@ module Google
|
|
1066
1066
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
1067
1067
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
1068
1068
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
1069
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
1070
|
-
# corresponding to `Code.CANCELLED`.
|
1069
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
1070
|
+
# , corresponding to `Code.CANCELLED`.
|
1071
1071
|
# @param [String] name
|
1072
1072
|
# The name of the operation resource to be cancelled.
|
1073
1073
|
# @param [Google::Apis::CertificatemanagerV1::CancelOperationRequest] cancel_operation_request_object
|
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.
|
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:
|
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.
|
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
|
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: []
|