google-apis-certificatemanager_v1 0.25.0 → 0.27.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 +8 -0
- data/lib/google/apis/certificatemanager_v1/classes.rb +29 -0
- data/lib/google/apis/certificatemanager_v1/gem_version.rb +2 -2
- data/lib/google/apis/certificatemanager_v1/representations.rb +15 -0
- data/lib/google/apis/certificatemanager_v1/service.rb +6 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22aaf9929e76ee0a204c21df207191ac347e8784777927b29d925ebca54914c4
|
4
|
+
data.tar.gz: d62fab54c9177b1e1cb5709995d521e0948d7f1b72c7ca21d8b94b392dfd6119
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9da9f250d05396494f5cb2682dff0b7973ddc014a9e94c2cbd89baad275db2c2cf14cd89c1c03eba8ce61aeb51d8d0f797e5d34f02e5ffa293a73786e18c081b
|
7
|
+
data.tar.gz: 69a849f1df7f16358d2b81f811086b33a96cf1dc8ef298a08ee237d6083ea6ae3a6c456be4d63befac2e7548521e710c54ca98eaa5956107466197a6e430b3fd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-certificatemanager_v1
|
2
2
|
|
3
|
+
### v0.27.0 (2024-04-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240417
|
6
|
+
|
7
|
+
### v0.26.0 (2024-03-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240313
|
10
|
+
|
3
11
|
### v0.25.0 (2024-02-23)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.14.0
|
@@ -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.27.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 = "20240417"
|
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'
|
@@ -232,7 +232,7 @@ module Google
|
|
232
232
|
# @param [String] order_by
|
233
233
|
# A list of Certificate Config field names used to specify the order of the
|
234
234
|
# returned results. The default sorting order is ascending. To specify
|
235
|
-
# descending order for a field, add a suffix " desc"
|
235
|
+
# descending order for a field, add a suffix `" desc"`.
|
236
236
|
# @param [Fixnum] page_size
|
237
237
|
# Maximum number of certificate configs to return per call.
|
238
238
|
# @param [String] page_token
|
@@ -381,7 +381,7 @@ module Google
|
|
381
381
|
# @param [String] order_by
|
382
382
|
# A list of Certificate Map field names used to specify the order of the
|
383
383
|
# returned results. The default sorting order is ascending. To specify
|
384
|
-
# descending order for a field, add a suffix " desc"
|
384
|
+
# descending order for a field, add a suffix `" desc"`.
|
385
385
|
# @param [Fixnum] page_size
|
386
386
|
# Maximum number of certificate maps to return per call.
|
387
387
|
# @param [String] page_token
|
@@ -567,7 +567,7 @@ module Google
|
|
567
567
|
# @param [String] order_by
|
568
568
|
# A list of Certificate Map Entry field names used to specify the order of the
|
569
569
|
# returned results. The default sorting order is ascending. To specify
|
570
|
-
# descending order for a field, add a suffix " desc"
|
570
|
+
# descending order for a field, add a suffix `" desc"`.
|
571
571
|
# @param [Fixnum] page_size
|
572
572
|
# Maximum number of certificate map entries to return. The service may return
|
573
573
|
# fewer than this value. If unspecified, at most 50 certificate map entries will
|
@@ -756,7 +756,7 @@ module Google
|
|
756
756
|
# @param [String] order_by
|
757
757
|
# A list of Certificate field names used to specify the order of the returned
|
758
758
|
# results. The default sorting order is ascending. To specify descending order
|
759
|
-
# for a field, add a suffix " desc"
|
759
|
+
# for a field, add a suffix `" desc"`.
|
760
760
|
# @param [Fixnum] page_size
|
761
761
|
# Maximum number of certificates to return per call.
|
762
762
|
# @param [String] page_token
|
@@ -941,7 +941,7 @@ module Google
|
|
941
941
|
# @param [String] order_by
|
942
942
|
# A list of Dns Authorization field names used to specify the order of the
|
943
943
|
# returned results. The default sorting order is ascending. To specify
|
944
|
-
# descending order for a field, add a suffix " desc"
|
944
|
+
# descending order for a field, add a suffix `" desc"`.
|
945
945
|
# @param [Fixnum] page_size
|
946
946
|
# Maximum number of dns authorizations to return per call.
|
947
947
|
# @param [String] page_token
|
@@ -1276,7 +1276,7 @@ module Google
|
|
1276
1276
|
# @param [String] order_by
|
1277
1277
|
# A list of TrustConfig field names used to specify the order of the returned
|
1278
1278
|
# results. The default sorting order is ascending. To specify descending order
|
1279
|
-
# for a field, add a suffix " desc"
|
1279
|
+
# for a field, add a suffix `" desc"`.
|
1280
1280
|
# @param [Fixnum] page_size
|
1281
1281
|
# Maximum number of TrustConfigs to return per call.
|
1282
1282
|
# @param [String] page_token
|
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.27.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-04-28 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.27.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: []
|