google-apis-certificatemanager_v1 0.37.0 → 0.38.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 +4 -0
- data/lib/google/apis/certificatemanager_v1/classes.rb +52 -2
- data/lib/google/apis/certificatemanager_v1/gem_version.rb +2 -2
- data/lib/google/apis/certificatemanager_v1/representations.rb +20 -0
- data/lib/google/apis/certificatemanager_v1/service.rb +6 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d64e8e5800c7cd3d0d47c74200d92c71be6aa5b3f1eaf56190e1b7893b58a1f6
|
|
4
|
+
data.tar.gz: e7823e8a72493f0a7b830921e367892b0583cb338cf72a42433548fefd908609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c51fd01bc61da6390bf9f4f14154543c14a3087d5a6cbacdfd794223afda3fb5df505222ec78065123f7266d5f6eb5561390873b9d8f62ae27b8332d40da99fc
|
|
7
|
+
data.tar.gz: e393249565680f4b8c55dbd0806bcddcf3fe088961ade776fd4e22628a35cbc9656bf1efc758f32279530f3ee29d291e043dd0efd08792a17e55b9a73ad0edb2
|
data/CHANGELOG.md
CHANGED
|
@@ -173,6 +173,13 @@ module Google
|
|
|
173
173
|
# @return [Google::Apis::CertificatemanagerV1::ManagedCertificate]
|
|
174
174
|
attr_accessor :managed
|
|
175
175
|
|
|
176
|
+
# Configuration and state of a Managed Identity Certificate. Certificate Manager
|
|
177
|
+
# provisions and renews Managed Identity Certificates automatically, for as long
|
|
178
|
+
# as it's authorized to do so.
|
|
179
|
+
# Corresponds to the JSON property `managedIdentity`
|
|
180
|
+
# @return [Google::Apis::CertificatemanagerV1::ManagedIdentityCertificate]
|
|
181
|
+
attr_accessor :managed_identity
|
|
182
|
+
|
|
176
183
|
# Identifier. A user-defined name of the certificate. Certificate names must be
|
|
177
184
|
# unique globally and match pattern `projects/*/locations/*/certificates/*`.
|
|
178
185
|
# Corresponds to the JSON property `name`
|
|
@@ -225,6 +232,7 @@ module Google
|
|
|
225
232
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
226
233
|
@labels = args[:labels] if args.key?(:labels)
|
|
227
234
|
@managed = args[:managed] if args.key?(:managed)
|
|
235
|
+
@managed_identity = args[:managed_identity] if args.key?(:managed_identity)
|
|
228
236
|
@name = args[:name] if args.key?(:name)
|
|
229
237
|
@pem_certificate = args[:pem_certificate] if args.key?(:pem_certificate)
|
|
230
238
|
@san_dnsnames = args[:san_dnsnames] if args.key?(:san_dnsnames)
|
|
@@ -912,8 +920,9 @@ module Google
|
|
|
912
920
|
attr_accessor :operations
|
|
913
921
|
|
|
914
922
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
915
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
916
|
-
# when attempting to list all resources across all supported
|
|
923
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
924
|
+
# For example, when attempting to list all resources across all supported
|
|
925
|
+
# locations.
|
|
917
926
|
# Corresponds to the JSON property `unreachable`
|
|
918
927
|
# @return [Array<String>]
|
|
919
928
|
attr_accessor :unreachable
|
|
@@ -1068,6 +1077,40 @@ module Google
|
|
|
1068
1077
|
end
|
|
1069
1078
|
end
|
|
1070
1079
|
|
|
1080
|
+
# Configuration and state of a Managed Identity Certificate. Certificate Manager
|
|
1081
|
+
# provisions and renews Managed Identity Certificates automatically, for as long
|
|
1082
|
+
# as it's authorized to do so.
|
|
1083
|
+
class ManagedIdentityCertificate
|
|
1084
|
+
include Google::Apis::Core::Hashable
|
|
1085
|
+
|
|
1086
|
+
# Required. Immutable. SPIFFE ID of the Managed Identity used for this
|
|
1087
|
+
# certificate.
|
|
1088
|
+
# Corresponds to the JSON property `identity`
|
|
1089
|
+
# @return [String]
|
|
1090
|
+
attr_accessor :identity
|
|
1091
|
+
|
|
1092
|
+
# Information about issues with provisioning a Managed Certificate.
|
|
1093
|
+
# Corresponds to the JSON property `provisioningIssue`
|
|
1094
|
+
# @return [Google::Apis::CertificatemanagerV1::ProvisioningIssue]
|
|
1095
|
+
attr_accessor :provisioning_issue
|
|
1096
|
+
|
|
1097
|
+
# Output only. State of the managed certificate resource.
|
|
1098
|
+
# Corresponds to the JSON property `state`
|
|
1099
|
+
# @return [String]
|
|
1100
|
+
attr_accessor :state
|
|
1101
|
+
|
|
1102
|
+
def initialize(**args)
|
|
1103
|
+
update!(**args)
|
|
1104
|
+
end
|
|
1105
|
+
|
|
1106
|
+
# Update properties of this object
|
|
1107
|
+
def update!(**args)
|
|
1108
|
+
@identity = args[:identity] if args.key?(:identity)
|
|
1109
|
+
@provisioning_issue = args[:provisioning_issue] if args.key?(:provisioning_issue)
|
|
1110
|
+
@state = args[:state] if args.key?(:state)
|
|
1111
|
+
end
|
|
1112
|
+
end
|
|
1113
|
+
|
|
1071
1114
|
# This resource represents a long-running operation that is the result of a
|
|
1072
1115
|
# network API call.
|
|
1073
1116
|
class Operation
|
|
@@ -1374,6 +1417,12 @@ module Google
|
|
|
1374
1417
|
# @return [String]
|
|
1375
1418
|
attr_accessor :name
|
|
1376
1419
|
|
|
1420
|
+
# Optional. Defines a mapping from a trust domain to a TrustStore. This is used
|
|
1421
|
+
# for SPIFFE certificate validation.
|
|
1422
|
+
# Corresponds to the JSON property `spiffeTrustStores`
|
|
1423
|
+
# @return [Hash<String,Google::Apis::CertificatemanagerV1::TrustStore>]
|
|
1424
|
+
attr_accessor :spiffe_trust_stores
|
|
1425
|
+
|
|
1377
1426
|
# Optional. Set of trust stores to perform validation against. This field is
|
|
1378
1427
|
# supported when TrustConfig is configured with Load Balancers, currently not
|
|
1379
1428
|
# supported for SPIFFE certificate validation. Only one TrustStore specified is
|
|
@@ -1399,6 +1448,7 @@ module Google
|
|
|
1399
1448
|
@etag = args[:etag] if args.key?(:etag)
|
|
1400
1449
|
@labels = args[:labels] if args.key?(:labels)
|
|
1401
1450
|
@name = args[:name] if args.key?(:name)
|
|
1451
|
+
@spiffe_trust_stores = args[:spiffe_trust_stores] if args.key?(:spiffe_trust_stores)
|
|
1402
1452
|
@trust_stores = args[:trust_stores] if args.key?(:trust_stores)
|
|
1403
1453
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
1404
1454
|
end
|
|
@@ -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.38.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -184,6 +184,12 @@ module Google
|
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
|
185
185
|
end
|
|
186
186
|
|
|
187
|
+
class ManagedIdentityCertificate
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
187
193
|
class Operation
|
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
195
|
|
|
@@ -288,6 +294,8 @@ module Google
|
|
|
288
294
|
hash :labels, as: 'labels'
|
|
289
295
|
property :managed, as: 'managed', class: Google::Apis::CertificatemanagerV1::ManagedCertificate, decorator: Google::Apis::CertificatemanagerV1::ManagedCertificate::Representation
|
|
290
296
|
|
|
297
|
+
property :managed_identity, as: 'managedIdentity', class: Google::Apis::CertificatemanagerV1::ManagedIdentityCertificate, decorator: Google::Apis::CertificatemanagerV1::ManagedIdentityCertificate::Representation
|
|
298
|
+
|
|
291
299
|
property :name, as: 'name'
|
|
292
300
|
property :pem_certificate, as: 'pemCertificate'
|
|
293
301
|
collection :san_dnsnames, as: 'sanDnsnames'
|
|
@@ -527,6 +535,16 @@ module Google
|
|
|
527
535
|
end
|
|
528
536
|
end
|
|
529
537
|
|
|
538
|
+
class ManagedIdentityCertificate
|
|
539
|
+
# @private
|
|
540
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
541
|
+
property :identity, as: 'identity'
|
|
542
|
+
property :provisioning_issue, as: 'provisioningIssue', class: Google::Apis::CertificatemanagerV1::ProvisioningIssue, decorator: Google::Apis::CertificatemanagerV1::ProvisioningIssue::Representation
|
|
543
|
+
|
|
544
|
+
property :state, as: 'state'
|
|
545
|
+
end
|
|
546
|
+
end
|
|
547
|
+
|
|
530
548
|
class Operation
|
|
531
549
|
# @private
|
|
532
550
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -605,6 +623,8 @@ module Google
|
|
|
605
623
|
property :etag, as: 'etag'
|
|
606
624
|
hash :labels, as: 'labels'
|
|
607
625
|
property :name, as: 'name'
|
|
626
|
+
hash :spiffe_trust_stores, as: 'spiffeTrustStores', class: Google::Apis::CertificatemanagerV1::TrustStore, decorator: Google::Apis::CertificatemanagerV1::TrustStore::Representation
|
|
627
|
+
|
|
608
628
|
collection :trust_stores, as: 'trustStores', class: Google::Apis::CertificatemanagerV1::TrustStore, decorator: Google::Apis::CertificatemanagerV1::TrustStore::Representation
|
|
609
629
|
|
|
610
630
|
property :update_time, as: 'updateTime'
|
|
@@ -1180,11 +1180,12 @@ module Google
|
|
|
1180
1180
|
# The standard list page token.
|
|
1181
1181
|
# @param [Boolean] return_partial_success
|
|
1182
1182
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1183
|
-
# those that are unreachable are returned in the
|
|
1184
|
-
# unreachable
|
|
1185
|
-
#
|
|
1186
|
-
# by default
|
|
1187
|
-
# explicitly documented otherwise in service or product specific
|
|
1183
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1184
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1185
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1186
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1187
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1188
|
+
# documentation.
|
|
1188
1189
|
# @param [String] fields
|
|
1189
1190
|
# Selector specifying which fields to include in a partial response.
|
|
1190
1191
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.38.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.38.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|