google-cloud-security-private_ca-v1 0.1.1 → 0.1.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 781dd88ad0aacd7a9c86ecaf9de751f396153c3689e26b63ef644cafffb94ca7
|
4
|
+
data.tar.gz: 1cedd8927f289079de58159c0a79fc45ce1130c90f4bc083d840dba0f7f5daf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e1e540287faaef6d002197575d8310fbf5666f44ad2d3f1d5062e6c1d06c643b4a8ef793eab4313fa43379eb56409ffbcf469d927c3b94443d465dcbf88eff4
|
7
|
+
data.tar.gz: eb14354e8f6b1ab68696606b2513fc9f9d97e3382ad44f95619344e70c30af79c2534abf60a04a0238fe72afe20f5e881909be9cf95d4275705df6ea31edfa74
|
@@ -261,14 +261,14 @@ module Google
|
|
261
261
|
# issued by any {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority} in the {::Google::Cloud::Security::PrivateCA::V1::CaPool CaPool}.
|
262
262
|
# @!attribute [rw] publish_ca_cert
|
263
263
|
# @return [::Boolean]
|
264
|
-
#
|
264
|
+
# Optional. When true, publishes each {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s CA certificate and
|
265
265
|
# includes its URL in the "Authority Information Access" X.509 extension
|
266
266
|
# in all issued {::Google::Cloud::Security::PrivateCA::V1::Certificate Certificates}. If this is false, the CA
|
267
267
|
# certificate will not be published and the corresponding X.509 extension
|
268
268
|
# will not be written in issued certificates.
|
269
269
|
# @!attribute [rw] publish_crl
|
270
270
|
# @return [::Boolean]
|
271
|
-
#
|
271
|
+
# Optional. When true, publishes each {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s CRL and includes its
|
272
272
|
# URL in the "CRL Distribution Points" X.509 extension in all issued
|
273
273
|
# {::Google::Cloud::Security::PrivateCA::V1::Certificate Certificates}. If this is false, CRLs will not be published
|
274
274
|
# and the corresponding X.509 extension will not be written in issued
|
@@ -395,11 +395,11 @@ module Google
|
|
395
395
|
# {::Google::Cloud::Security::PrivateCA::V1::CaPool CaPool}.
|
396
396
|
# @!attribute [rw] allow_csr_based_issuance
|
397
397
|
# @return [::Boolean]
|
398
|
-
#
|
398
|
+
# Optional. When true, allows callers to create {::Google::Cloud::Security::PrivateCA::V1::Certificate Certificates} by
|
399
399
|
# specifying a CSR.
|
400
400
|
# @!attribute [rw] allow_config_based_issuance
|
401
401
|
# @return [::Boolean]
|
402
|
-
#
|
402
|
+
# Optional. When true, allows callers to create {::Google::Cloud::Security::PrivateCA::V1::Certificate Certificates} by
|
403
403
|
# specifying a {::Google::Cloud::Security::PrivateCA::V1::CertificateConfig CertificateConfig}.
|
404
404
|
class IssuanceModes
|
405
405
|
include ::Google::Protobuf::MessageExts
|
@@ -845,13 +845,15 @@ module Google
|
|
845
845
|
# @!attribute [rw] lifetime
|
846
846
|
# @return [::Google::Protobuf::Duration]
|
847
847
|
# For convenience, the actual lifetime of an issued certificate.
|
848
|
-
# Corresponds to 'not_after_time' - 'not_before_time'.
|
849
848
|
# @!attribute [rw] not_before_time
|
850
849
|
# @return [::Google::Protobuf::Timestamp]
|
851
850
|
# The time at which the certificate becomes valid.
|
852
851
|
# @!attribute [rw] not_after_time
|
853
852
|
# @return [::Google::Protobuf::Timestamp]
|
854
|
-
# The time
|
853
|
+
# The time after which the certificate is expired.
|
854
|
+
# Per RFC 5280, the validity period for a certificate is the period of time
|
855
|
+
# from not_before_time through not_after_time, inclusive.
|
856
|
+
# Corresponds to 'not_before_time' + 'lifetime' - 1 second.
|
855
857
|
class SubjectDescription
|
856
858
|
include ::Google::Protobuf::MessageExts
|
857
859
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -896,7 +898,7 @@ module Google
|
|
896
898
|
# Required. The OID for this X.509 extension.
|
897
899
|
# @!attribute [rw] critical
|
898
900
|
# @return [::Boolean]
|
899
|
-
#
|
901
|
+
# Optional. Indicates whether or not this extension is critical (i.e., if the client
|
900
902
|
# does not know how to handle this extension, the client should consider this
|
901
903
|
# to be an error).
|
902
904
|
# @!attribute [rw] value
|
@@ -1051,18 +1053,17 @@ module Google
|
|
1051
1053
|
# Optional. A CEL expression that may be used to validate the resolved X.509 Subject
|
1052
1054
|
# and/or Subject Alternative Name before a certificate is signed.
|
1053
1055
|
# To see the full allowed syntax and some examples, see
|
1054
|
-
# https://cloud.google.com/certificate-authority-service/docs/cel
|
1056
|
+
# https://cloud.google.com/certificate-authority-service/docs/using-cel
|
1055
1057
|
# @!attribute [rw] allow_subject_passthrough
|
1056
1058
|
# @return [::Boolean]
|
1057
1059
|
# Required. If this is true, the {::Google::Cloud::Security::PrivateCA::V1::Subject Subject} field may be copied from a certificate
|
1058
1060
|
# request into the signed certificate. Otherwise, the requested {::Google::Cloud::Security::PrivateCA::V1::Subject Subject}
|
1059
|
-
# will be discarded.
|
1061
|
+
# will be discarded.
|
1060
1062
|
# @!attribute [rw] allow_subject_alt_names_passthrough
|
1061
1063
|
# @return [::Boolean]
|
1062
1064
|
# Required. If this is true, the {::Google::Cloud::Security::PrivateCA::V1::SubjectAltNames SubjectAltNames} extension may be copied from a
|
1063
1065
|
# certificate request into the signed certificate. Otherwise, the requested
|
1064
1066
|
# {::Google::Cloud::Security::PrivateCA::V1::SubjectAltNames SubjectAltNames} will be discarded.
|
1065
|
-
# The bool is optional to indicate an unset field, which suggests a forgotten value that needs to be set by the caller.
|
1066
1067
|
class CertificateIdentityConstraints
|
1067
1068
|
include ::Google::Protobuf::MessageExts
|
1068
1069
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-security-private_ca-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|