google-cloud-security-private_ca-v1 0.4.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/README.md +2 -2
- data/lib/google/cloud/security/private_ca/v1/bindings_override.rb +185 -0
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/client.rb +415 -330
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/operations.rb +12 -14
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest/client.rb +2877 -0
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest/operations.rb +795 -0
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest/service_stub.rb +1776 -0
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest.rb +58 -0
- data/lib/google/cloud/security/private_ca/v1/certificate_authority_service.rb +10 -3
- data/lib/google/cloud/security/private_ca/v1/rest.rb +40 -0
- data/lib/google/cloud/security/private_ca/v1/version.rb +1 -1
- data/lib/google/cloud/security/private_ca/v1.rb +7 -2
- data/lib/google/cloud/security/privateca/v1/resources_pb.rb +14 -0
- data/lib/google/cloud/security/privateca/v1/service_services_pb.rb +64 -32
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/security/privateca/v1/resources.rb +588 -302
- data/proto_docs/google/cloud/security/privateca/v1/service.rb +297 -223
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +22 -12
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 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
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/security/private_ca/v1/version"
|
24
|
+
require "google/cloud/security/private_ca/v1/bindings_override"
|
25
|
+
|
26
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/credentials"
|
27
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/paths"
|
28
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/rest/operations"
|
29
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/rest/client"
|
30
|
+
|
31
|
+
module Google
|
32
|
+
module Cloud
|
33
|
+
module Security
|
34
|
+
module PrivateCA
|
35
|
+
module V1
|
36
|
+
##
|
37
|
+
# [Certificate Authority
|
38
|
+
# Service][google.cloud.security.privateca.v1.CertificateAuthorityService]
|
39
|
+
# manages private certificate authorities and issued certificates.
|
40
|
+
#
|
41
|
+
# To load this service and instantiate a REST client:
|
42
|
+
#
|
43
|
+
# require "google/cloud/security/private_ca/v1/certificate_authority_service/rest"
|
44
|
+
# client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Rest::Client.new
|
45
|
+
#
|
46
|
+
module CertificateAuthorityService
|
47
|
+
# Client for the REST transport
|
48
|
+
module Rest
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
58
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/rest/helpers" if ::File.file? helper_path
|
@@ -26,6 +26,7 @@ require "google/cloud/security/private_ca/v1/certificate_authority_service/crede
|
|
26
26
|
require "google/cloud/security/private_ca/v1/certificate_authority_service/paths"
|
27
27
|
require "google/cloud/security/private_ca/v1/certificate_authority_service/operations"
|
28
28
|
require "google/cloud/security/private_ca/v1/certificate_authority_service/client"
|
29
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/rest"
|
29
30
|
|
30
31
|
module Google
|
31
32
|
module Cloud
|
@@ -33,14 +34,20 @@ module Google
|
|
33
34
|
module PrivateCA
|
34
35
|
module V1
|
35
36
|
##
|
36
|
-
#
|
37
|
-
#
|
37
|
+
# [Certificate Authority
|
38
|
+
# Service][google.cloud.security.privateca.v1.CertificateAuthorityService]
|
39
|
+
# manages private certificate authorities and issued certificates.
|
38
40
|
#
|
39
|
-
#
|
41
|
+
# @example Load this service and instantiate a gRPC client
|
40
42
|
#
|
41
43
|
# require "google/cloud/security/private_ca/v1/certificate_authority_service"
|
42
44
|
# client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Client.new
|
43
45
|
#
|
46
|
+
# @example Load this service and instantiate a REST client
|
47
|
+
#
|
48
|
+
# require "google/cloud/security/private_ca/v1/certificate_authority_service/rest"
|
49
|
+
# client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Rest::Client.new
|
50
|
+
#
|
44
51
|
module CertificateAuthorityService
|
45
52
|
end
|
46
53
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 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
|
+
require "google/cloud/security/private_ca/v1/certificate_authority_service/rest"
|
20
|
+
require "google/cloud/security/private_ca/v1/bindings_override"
|
21
|
+
require "google/cloud/security/private_ca/v1/version"
|
22
|
+
|
23
|
+
module Google
|
24
|
+
module Cloud
|
25
|
+
module Security
|
26
|
+
module PrivateCA
|
27
|
+
##
|
28
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
29
|
+
#
|
30
|
+
# @example
|
31
|
+
#
|
32
|
+
# require "google/cloud/security/private_ca/v1/rest"
|
33
|
+
# client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Rest::Client.new
|
34
|
+
#
|
35
|
+
module V1
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -24,13 +24,18 @@ module Google
|
|
24
24
|
module Security
|
25
25
|
module PrivateCA
|
26
26
|
##
|
27
|
-
#
|
27
|
+
# API client module.
|
28
28
|
#
|
29
|
-
# @example
|
29
|
+
# @example Load this package, including all its services, and instantiate a gRPC client
|
30
30
|
#
|
31
31
|
# require "google/cloud/security/private_ca/v1"
|
32
32
|
# client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Client.new
|
33
33
|
#
|
34
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
35
|
+
#
|
36
|
+
# require "google/cloud/security/private_ca/v1"
|
37
|
+
# client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Rest::Client.new
|
38
|
+
#
|
34
39
|
module V1
|
35
40
|
end
|
36
41
|
end
|
@@ -170,12 +170,24 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
170
170
|
optional :ca_options, :message, 2, "google.cloud.security.privateca.v1.X509Parameters.CaOptions"
|
171
171
|
repeated :policy_ids, :message, 3, "google.cloud.security.privateca.v1.ObjectId"
|
172
172
|
repeated :aia_ocsp_servers, :string, 4
|
173
|
+
optional :name_constraints, :message, 6, "google.cloud.security.privateca.v1.X509Parameters.NameConstraints"
|
173
174
|
repeated :additional_extensions, :message, 5, "google.cloud.security.privateca.v1.X509Extension"
|
174
175
|
end
|
175
176
|
add_message "google.cloud.security.privateca.v1.X509Parameters.CaOptions" do
|
176
177
|
proto3_optional :is_ca, :bool, 1
|
177
178
|
proto3_optional :max_issuer_path_length, :int32, 2
|
178
179
|
end
|
180
|
+
add_message "google.cloud.security.privateca.v1.X509Parameters.NameConstraints" do
|
181
|
+
optional :critical, :bool, 1
|
182
|
+
repeated :permitted_dns_names, :string, 2
|
183
|
+
repeated :excluded_dns_names, :string, 3
|
184
|
+
repeated :permitted_ip_ranges, :string, 4
|
185
|
+
repeated :excluded_ip_ranges, :string, 5
|
186
|
+
repeated :permitted_email_addresses, :string, 6
|
187
|
+
repeated :excluded_email_addresses, :string, 7
|
188
|
+
repeated :permitted_uris, :string, 8
|
189
|
+
repeated :excluded_uris, :string, 9
|
190
|
+
end
|
179
191
|
add_message "google.cloud.security.privateca.v1.SubordinateConfig" do
|
180
192
|
oneof :subordinate_config do
|
181
193
|
optional :certificate_authority, :string, 1
|
@@ -291,6 +303,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
291
303
|
value :CA_OPTIONS, 3
|
292
304
|
value :POLICY_IDS, 4
|
293
305
|
value :AIA_OCSP_SERVERS, 5
|
306
|
+
value :NAME_CONSTRAINTS, 6
|
294
307
|
end
|
295
308
|
add_enum "google.cloud.security.privateca.v1.RevocationReason" do
|
296
309
|
value :REVOCATION_REASON_UNSPECIFIED, 0
|
@@ -339,6 +352,7 @@ module Google
|
|
339
352
|
CertificateTemplate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.CertificateTemplate").msgclass
|
340
353
|
X509Parameters = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.X509Parameters").msgclass
|
341
354
|
X509Parameters::CaOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.X509Parameters.CaOptions").msgclass
|
355
|
+
X509Parameters::NameConstraints = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.X509Parameters.NameConstraints").msgclass
|
342
356
|
SubordinateConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.SubordinateConfig").msgclass
|
343
357
|
SubordinateConfig::SubordinateConfigChain = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.SubordinateConfig.SubordinateConfigChain").msgclass
|
344
358
|
PublicKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.security.privateca.v1.PublicKey").msgclass
|
@@ -25,8 +25,9 @@ module Google
|
|
25
25
|
module PrivateCA
|
26
26
|
module V1
|
27
27
|
module CertificateAuthorityService
|
28
|
-
# [Certificate Authority
|
29
|
-
#
|
28
|
+
# [Certificate Authority
|
29
|
+
# Service][google.cloud.security.privateca.v1.CertificateAuthorityService]
|
30
|
+
# manages private certificate authorities and issued certificates.
|
30
31
|
class Service
|
31
32
|
|
32
33
|
include ::GRPC::GenericService
|
@@ -35,7 +36,8 @@ module Google
|
|
35
36
|
self.unmarshal_class_method = :decode
|
36
37
|
self.service_name = 'google.cloud.security.privateca.v1.CertificateAuthorityService'
|
37
38
|
|
38
|
-
# Create a new [Certificate][google.cloud.security.privateca.v1.Certificate]
|
39
|
+
# Create a new [Certificate][google.cloud.security.privateca.v1.Certificate]
|
40
|
+
# in a given Project, Location from a particular
|
39
41
|
# [CaPool][google.cloud.security.privateca.v1.CaPool].
|
40
42
|
rpc :CreateCertificate, ::Google::Cloud::Security::PrivateCA::V1::CreateCertificateRequest, ::Google::Cloud::Security::PrivateCA::V1::Certificate
|
41
43
|
# Returns a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
@@ -44,39 +46,58 @@ module Google
|
|
44
46
|
rpc :ListCertificates, ::Google::Cloud::Security::PrivateCA::V1::ListCertificatesRequest, ::Google::Cloud::Security::PrivateCA::V1::ListCertificatesResponse
|
45
47
|
# Revoke a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
46
48
|
rpc :RevokeCertificate, ::Google::Cloud::Security::PrivateCA::V1::RevokeCertificateRequest, ::Google::Cloud::Security::PrivateCA::V1::Certificate
|
47
|
-
# Update a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
49
|
+
# Update a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
50
|
+
# Currently, the only field you can update is the
|
48
51
|
# [labels][google.cloud.security.privateca.v1.Certificate.labels] field.
|
49
52
|
rpc :UpdateCertificate, ::Google::Cloud::Security::PrivateCA::V1::UpdateCertificateRequest, ::Google::Cloud::Security::PrivateCA::V1::Certificate
|
50
|
-
# Activate a
|
53
|
+
# Activate a
|
54
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
|
55
|
+
# that is in state
|
51
56
|
# [AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
|
52
|
-
# and is of type
|
53
|
-
#
|
54
|
-
#
|
55
|
-
#
|
57
|
+
# and is of type
|
58
|
+
# [SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
59
|
+
# After the parent Certificate Authority signs a certificate signing request
|
60
|
+
# from
|
61
|
+
# [FetchCertificateAuthorityCsr][google.cloud.security.privateca.v1.CertificateAuthorityService.FetchCertificateAuthorityCsr],
|
62
|
+
# this method can complete the activation process.
|
56
63
|
rpc :ActivateCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::ActivateCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
57
|
-
# Create a new
|
64
|
+
# Create a new
|
65
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
|
66
|
+
# in a given Project and Location.
|
58
67
|
rpc :CreateCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::CreateCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
59
|
-
# Disable a
|
68
|
+
# Disable a
|
69
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
60
70
|
rpc :DisableCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::DisableCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
61
|
-
# Enable a
|
71
|
+
# Enable a
|
72
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
62
73
|
rpc :EnableCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::EnableCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
63
|
-
# Fetch a certificate signing request (CSR) from a
|
74
|
+
# Fetch a certificate signing request (CSR) from a
|
75
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
|
64
76
|
# that is in state
|
65
77
|
# [AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
|
66
|
-
# and is of type
|
67
|
-
#
|
68
|
-
#
|
69
|
-
#
|
78
|
+
# and is of type
|
79
|
+
# [SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
80
|
+
# The CSR must then be signed by the desired parent Certificate Authority,
|
81
|
+
# which could be another
|
82
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
|
83
|
+
# resource, or could be an on-prem certificate authority. See also
|
84
|
+
# [ActivateCertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthorityService.ActivateCertificateAuthority].
|
70
85
|
rpc :FetchCertificateAuthorityCsr, ::Google::Cloud::Security::PrivateCA::V1::FetchCertificateAuthorityCsrRequest, ::Google::Cloud::Security::PrivateCA::V1::FetchCertificateAuthorityCsrResponse
|
71
|
-
# Returns a
|
86
|
+
# Returns a
|
87
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
72
88
|
rpc :GetCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::GetCertificateAuthorityRequest, ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority
|
73
|
-
# Lists
|
89
|
+
# Lists
|
90
|
+
# [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
|
74
91
|
rpc :ListCertificateAuthorities, ::Google::Cloud::Security::PrivateCA::V1::ListCertificateAuthoritiesRequest, ::Google::Cloud::Security::PrivateCA::V1::ListCertificateAuthoritiesResponse
|
75
|
-
# Undelete a
|
92
|
+
# Undelete a
|
93
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
|
94
|
+
# that has been deleted.
|
76
95
|
rpc :UndeleteCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::UndeleteCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
77
|
-
# Delete a
|
96
|
+
# Delete a
|
97
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
78
98
|
rpc :DeleteCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::DeleteCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
79
|
-
# Update a
|
99
|
+
# Update a
|
100
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
80
101
|
rpc :UpdateCertificateAuthority, ::Google::Cloud::Security::PrivateCA::V1::UpdateCertificateAuthorityRequest, ::Google::Longrunning::Operation
|
81
102
|
# Create a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
82
103
|
rpc :CreateCaPool, ::Google::Cloud::Security::PrivateCA::V1::CreateCaPoolRequest, ::Google::Longrunning::Operation
|
@@ -88,25 +109,36 @@ module Google
|
|
88
109
|
rpc :ListCaPools, ::Google::Cloud::Security::PrivateCA::V1::ListCaPoolsRequest, ::Google::Cloud::Security::PrivateCA::V1::ListCaPoolsResponse
|
89
110
|
# Delete a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
90
111
|
rpc :DeleteCaPool, ::Google::Cloud::Security::PrivateCA::V1::DeleteCaPoolRequest, ::Google::Longrunning::Operation
|
91
|
-
# FetchCaCerts returns the current trust anchor for the
|
92
|
-
#
|
112
|
+
# FetchCaCerts returns the current trust anchor for the
|
113
|
+
# [CaPool][google.cloud.security.privateca.v1.CaPool]. This will include CA
|
114
|
+
# certificate chains for all ACTIVE
|
115
|
+
# [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
|
93
116
|
# resources in the [CaPool][google.cloud.security.privateca.v1.CaPool].
|
94
117
|
rpc :FetchCaCerts, ::Google::Cloud::Security::PrivateCA::V1::FetchCaCertsRequest, ::Google::Cloud::Security::PrivateCA::V1::FetchCaCertsResponse
|
95
|
-
# Returns a
|
118
|
+
# Returns a
|
119
|
+
# [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
96
120
|
rpc :GetCertificateRevocationList, ::Google::Cloud::Security::PrivateCA::V1::GetCertificateRevocationListRequest, ::Google::Cloud::Security::PrivateCA::V1::CertificateRevocationList
|
97
|
-
# Lists
|
121
|
+
# Lists
|
122
|
+
# [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
|
98
123
|
rpc :ListCertificateRevocationLists, ::Google::Cloud::Security::PrivateCA::V1::ListCertificateRevocationListsRequest, ::Google::Cloud::Security::PrivateCA::V1::ListCertificateRevocationListsResponse
|
99
|
-
# Update a
|
124
|
+
# Update a
|
125
|
+
# [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
100
126
|
rpc :UpdateCertificateRevocationList, ::Google::Cloud::Security::PrivateCA::V1::UpdateCertificateRevocationListRequest, ::Google::Longrunning::Operation
|
101
|
-
# Create a new
|
127
|
+
# Create a new
|
128
|
+
# [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate]
|
129
|
+
# in a given Project and Location.
|
102
130
|
rpc :CreateCertificateTemplate, ::Google::Cloud::Security::PrivateCA::V1::CreateCertificateTemplateRequest, ::Google::Longrunning::Operation
|
103
|
-
# DeleteCertificateTemplate deletes a
|
131
|
+
# DeleteCertificateTemplate deletes a
|
132
|
+
# [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
104
133
|
rpc :DeleteCertificateTemplate, ::Google::Cloud::Security::PrivateCA::V1::DeleteCertificateTemplateRequest, ::Google::Longrunning::Operation
|
105
|
-
# Returns a
|
134
|
+
# Returns a
|
135
|
+
# [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
106
136
|
rpc :GetCertificateTemplate, ::Google::Cloud::Security::PrivateCA::V1::GetCertificateTemplateRequest, ::Google::Cloud::Security::PrivateCA::V1::CertificateTemplate
|
107
|
-
# Lists
|
137
|
+
# Lists
|
138
|
+
# [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
|
108
139
|
rpc :ListCertificateTemplates, ::Google::Cloud::Security::PrivateCA::V1::ListCertificateTemplatesRequest, ::Google::Cloud::Security::PrivateCA::V1::ListCertificateTemplatesResponse
|
109
|
-
# Update a
|
140
|
+
# Update a
|
141
|
+
# [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
110
142
|
rpc :UpdateCertificateTemplate, ::Google::Cloud::Security::PrivateCA::V1::UpdateCertificateTemplateRequest, ::Google::Longrunning::Operation
|
111
143
|
end
|
112
144
|
|