google-apis-privateca_v1 0.43.0 → 0.44.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: 7de30a140f4cce3c2a1f39613adac93bafe66e795f809f41d20d5380c65a9f49
|
4
|
+
data.tar.gz: 35d004724380d3dc9e606359357140c4dd75ee7e1194291b7700f428a16ac915
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d322b5600defa597944c16d442c2e9bbea5f4b7084088ec8edd5a1775e8d04aa8d85abfc70aa43a70cb19b1cb39ac939441a1b30ca6a214e2a9bbe3d61a33ef0
|
7
|
+
data.tar.gz: 3c71050f578b0c3efc64c7825f6666d700c88457e5444a083cc654dde6c085b8ff85cc145d42c187e5c5a3349d18dd186899d1168d830e3f29bf97ef3fddd62c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-privateca_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240819
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.43.0 (2024-06-09)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240529
|
@@ -769,6 +769,13 @@ module Google
|
|
769
769
|
# @return [Google::Apis::PrivatecaV1::KeyId]
|
770
770
|
attr_accessor :subject_key_id
|
771
771
|
|
772
|
+
# The hash of the pre-signed certificate, which will be signed by the CA.
|
773
|
+
# Corresponds to the TBS Certificate in https://tools.ietf.org/html/rfc5280#
|
774
|
+
# section-4.1.2. The field will always be populated.
|
775
|
+
# Corresponds to the JSON property `tbsCertificateDigest`
|
776
|
+
# @return [String]
|
777
|
+
attr_accessor :tbs_certificate_digest
|
778
|
+
|
772
779
|
# An X509Parameters is used to describe certain fields of an X.509 certificate,
|
773
780
|
# such as the key usage fields, fields specific to CA certificates, certificate
|
774
781
|
# policy extensions and custom extensions.
|
@@ -789,6 +796,7 @@ module Google
|
|
789
796
|
@public_key = args[:public_key] if args.key?(:public_key)
|
790
797
|
@subject_description = args[:subject_description] if args.key?(:subject_description)
|
791
798
|
@subject_key_id = args[:subject_key_id] if args.key?(:subject_key_id)
|
799
|
+
@tbs_certificate_digest = args[:tbs_certificate_digest] if args.key?(:tbs_certificate_digest)
|
792
800
|
@x509_description = args[:x509_description] if args.key?(:x509_description)
|
793
801
|
end
|
794
802
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PrivatecaV1
|
18
18
|
# Version of the google-apis-privateca_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240819"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -608,6 +608,7 @@ module Google
|
|
608
608
|
|
609
609
|
property :subject_key_id, as: 'subjectKeyId', class: Google::Apis::PrivatecaV1::KeyId, decorator: Google::Apis::PrivatecaV1::KeyId::Representation
|
610
610
|
|
611
|
+
property :tbs_certificate_digest, as: 'tbsCertificateDigest'
|
611
612
|
property :x509_description, as: 'x509Description', class: Google::Apis::PrivatecaV1::X509Parameters, decorator: Google::Apis::PrivatecaV1::X509Parameters::Representation
|
612
613
|
|
613
614
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-privateca_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.44.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-09-01 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-privateca_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.44.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-privateca_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|