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.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +1 -1
  3. data/README.md +2 -2
  4. data/lib/google/cloud/security/private_ca/v1/bindings_override.rb +185 -0
  5. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/client.rb +415 -330
  6. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/operations.rb +12 -14
  7. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest/client.rb +2877 -0
  8. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest/operations.rb +795 -0
  9. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest/service_stub.rb +1776 -0
  10. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service/rest.rb +58 -0
  11. data/lib/google/cloud/security/private_ca/v1/certificate_authority_service.rb +10 -3
  12. data/lib/google/cloud/security/private_ca/v1/rest.rb +40 -0
  13. data/lib/google/cloud/security/private_ca/v1/version.rb +1 -1
  14. data/lib/google/cloud/security/private_ca/v1.rb +7 -2
  15. data/lib/google/cloud/security/privateca/v1/resources_pb.rb +14 -0
  16. data/lib/google/cloud/security/privateca/v1/service_services_pb.rb +64 -32
  17. data/proto_docs/google/api/client.rb +318 -0
  18. data/proto_docs/google/api/launch_stage.rb +71 -0
  19. data/proto_docs/google/cloud/security/privateca/v1/resources.rb +588 -302
  20. data/proto_docs/google/cloud/security/privateca/v1/service.rb +297 -223
  21. data/proto_docs/google/protobuf/empty.rb +0 -2
  22. data/proto_docs/google/rpc/status.rb +4 -2
  23. 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
- # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Client Certificate Authority Service} manages private
37
- # certificate authorities and issued certificates.
37
+ # [Certificate Authority
38
+ # Service][google.cloud.security.privateca.v1.CertificateAuthorityService]
39
+ # manages private certificate authorities and issued certificates.
38
40
  #
39
- # To load this service and instantiate a client:
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
@@ -22,7 +22,7 @@ module Google
22
22
  module Security
23
23
  module PrivateCA
24
24
  module V1
25
- VERSION = "0.4.0"
25
+ VERSION = "0.6.0"
26
26
  end
27
27
  end
28
28
  end
@@ -24,13 +24,18 @@ module Google
24
24
  module Security
25
25
  module PrivateCA
26
26
  ##
27
- # To load this package, including all its services, and instantiate a client:
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 Service][google.cloud.security.privateca.v1.CertificateAuthorityService] manages private
29
- # certificate authorities and issued certificates.
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] in a given Project, Location from a particular
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]. Currently, the only field you can update is the
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that is in state
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 [SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE]. After
53
- # the parent Certificate Authority signs a certificate signing request from
54
- # [FetchCertificateAuthorityCsr][google.cloud.security.privateca.v1.CertificateAuthorityService.FetchCertificateAuthorityCsr], this method can complete the activation
55
- # process.
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in a given Project and Location.
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
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 [SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE]. The
67
- # CSR must then be signed by the desired parent Certificate Authority, which
68
- # could be another [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] resource, or could be an on-prem
69
- # certificate authority. See also [ActivateCertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthorityService.ActivateCertificateAuthority].
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
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 [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that has been deleted.
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
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 [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
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 [CaPool][google.cloud.security.privateca.v1.CaPool]. This will
92
- # include CA certificate chains for all ACTIVE [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
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 [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
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 [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
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 [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
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 [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in a given Project and Location.
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 [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
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 [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
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 [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
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 [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
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