google-cloud-certificate_manager-v1 0.3.1 → 0.4.1
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/AUTHENTICATION.md +1 -1
- data/README.md +1 -1
- data/lib/google/cloud/certificate_manager/v1/certificate_manager/client.rb +458 -26
- data/lib/google/cloud/certificate_manager/v1/certificate_manager/paths.rb +38 -0
- data/lib/google/cloud/certificate_manager/v1/certificate_manager.rb +5 -5
- data/lib/google/cloud/certificate_manager/v1/version.rb +1 -1
- data/lib/google/cloud/certificate_manager/v1.rb +2 -2
- data/lib/google/cloud/certificatemanager/v1/certificate_issuance_config_pb.rb +79 -0
- data/lib/google/cloud/certificatemanager/v1/certificate_manager_pb.rb +2 -0
- data/lib/google/cloud/certificatemanager/v1/certificate_manager_services_pb.rb +12 -4
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/certificatemanager/v1/certificate_issuance_config.rb +186 -0
- data/proto_docs/google/cloud/certificatemanager/v1/certificate_manager.rb +92 -64
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +11 -7
@@ -0,0 +1,186 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module CertificateManager
|
23
|
+
module V1
|
24
|
+
# Request for the `ListCertificateIssuanceConfigs` method.
|
25
|
+
# @!attribute [rw] parent
|
26
|
+
# @return [::String]
|
27
|
+
# Required. The project and location from which the certificate should be
|
28
|
+
# listed, specified in the format `projects/*/locations/*`.
|
29
|
+
# @!attribute [rw] page_size
|
30
|
+
# @return [::Integer]
|
31
|
+
# Maximum number of certificate configs to return per call.
|
32
|
+
# @!attribute [rw] page_token
|
33
|
+
# @return [::String]
|
34
|
+
# The value returned by the last `ListCertificateIssuanceConfigsResponse`.
|
35
|
+
# Indicates that this is a continuation of a prior
|
36
|
+
# `ListCertificateIssuanceConfigs` call, and that the system should return
|
37
|
+
# the next page of data.
|
38
|
+
# @!attribute [rw] filter
|
39
|
+
# @return [::String]
|
40
|
+
# Filter expression to restrict the Certificates Configs returned.
|
41
|
+
# @!attribute [rw] order_by
|
42
|
+
# @return [::String]
|
43
|
+
# A list of Certificate Config field names used to specify the order of the
|
44
|
+
# returned results. The default sorting order is ascending. To specify
|
45
|
+
# descending order for a field, add a suffix " desc".
|
46
|
+
class ListCertificateIssuanceConfigsRequest
|
47
|
+
include ::Google::Protobuf::MessageExts
|
48
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
49
|
+
end
|
50
|
+
|
51
|
+
# Response for the `ListCertificateIssuanceConfigs` method.
|
52
|
+
# @!attribute [rw] certificate_issuance_configs
|
53
|
+
# @return [::Array<::Google::Cloud::CertificateManager::V1::CertificateIssuanceConfig>]
|
54
|
+
# A list of certificate configs for the parent resource.
|
55
|
+
# @!attribute [rw] next_page_token
|
56
|
+
# @return [::String]
|
57
|
+
# If there might be more results than those appearing in this response, then
|
58
|
+
# `next_page_token` is included. To get the next set of results, call this
|
59
|
+
# method again using the value of `next_page_token` as `page_token`.
|
60
|
+
# @!attribute [rw] unreachable
|
61
|
+
# @return [::Array<::String>]
|
62
|
+
# Locations that could not be reached.
|
63
|
+
class ListCertificateIssuanceConfigsResponse
|
64
|
+
include ::Google::Protobuf::MessageExts
|
65
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
66
|
+
end
|
67
|
+
|
68
|
+
# Request for the `GetCertificateIssuanceConfig` method.
|
69
|
+
# @!attribute [rw] name
|
70
|
+
# @return [::String]
|
71
|
+
# Required. A name of the certificate issuance config to describe. Must be in
|
72
|
+
# the format `projects/*/locations/*/certificateIssuanceConfigs/*`.
|
73
|
+
class GetCertificateIssuanceConfigRequest
|
74
|
+
include ::Google::Protobuf::MessageExts
|
75
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
76
|
+
end
|
77
|
+
|
78
|
+
# Request for the `CreateCertificateIssuanceConfig` method.
|
79
|
+
# @!attribute [rw] parent
|
80
|
+
# @return [::String]
|
81
|
+
# Required. The parent resource of the certificate issuance config. Must be
|
82
|
+
# in the format `projects/*/locations/*`.
|
83
|
+
# @!attribute [rw] certificate_issuance_config_id
|
84
|
+
# @return [::String]
|
85
|
+
# Required. A user-provided name of the certificate config.
|
86
|
+
# @!attribute [rw] certificate_issuance_config
|
87
|
+
# @return [::Google::Cloud::CertificateManager::V1::CertificateIssuanceConfig]
|
88
|
+
# Required. A definition of the certificate issuance config to create.
|
89
|
+
class CreateCertificateIssuanceConfigRequest
|
90
|
+
include ::Google::Protobuf::MessageExts
|
91
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
92
|
+
end
|
93
|
+
|
94
|
+
# Request for the `DeleteCertificateIssuanceConfig` method.
|
95
|
+
# @!attribute [rw] name
|
96
|
+
# @return [::String]
|
97
|
+
# Required. A name of the certificate issuance config to delete. Must be in
|
98
|
+
# the format `projects/*/locations/*/certificateIssuanceConfigs/*`.
|
99
|
+
class DeleteCertificateIssuanceConfigRequest
|
100
|
+
include ::Google::Protobuf::MessageExts
|
101
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
102
|
+
end
|
103
|
+
|
104
|
+
# CertificateIssuanceConfig specifies how to issue and manage a certificate.
|
105
|
+
# @!attribute [rw] name
|
106
|
+
# @return [::String]
|
107
|
+
# A user-defined name of the certificate issuance config.
|
108
|
+
# CertificateIssuanceConfig names must be unique globally and match pattern
|
109
|
+
# `projects/*/locations/*/certificateIssuanceConfigs/*`.
|
110
|
+
# @!attribute [r] create_time
|
111
|
+
# @return [::Google::Protobuf::Timestamp]
|
112
|
+
# Output only. The creation timestamp of a CertificateIssuanceConfig.
|
113
|
+
# @!attribute [r] update_time
|
114
|
+
# @return [::Google::Protobuf::Timestamp]
|
115
|
+
# Output only. The last update timestamp of a CertificateIssuanceConfig.
|
116
|
+
# @!attribute [rw] labels
|
117
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
118
|
+
# Set of labels associated with a CertificateIssuanceConfig.
|
119
|
+
# @!attribute [rw] description
|
120
|
+
# @return [::String]
|
121
|
+
# One or more paragraphs of text description of a CertificateIssuanceConfig.
|
122
|
+
# @!attribute [rw] certificate_authority_config
|
123
|
+
# @return [::Google::Cloud::CertificateManager::V1::CertificateIssuanceConfig::CertificateAuthorityConfig]
|
124
|
+
# Required. The CA that issues the workload certificate. It includes the CA
|
125
|
+
# address, type, authentication to CA service, etc.
|
126
|
+
# @!attribute [rw] lifetime
|
127
|
+
# @return [::Google::Protobuf::Duration]
|
128
|
+
# Required. Workload certificate lifetime requested.
|
129
|
+
# @!attribute [rw] rotation_window_percentage
|
130
|
+
# @return [::Integer]
|
131
|
+
# Required. Specifies the percentage of elapsed time of the certificate
|
132
|
+
# lifetime to wait before renewing the certificate. Must be a number between
|
133
|
+
# 1-99, inclusive.
|
134
|
+
# @!attribute [rw] key_algorithm
|
135
|
+
# @return [::Google::Cloud::CertificateManager::V1::CertificateIssuanceConfig::KeyAlgorithm]
|
136
|
+
# Required. The key algorithm to use when generating the private key.
|
137
|
+
class CertificateIssuanceConfig
|
138
|
+
include ::Google::Protobuf::MessageExts
|
139
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
140
|
+
|
141
|
+
# The CA that issues the workload certificate. It includes CA address, type,
|
142
|
+
# authentication to CA service, etc.
|
143
|
+
# @!attribute [rw] certificate_authority_service_config
|
144
|
+
# @return [::Google::Cloud::CertificateManager::V1::CertificateIssuanceConfig::CertificateAuthorityConfig::CertificateAuthorityServiceConfig]
|
145
|
+
# Defines a CertificateAuthorityServiceConfig.
|
146
|
+
class CertificateAuthorityConfig
|
147
|
+
include ::Google::Protobuf::MessageExts
|
148
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
149
|
+
|
150
|
+
# Contains information required to contact CA service.
|
151
|
+
# @!attribute [rw] ca_pool
|
152
|
+
# @return [::String]
|
153
|
+
# Required. A CA pool resource used to issue a certificate.
|
154
|
+
# The CA pool string has a relative resource path following the form
|
155
|
+
# "projects/\\{project}/locations/\\{location}/caPools/\\{ca_pool}".
|
156
|
+
class CertificateAuthorityServiceConfig
|
157
|
+
include ::Google::Protobuf::MessageExts
|
158
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
# @!attribute [rw] key
|
163
|
+
# @return [::String]
|
164
|
+
# @!attribute [rw] value
|
165
|
+
# @return [::String]
|
166
|
+
class LabelsEntry
|
167
|
+
include ::Google::Protobuf::MessageExts
|
168
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
169
|
+
end
|
170
|
+
|
171
|
+
# The type of keypair to generate.
|
172
|
+
module KeyAlgorithm
|
173
|
+
# Unspecified key algorithm.
|
174
|
+
KEY_ALGORITHM_UNSPECIFIED = 0
|
175
|
+
|
176
|
+
# Specifies RSA with a 2048-bit modulus.
|
177
|
+
RSA_2048 = 1
|
178
|
+
|
179
|
+
# Specifies ECDSA with curve P256.
|
180
|
+
ECDSA_P256 = 4
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
185
|
+
end
|
186
|
+
end
|
@@ -24,8 +24,8 @@ module Google
|
|
24
24
|
# Request for the `ListCertificates` method.
|
25
25
|
# @!attribute [rw] parent
|
26
26
|
# @return [::String]
|
27
|
-
# Required. The project and location from which the certificate should be
|
28
|
-
# specified in the format `projects/*/locations/*`.
|
27
|
+
# Required. The project and location from which the certificate should be
|
28
|
+
# listed, specified in the format `projects/*/locations/*`.
|
29
29
|
# @!attribute [rw] page_size
|
30
30
|
# @return [::Integer]
|
31
31
|
# Maximum number of certificates to return per call.
|
@@ -96,8 +96,8 @@ module Google
|
|
96
96
|
# Required. A definition of the certificate to update.
|
97
97
|
# @!attribute [rw] update_mask
|
98
98
|
# @return [::Google::Protobuf::FieldMask]
|
99
|
-
# Required. The update mask applies to the resource. For the `FieldMask`
|
100
|
-
# see
|
99
|
+
# Required. The update mask applies to the resource. For the `FieldMask`
|
100
|
+
# definition, see
|
101
101
|
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
|
102
102
|
class UpdateCertificateRequest
|
103
103
|
include ::Google::Protobuf::MessageExts
|
@@ -117,8 +117,8 @@ module Google
|
|
117
117
|
# Request for the `ListCertificateMaps` method.
|
118
118
|
# @!attribute [rw] parent
|
119
119
|
# @return [::String]
|
120
|
-
# Required. The project and location from which the certificate maps should
|
121
|
-
# specified in the format `projects/*/locations/*`.
|
120
|
+
# Required. The project and location from which the certificate maps should
|
121
|
+
# be listed, specified in the format `projects/*/locations/*`.
|
122
122
|
# @!attribute [rw] page_size
|
123
123
|
# @return [::Integer]
|
124
124
|
# Maximum number of certificate maps to return per call.
|
@@ -189,8 +189,8 @@ module Google
|
|
189
189
|
# Required. A definition of the certificate map to update.
|
190
190
|
# @!attribute [rw] update_mask
|
191
191
|
# @return [::Google::Protobuf::FieldMask]
|
192
|
-
# Required. The update mask applies to the resource. For the `FieldMask`
|
193
|
-
# see
|
192
|
+
# Required. The update mask applies to the resource. For the `FieldMask`
|
193
|
+
# definition, see
|
194
194
|
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
|
195
195
|
class UpdateCertificateMapRequest
|
196
196
|
include ::Google::Protobuf::MessageExts
|
@@ -210,8 +210,8 @@ module Google
|
|
210
210
|
# Request for the `ListCertificateMapEntries` method.
|
211
211
|
# @!attribute [rw] parent
|
212
212
|
# @return [::String]
|
213
|
-
# Required. The project, location and certificate map from which the
|
214
|
-
# entries should be listed, specified in the format
|
213
|
+
# Required. The project, location and certificate map from which the
|
214
|
+
# certificate map entries should be listed, specified in the format
|
215
215
|
# `projects/*/locations/*/certificateMaps/*`.
|
216
216
|
# @!attribute [rw] page_size
|
217
217
|
# @return [::Integer]
|
@@ -287,8 +287,8 @@ module Google
|
|
287
287
|
# Required. A definition of the certificate map entry to create map entry.
|
288
288
|
# @!attribute [rw] update_mask
|
289
289
|
# @return [::Google::Protobuf::FieldMask]
|
290
|
-
# Required. The update mask applies to the resource. For the `FieldMask`
|
291
|
-
# see
|
290
|
+
# Required. The update mask applies to the resource. For the `FieldMask`
|
291
|
+
# definition, see
|
292
292
|
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
|
293
293
|
class UpdateCertificateMapEntryRequest
|
294
294
|
include ::Google::Protobuf::MessageExts
|
@@ -298,8 +298,8 @@ module Google
|
|
298
298
|
# Request for the `DeleteCertificateMapEntry` method.
|
299
299
|
# @!attribute [rw] name
|
300
300
|
# @return [::String]
|
301
|
-
# Required. A name of the certificate map entry to delete. Must be in the
|
302
|
-
# `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
|
301
|
+
# Required. A name of the certificate map entry to delete. Must be in the
|
302
|
+
# format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
|
303
303
|
class DeleteCertificateMapEntryRequest
|
304
304
|
include ::Google::Protobuf::MessageExts
|
305
305
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -308,8 +308,8 @@ module Google
|
|
308
308
|
# Request for the `ListDnsAuthorizations` method.
|
309
309
|
# @!attribute [rw] parent
|
310
310
|
# @return [::String]
|
311
|
-
# Required. The project and location from which the dns authorizations should
|
312
|
-
# listed, specified in the format `projects/*/locations/*`.
|
311
|
+
# Required. The project and location from which the dns authorizations should
|
312
|
+
# be listed, specified in the format `projects/*/locations/*`.
|
313
313
|
# @!attribute [rw] page_size
|
314
314
|
# @return [::Integer]
|
315
315
|
# Maximum number of dns authorizations to return per call.
|
@@ -351,8 +351,8 @@ module Google
|
|
351
351
|
# Request for the `GetDnsAuthorization` method.
|
352
352
|
# @!attribute [rw] name
|
353
353
|
# @return [::String]
|
354
|
-
# Required. A name of the dns authorization to describe. Must be in the
|
355
|
-
# `projects/*/locations/*/dnsAuthorizations/*`.
|
354
|
+
# Required. A name of the dns authorization to describe. Must be in the
|
355
|
+
# format `projects/*/locations/*/dnsAuthorizations/*`.
|
356
356
|
class GetDnsAuthorizationRequest
|
357
357
|
include ::Google::Protobuf::MessageExts
|
358
358
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -361,8 +361,8 @@ module Google
|
|
361
361
|
# Request for the `CreateDnsAuthorization` method.
|
362
362
|
# @!attribute [rw] parent
|
363
363
|
# @return [::String]
|
364
|
-
# Required. The parent resource of the dns authorization. Must be in the
|
365
|
-
# `projects/*/locations/*`.
|
364
|
+
# Required. The parent resource of the dns authorization. Must be in the
|
365
|
+
# format `projects/*/locations/*`.
|
366
366
|
# @!attribute [rw] dns_authorization_id
|
367
367
|
# @return [::String]
|
368
368
|
# Required. A user-provided name of the dns authorization.
|
@@ -380,8 +380,8 @@ module Google
|
|
380
380
|
# Required. A definition of the dns authorization to update.
|
381
381
|
# @!attribute [rw] update_mask
|
382
382
|
# @return [::Google::Protobuf::FieldMask]
|
383
|
-
# Required. The update mask applies to the resource. For the `FieldMask`
|
384
|
-
# see
|
383
|
+
# Required. The update mask applies to the resource. For the `FieldMask`
|
384
|
+
# definition, see
|
385
385
|
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask.
|
386
386
|
class UpdateDnsAuthorizationRequest
|
387
387
|
include ::Google::Protobuf::MessageExts
|
@@ -418,8 +418,9 @@ module Google
|
|
418
418
|
# @return [::Boolean]
|
419
419
|
# Identifies whether the user has requested cancellation
|
420
420
|
# of the operation. Operations that have successfully been cancelled
|
421
|
-
# have [Operation.error][] value with a
|
422
|
-
# corresponding to
|
421
|
+
# have [Operation.error][] value with a
|
422
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
|
423
|
+
# `Code.CANCELLED`.
|
423
424
|
# @!attribute [rw] api_version
|
424
425
|
# @return [::String]
|
425
426
|
# API version used to start the operation.
|
@@ -453,10 +454,10 @@ module Google
|
|
453
454
|
# If set, contains configuration and state of a managed certificate.
|
454
455
|
# @!attribute [r] san_dnsnames
|
455
456
|
# @return [::Array<::String>]
|
456
|
-
# Output only. The list of Subject Alternative Names of dnsName type defined
|
457
|
-
# certificate (see RFC 5280 4.2.1.6).
|
458
|
-
#
|
459
|
-
#
|
457
|
+
# Output only. The list of Subject Alternative Names of dnsName type defined
|
458
|
+
# in the certificate (see RFC 5280 4.2.1.6). Managed certificates that
|
459
|
+
# haven't been provisioned yet have this field populated with a value of the
|
460
|
+
# managed.domains field.
|
460
461
|
# @!attribute [r] pem_certificate
|
461
462
|
# @return [::String]
|
462
463
|
# Output only. The PEM-encoded certificate chain.
|
@@ -490,39 +491,53 @@ module Google
|
|
490
491
|
# automatically, for as long as it's authorized to do so.
|
491
492
|
# @!attribute [rw] domains
|
492
493
|
# @return [::Array<::String>]
|
493
|
-
# Immutable. The domains for which a managed SSL certificate will be
|
494
|
-
# Wildcard domains are only supported with DNS challenge
|
494
|
+
# Immutable. The domains for which a managed SSL certificate will be
|
495
|
+
# generated. Wildcard domains are only supported with DNS challenge
|
496
|
+
# resolution.
|
495
497
|
# @!attribute [rw] dns_authorizations
|
496
498
|
# @return [::Array<::String>]
|
497
|
-
# Immutable. Authorizations that will be used for performing domain
|
499
|
+
# Immutable. Authorizations that will be used for performing domain
|
500
|
+
# authorization.
|
501
|
+
# @!attribute [rw] issuance_config
|
502
|
+
# @return [::String]
|
503
|
+
# Immutable. The resource name for a
|
504
|
+
# {::Google::Cloud::CertificateManager::V1::CertificateIssuanceConfig CertificateIssuanceConfig}
|
505
|
+
# used to configure private PKI certificates in the format
|
506
|
+
# `projects/*/locations/*/certificateIssuanceConfigs/*`.
|
507
|
+
# If this field is not set, the certificates will instead be publicly
|
508
|
+
# signed as documented at
|
509
|
+
# https://cloud.google.com/load-balancing/docs/ssl-certificates/google-managed-certs#caa.
|
498
510
|
# @!attribute [r] state
|
499
511
|
# @return [::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::State]
|
500
512
|
# Output only. State of the managed certificate resource.
|
501
|
-
# @!attribute [
|
513
|
+
# @!attribute [r] provisioning_issue
|
502
514
|
# @return [::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::ProvisioningIssue]
|
503
|
-
# Information about issues with provisioning a Managed
|
515
|
+
# Output only. Information about issues with provisioning a Managed
|
516
|
+
# Certificate.
|
504
517
|
# @!attribute [r] authorization_attempt_info
|
505
518
|
# @return [::Array<::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::AuthorizationAttemptInfo>]
|
506
|
-
# Output only. Detailed state of the latest authorization attempt for each
|
507
|
-
# specified for managed certificate resource.
|
519
|
+
# Output only. Detailed state of the latest authorization attempt for each
|
520
|
+
# domain specified for managed certificate resource.
|
508
521
|
class ManagedCertificate
|
509
522
|
include ::Google::Protobuf::MessageExts
|
510
523
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
511
524
|
|
512
525
|
# Information about issues with provisioning a Managed Certificate.
|
513
|
-
# @!attribute [
|
526
|
+
# @!attribute [r] reason
|
514
527
|
# @return [::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::ProvisioningIssue::Reason]
|
515
|
-
# Reason for provisioning failures.
|
516
|
-
# @!attribute [
|
528
|
+
# Output only. Reason for provisioning failures.
|
529
|
+
# @!attribute [r] details
|
517
530
|
# @return [::String]
|
518
|
-
# Human readable explanation about the issue. Provided to
|
519
|
-
# the configuration issues.
|
520
|
-
#
|
531
|
+
# Output only. Human readable explanation about the issue. Provided to
|
532
|
+
# help address the configuration issues. Not guaranteed to be stable. For
|
533
|
+
# programmatic access use Reason enum.
|
521
534
|
class ProvisioningIssue
|
522
535
|
include ::Google::Protobuf::MessageExts
|
523
536
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
524
537
|
|
538
|
+
# Reason for provisioning failures.
|
525
539
|
module Reason
|
540
|
+
# Reason is unspecified.
|
526
541
|
REASON_UNSPECIFIED = 0
|
527
542
|
|
528
543
|
# Certificate provisioning failed due to an issue with one or more of
|
@@ -542,22 +557,25 @@ module Google
|
|
542
557
|
# @!attribute [rw] domain
|
543
558
|
# @return [::String]
|
544
559
|
# Domain name of the authorization attempt.
|
545
|
-
# @!attribute [
|
560
|
+
# @!attribute [r] state
|
546
561
|
# @return [::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::AuthorizationAttemptInfo::State]
|
547
|
-
# State of the domain for managed certificate issuance.
|
562
|
+
# Output only. State of the domain for managed certificate issuance.
|
548
563
|
# @!attribute [r] failure_reason
|
549
564
|
# @return [::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::AuthorizationAttemptInfo::FailureReason]
|
550
|
-
# Output only. Reason for failure of the authorization attempt for the
|
551
|
-
#
|
565
|
+
# Output only. Reason for failure of the authorization attempt for the
|
566
|
+
# domain.
|
567
|
+
# @!attribute [r] details
|
552
568
|
# @return [::String]
|
553
|
-
# Human readable explanation for reaching the state.
|
554
|
-
# address the configuration issues.
|
555
|
-
#
|
569
|
+
# Output only. Human readable explanation for reaching the state.
|
570
|
+
# Provided to help address the configuration issues. Not guaranteed to be
|
571
|
+
# stable. For programmatic access use FailureReason enum.
|
556
572
|
class AuthorizationAttemptInfo
|
557
573
|
include ::Google::Protobuf::MessageExts
|
558
574
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
559
575
|
|
576
|
+
# State of the domain for managed certificate issuance.
|
560
577
|
module State
|
578
|
+
# State is unspecified.
|
561
579
|
STATE_UNSPECIFIED = 0
|
562
580
|
|
563
581
|
# Certificate provisioning for this domain is under way. GCP will
|
@@ -573,7 +591,9 @@ module Google
|
|
573
591
|
FAILED = 7
|
574
592
|
end
|
575
593
|
|
594
|
+
# Reason for failure of the authorization attempt for the domain.
|
576
595
|
module FailureReason
|
596
|
+
# FailureReason is unspecified.
|
577
597
|
FAILURE_REASON_UNSPECIFIED = 0
|
578
598
|
|
579
599
|
# There was a problem with the user's DNS or load balancer
|
@@ -590,7 +610,9 @@ module Google
|
|
590
610
|
end
|
591
611
|
end
|
592
612
|
|
613
|
+
# State of the managed certificate resource.
|
593
614
|
module State
|
615
|
+
# State is unspecified.
|
594
616
|
STATE_UNSPECIFIED = 0
|
595
617
|
|
596
618
|
# Certificate Manager attempts to provision or renew the certificate.
|
@@ -651,35 +673,39 @@ module Google
|
|
651
673
|
# Set of labels associated with a Certificate Map.
|
652
674
|
# @!attribute [r] gclb_targets
|
653
675
|
# @return [::Array<::Google::Cloud::CertificateManager::V1::CertificateMap::GclbTarget>]
|
654
|
-
# Output only. A list of GCLB targets
|
676
|
+
# Output only. A list of GCLB targets that use this Certificate Map.
|
677
|
+
# A Target Proxy is only present on this list if it's attached to a
|
678
|
+
# Forwarding Rule.
|
655
679
|
class CertificateMap
|
656
680
|
include ::Google::Protobuf::MessageExts
|
657
681
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
658
682
|
|
659
|
-
# Describes a Target Proxy
|
660
|
-
# @!attribute [
|
683
|
+
# Describes a Target Proxy that uses this Certificate Map.
|
684
|
+
# @!attribute [r] target_https_proxy
|
661
685
|
# @return [::String]
|
662
|
-
# This field returns the resource name in the following
|
686
|
+
# Output only. This field returns the resource name in the following
|
687
|
+
# format:
|
663
688
|
# `//compute.googleapis.com/projects/*/global/targetHttpsProxies/*`.
|
664
|
-
# @!attribute [
|
689
|
+
# @!attribute [r] target_ssl_proxy
|
665
690
|
# @return [::String]
|
666
|
-
# This field returns the resource name in the following
|
691
|
+
# Output only. This field returns the resource name in the following
|
692
|
+
# format:
|
667
693
|
# `//compute.googleapis.com/projects/*/global/targetSslProxies/*`.
|
668
|
-
# @!attribute [
|
694
|
+
# @!attribute [r] ip_configs
|
669
695
|
# @return [::Array<::Google::Cloud::CertificateManager::V1::CertificateMap::GclbTarget::IpConfig>]
|
670
|
-
# IP configurations for this Target Proxy where the
|
696
|
+
# Output only. IP configurations for this Target Proxy where the
|
671
697
|
# Certificate Map is serving.
|
672
698
|
class GclbTarget
|
673
699
|
include ::Google::Protobuf::MessageExts
|
674
700
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
675
701
|
|
676
702
|
# Defines IP configuration where this Certificate Map is serving.
|
677
|
-
# @!attribute [
|
703
|
+
# @!attribute [r] ip_address
|
678
704
|
# @return [::String]
|
679
|
-
# An external IP address.
|
680
|
-
# @!attribute [
|
705
|
+
# Output only. An external IP address.
|
706
|
+
# @!attribute [r] ports
|
681
707
|
# @return [::Array<::Integer>]
|
682
|
-
# Ports.
|
708
|
+
# Output only. Ports.
|
683
709
|
class IpConfig
|
684
710
|
include ::Google::Protobuf::MessageExts
|
685
711
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -776,12 +802,14 @@ module Google
|
|
776
802
|
# One or more paragraphs of text description of a DnsAuthorization.
|
777
803
|
# @!attribute [rw] domain
|
778
804
|
# @return [::String]
|
779
|
-
# Required. Immutable. A domain
|
780
|
-
# single domain and its wildcard, e.g. authorization for
|
781
|
-
# be used to issue certificates for `example.com` and
|
805
|
+
# Required. Immutable. A domain that is being authorized. A DnsAuthorization
|
806
|
+
# resource covers a single domain and its wildcard, e.g. authorization for
|
807
|
+
# `example.com` can be used to issue certificates for `example.com` and
|
808
|
+
# `*.example.com`.
|
782
809
|
# @!attribute [r] dns_resource_record
|
783
810
|
# @return [::Google::Cloud::CertificateManager::V1::DnsAuthorization::DnsResourceRecord]
|
784
|
-
# Output only. DNS Resource Record that needs to be added to DNS
|
811
|
+
# Output only. DNS Resource Record that needs to be added to DNS
|
812
|
+
# configuration.
|
785
813
|
class DnsAuthorization
|
786
814
|
include ::Google::Protobuf::MessageExts
|
787
815
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -28,12 +28,14 @@ module Google
|
|
28
28
|
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
29
29
|
# @!attribute [rw] code
|
30
30
|
# @return [::Integer]
|
31
|
-
# The status code, which should be an enum value of
|
31
|
+
# The status code, which should be an enum value of
|
32
|
+
# [google.rpc.Code][google.rpc.Code].
|
32
33
|
# @!attribute [rw] message
|
33
34
|
# @return [::String]
|
34
35
|
# A developer-facing error message, which should be in English. Any
|
35
36
|
# user-facing error message should be localized and sent in the
|
36
|
-
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
37
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
38
|
+
# by the client.
|
37
39
|
# @!attribute [rw] details
|
38
40
|
# @return [::Array<::Google::Protobuf::Any>]
|
39
41
|
# A list of messages that carry the error details. There is a common set of
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-certificate_manager-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.16.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:
|
29
|
+
version: 0.16.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '0.
|
53
|
+
version: '0.3'
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 2.a
|
@@ -60,7 +60,7 @@ dependencies:
|
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: '0.
|
63
|
+
version: '0.3'
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: 2.a
|
@@ -198,11 +198,15 @@ files:
|
|
198
198
|
- lib/google/cloud/certificate_manager/v1/certificate_manager/operations.rb
|
199
199
|
- lib/google/cloud/certificate_manager/v1/certificate_manager/paths.rb
|
200
200
|
- lib/google/cloud/certificate_manager/v1/version.rb
|
201
|
+
- lib/google/cloud/certificatemanager/v1/certificate_issuance_config_pb.rb
|
201
202
|
- lib/google/cloud/certificatemanager/v1/certificate_manager_pb.rb
|
202
203
|
- lib/google/cloud/certificatemanager/v1/certificate_manager_services_pb.rb
|
203
204
|
- proto_docs/README.md
|
205
|
+
- proto_docs/google/api/client.rb
|
204
206
|
- proto_docs/google/api/field_behavior.rb
|
207
|
+
- proto_docs/google/api/launch_stage.rb
|
205
208
|
- proto_docs/google/api/resource.rb
|
209
|
+
- proto_docs/google/cloud/certificatemanager/v1/certificate_issuance_config.rb
|
206
210
|
- proto_docs/google/cloud/certificatemanager/v1/certificate_manager.rb
|
207
211
|
- proto_docs/google/longrunning/operations.rb
|
208
212
|
- proto_docs/google/protobuf/any.rb
|
@@ -230,7 +234,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
230
234
|
- !ruby/object:Gem::Version
|
231
235
|
version: '0'
|
232
236
|
requirements: []
|
233
|
-
rubygems_version: 3.
|
237
|
+
rubygems_version: 3.4.2
|
234
238
|
signing_key:
|
235
239
|
specification_version: 4
|
236
240
|
summary: API Client library for the Certificate Manager V1 API
|