google-apis-certificatemanager_v1 0.25.0 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4154706ee11327de6fb0cbc24cf71c2951fef404deb6d12b4cd1016af0f0c939
|
4
|
+
data.tar.gz: eca398c1d612fe88d27ac6438727c6393a7709cf7d01c23ba6f0c13b4e8a7fc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ae50835ca32d8b4ad67ae14c52b6480e4c0bfeac973085dfa7920838689368dc211242c5e99260c2da36920c5fb825c9fe54b4727f0fabb6b955d4c5ef01499
|
7
|
+
data.tar.gz: 929afb3c329d86d41df42e63c7c3cbc623e4980ea4dcc9731a850ecfd6fbf839d8098e5df8bd69d0ef2db19db6ba4554a3f4c0602b729cf1dfc9715626fcbe08
|
data/CHANGELOG.md
CHANGED
@@ -22,6 +22,26 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module CertificatemanagerV1
|
24
24
|
|
25
|
+
# Defines an allowlisted certificate.
|
26
|
+
class AllowlistedCertificate
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Required. PEM certificate that is allowlisted. The certificate can be up to 5k
|
30
|
+
# bytes, and must be a parseable X.509 certificate.
|
31
|
+
# Corresponds to the JSON property `pemCertificate`
|
32
|
+
# @return [String]
|
33
|
+
attr_accessor :pem_certificate
|
34
|
+
|
35
|
+
def initialize(**args)
|
36
|
+
update!(**args)
|
37
|
+
end
|
38
|
+
|
39
|
+
# Update properties of this object
|
40
|
+
def update!(**args)
|
41
|
+
@pem_certificate = args[:pem_certificate] if args.key?(:pem_certificate)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
25
45
|
# State of the latest attempt to authorize a domain for certificate issuance.
|
26
46
|
class AuthorizationAttemptInfo
|
27
47
|
include Google::Apis::Core::Hashable
|
@@ -1185,6 +1205,14 @@ module Google
|
|
1185
1205
|
class TrustConfig
|
1186
1206
|
include Google::Apis::Core::Hashable
|
1187
1207
|
|
1208
|
+
# Optional. A certificate matching an allowlisted certificate is always
|
1209
|
+
# considered valid as long as the certificate is parseable, proof of private key
|
1210
|
+
# possession is established, and constraints on the certificate’s SAN field are
|
1211
|
+
# met.
|
1212
|
+
# Corresponds to the JSON property `allowlistedCertificates`
|
1213
|
+
# @return [Array<Google::Apis::CertificatemanagerV1::AllowlistedCertificate>]
|
1214
|
+
attr_accessor :allowlisted_certificates
|
1215
|
+
|
1188
1216
|
# Output only. The creation timestamp of a TrustConfig.
|
1189
1217
|
# Corresponds to the JSON property `createTime`
|
1190
1218
|
# @return [String]
|
@@ -1232,6 +1260,7 @@ module Google
|
|
1232
1260
|
|
1233
1261
|
# Update properties of this object
|
1234
1262
|
def update!(**args)
|
1263
|
+
@allowlisted_certificates = args[:allowlisted_certificates] if args.key?(:allowlisted_certificates)
|
1235
1264
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1236
1265
|
@description = args[:description] if args.key?(:description)
|
1237
1266
|
@etag = args[:etag] if args.key?(:etag)
|
@@ -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.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240313"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module CertificatemanagerV1
|
24
24
|
|
25
|
+
class AllowlistedCertificate
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class AuthorizationAttemptInfo
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -214,6 +220,13 @@ module Google
|
|
214
220
|
include Google::Apis::Core::JsonObjectSupport
|
215
221
|
end
|
216
222
|
|
223
|
+
class AllowlistedCertificate
|
224
|
+
# @private
|
225
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
226
|
+
property :pem_certificate, as: 'pemCertificate'
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|
217
230
|
class AuthorizationAttemptInfo
|
218
231
|
# @private
|
219
232
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -526,6 +539,8 @@ module Google
|
|
526
539
|
class TrustConfig
|
527
540
|
# @private
|
528
541
|
class Representation < Google::Apis::Core::JsonRepresentation
|
542
|
+
collection :allowlisted_certificates, as: 'allowlistedCertificates', class: Google::Apis::CertificatemanagerV1::AllowlistedCertificate, decorator: Google::Apis::CertificatemanagerV1::AllowlistedCertificate::Representation
|
543
|
+
|
529
544
|
property :create_time, as: 'createTime'
|
530
545
|
property :description, as: 'description'
|
531
546
|
property :etag, as: 'etag'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.26.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|