google-apis-certificatemanager_v1 0.24.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: 81dffd53f8193ccd172a2cbcaaaa36d060ddbcfa7afeffc57c8b54eb25f375bf
4
- data.tar.gz: cd76cfa4b2726079a52f46e51a80247c8e3a328aff057d233761bc6a604a19b4
3
+ metadata.gz: 4154706ee11327de6fb0cbc24cf71c2951fef404deb6d12b4cd1016af0f0c939
4
+ data.tar.gz: eca398c1d612fe88d27ac6438727c6393a7709cf7d01c23ba6f0c13b4e8a7fc7
5
5
  SHA512:
6
- metadata.gz: 80fecfce5b7fbee0a89561b1c462021da0ddcea8a627c8c69550a1b7bf78a9b36f0d95ce48eed3ee2c20b3b8b696c1469c4ece9dacefb4862c20924c8b5d2fb1
7
- data.tar.gz: 189f8c6569ab276271b55718ecddcb591388c2d2686fd2d91ab6f9cfcf5ce8533caa26b8ca22468d283d1340f25e49c6ae75f9ad56eb6929257e10e1facb07e8
6
+ metadata.gz: 5ae50835ca32d8b4ad67ae14c52b6480e4c0bfeac973085dfa7920838689368dc211242c5e99260c2da36920c5fb825c9fe54b4727f0fabb6b955d4c5ef01499
7
+ data.tar.gz: 929afb3c329d86d41df42e63c7c3cbc623e4980ea4dcc9731a850ecfd6fbf839d8098e5df8bd69d0ef2db19db6ba4554a3f4c0602b729cf1dfc9715626fcbe08
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-certificatemanager_v1
2
2
 
3
+ ### v0.26.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240313
6
+
7
+ ### v0.25.0 (2024-02-23)
8
+
9
+ * Regenerated using generator version 0.14.0
10
+
3
11
  ### v0.24.0 (2024-02-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20240209
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/certificate-manager) may pr
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -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.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240209"
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.24.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-02-18 00:00:00.000000000 Z
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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.24.0
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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Certificate Manager API V1