google-cloud-security-private_ca-v1beta1 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -20
- data/lib/google/cloud/security/private_ca/v1beta1/certificate_authority_service/client.rb +82 -41
- data/lib/google/cloud/security/private_ca/v1beta1/certificate_authority_service/operations.rb +25 -20
- data/lib/google/cloud/security/private_ca/v1beta1/certificate_authority_service/rest/client.rb +78 -41
- data/lib/google/cloud/security/private_ca/v1beta1/certificate_authority_service/rest/operations.rb +54 -42
- data/lib/google/cloud/security/private_ca/v1beta1/certificate_authority_service/rest/service_stub.rb +174 -122
- data/lib/google/cloud/security/private_ca/v1beta1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +74 -10
- data/proto_docs/google/api/resource.rb +7 -2
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +5 -5
data/lib/google/cloud/security/private_ca/v1beta1/certificate_authority_service/rest/service_stub.rb
CHANGED
@@ -31,7 +31,8 @@ module Google
|
|
31
31
|
# including transcoding, making the REST call, and deserialing the response.
|
32
32
|
#
|
33
33
|
class ServiceStub
|
34
|
-
|
34
|
+
# @private
|
35
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
35
36
|
# These require statements are intentionally placed here to initialize
|
36
37
|
# the REST modules only when it's required.
|
37
38
|
require "gapic/rest"
|
@@ -41,7 +42,9 @@ module Google
|
|
41
42
|
universe_domain: universe_domain,
|
42
43
|
credentials: credentials,
|
43
44
|
numeric_enums: true,
|
44
|
-
|
45
|
+
service_name: self.class,
|
46
|
+
raise_faraday_errors: false,
|
47
|
+
logger: logger
|
45
48
|
end
|
46
49
|
|
47
50
|
##
|
@@ -62,6 +65,15 @@ module Google
|
|
62
65
|
@client_stub.endpoint
|
63
66
|
end
|
64
67
|
|
68
|
+
##
|
69
|
+
# The logger used for request/response debug logging.
|
70
|
+
#
|
71
|
+
# @return [Logger]
|
72
|
+
#
|
73
|
+
def logger stub: false
|
74
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
75
|
+
end
|
76
|
+
|
65
77
|
##
|
66
78
|
# Baseline implementation for the create_certificate REST call
|
67
79
|
#
|
@@ -88,16 +100,18 @@ module Google
|
|
88
100
|
|
89
101
|
response = @client_stub.make_http_request(
|
90
102
|
verb,
|
91
|
-
uri:
|
92
|
-
body:
|
93
|
-
params:
|
103
|
+
uri: uri,
|
104
|
+
body: body || "",
|
105
|
+
params: query_string_params,
|
106
|
+
method_name: "create_certificate",
|
94
107
|
options: options
|
95
108
|
)
|
96
109
|
operation = ::Gapic::Rest::TransportOperation.new response
|
97
110
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::Certificate.decode_json response.body, ignore_unknown_fields: true
|
98
|
-
|
99
|
-
|
100
|
-
|
111
|
+
catch :response do
|
112
|
+
yield result, operation if block_given?
|
113
|
+
result
|
114
|
+
end
|
101
115
|
end
|
102
116
|
|
103
117
|
##
|
@@ -126,16 +140,18 @@ module Google
|
|
126
140
|
|
127
141
|
response = @client_stub.make_http_request(
|
128
142
|
verb,
|
129
|
-
uri:
|
130
|
-
body:
|
131
|
-
params:
|
143
|
+
uri: uri,
|
144
|
+
body: body || "",
|
145
|
+
params: query_string_params,
|
146
|
+
method_name: "get_certificate",
|
132
147
|
options: options
|
133
148
|
)
|
134
149
|
operation = ::Gapic::Rest::TransportOperation.new response
|
135
150
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::Certificate.decode_json response.body, ignore_unknown_fields: true
|
136
|
-
|
137
|
-
|
138
|
-
|
151
|
+
catch :response do
|
152
|
+
yield result, operation if block_given?
|
153
|
+
result
|
154
|
+
end
|
139
155
|
end
|
140
156
|
|
141
157
|
##
|
@@ -164,16 +180,18 @@ module Google
|
|
164
180
|
|
165
181
|
response = @client_stub.make_http_request(
|
166
182
|
verb,
|
167
|
-
uri:
|
168
|
-
body:
|
169
|
-
params:
|
183
|
+
uri: uri,
|
184
|
+
body: body || "",
|
185
|
+
params: query_string_params,
|
186
|
+
method_name: "list_certificates",
|
170
187
|
options: options
|
171
188
|
)
|
172
189
|
operation = ::Gapic::Rest::TransportOperation.new response
|
173
190
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::ListCertificatesResponse.decode_json response.body, ignore_unknown_fields: true
|
174
|
-
|
175
|
-
|
176
|
-
|
191
|
+
catch :response do
|
192
|
+
yield result, operation if block_given?
|
193
|
+
result
|
194
|
+
end
|
177
195
|
end
|
178
196
|
|
179
197
|
##
|
@@ -202,16 +220,18 @@ module Google
|
|
202
220
|
|
203
221
|
response = @client_stub.make_http_request(
|
204
222
|
verb,
|
205
|
-
uri:
|
206
|
-
body:
|
207
|
-
params:
|
223
|
+
uri: uri,
|
224
|
+
body: body || "",
|
225
|
+
params: query_string_params,
|
226
|
+
method_name: "revoke_certificate",
|
208
227
|
options: options
|
209
228
|
)
|
210
229
|
operation = ::Gapic::Rest::TransportOperation.new response
|
211
230
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::Certificate.decode_json response.body, ignore_unknown_fields: true
|
212
|
-
|
213
|
-
|
214
|
-
|
231
|
+
catch :response do
|
232
|
+
yield result, operation if block_given?
|
233
|
+
result
|
234
|
+
end
|
215
235
|
end
|
216
236
|
|
217
237
|
##
|
@@ -240,16 +260,18 @@ module Google
|
|
240
260
|
|
241
261
|
response = @client_stub.make_http_request(
|
242
262
|
verb,
|
243
|
-
uri:
|
244
|
-
body:
|
245
|
-
params:
|
263
|
+
uri: uri,
|
264
|
+
body: body || "",
|
265
|
+
params: query_string_params,
|
266
|
+
method_name: "update_certificate",
|
246
267
|
options: options
|
247
268
|
)
|
248
269
|
operation = ::Gapic::Rest::TransportOperation.new response
|
249
270
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::Certificate.decode_json response.body, ignore_unknown_fields: true
|
250
|
-
|
251
|
-
|
252
|
-
|
271
|
+
catch :response do
|
272
|
+
yield result, operation if block_given?
|
273
|
+
result
|
274
|
+
end
|
253
275
|
end
|
254
276
|
|
255
277
|
##
|
@@ -278,16 +300,18 @@ module Google
|
|
278
300
|
|
279
301
|
response = @client_stub.make_http_request(
|
280
302
|
verb,
|
281
|
-
uri:
|
282
|
-
body:
|
283
|
-
params:
|
303
|
+
uri: uri,
|
304
|
+
body: body || "",
|
305
|
+
params: query_string_params,
|
306
|
+
method_name: "activate_certificate_authority",
|
284
307
|
options: options
|
285
308
|
)
|
286
309
|
operation = ::Gapic::Rest::TransportOperation.new response
|
287
310
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
288
|
-
|
289
|
-
|
290
|
-
|
311
|
+
catch :response do
|
312
|
+
yield result, operation if block_given?
|
313
|
+
result
|
314
|
+
end
|
291
315
|
end
|
292
316
|
|
293
317
|
##
|
@@ -316,16 +340,18 @@ module Google
|
|
316
340
|
|
317
341
|
response = @client_stub.make_http_request(
|
318
342
|
verb,
|
319
|
-
uri:
|
320
|
-
body:
|
321
|
-
params:
|
343
|
+
uri: uri,
|
344
|
+
body: body || "",
|
345
|
+
params: query_string_params,
|
346
|
+
method_name: "create_certificate_authority",
|
322
347
|
options: options
|
323
348
|
)
|
324
349
|
operation = ::Gapic::Rest::TransportOperation.new response
|
325
350
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
326
|
-
|
327
|
-
|
328
|
-
|
351
|
+
catch :response do
|
352
|
+
yield result, operation if block_given?
|
353
|
+
result
|
354
|
+
end
|
329
355
|
end
|
330
356
|
|
331
357
|
##
|
@@ -354,16 +380,18 @@ module Google
|
|
354
380
|
|
355
381
|
response = @client_stub.make_http_request(
|
356
382
|
verb,
|
357
|
-
uri:
|
358
|
-
body:
|
359
|
-
params:
|
383
|
+
uri: uri,
|
384
|
+
body: body || "",
|
385
|
+
params: query_string_params,
|
386
|
+
method_name: "disable_certificate_authority",
|
360
387
|
options: options
|
361
388
|
)
|
362
389
|
operation = ::Gapic::Rest::TransportOperation.new response
|
363
390
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
364
|
-
|
365
|
-
|
366
|
-
|
391
|
+
catch :response do
|
392
|
+
yield result, operation if block_given?
|
393
|
+
result
|
394
|
+
end
|
367
395
|
end
|
368
396
|
|
369
397
|
##
|
@@ -392,16 +420,18 @@ module Google
|
|
392
420
|
|
393
421
|
response = @client_stub.make_http_request(
|
394
422
|
verb,
|
395
|
-
uri:
|
396
|
-
body:
|
397
|
-
params:
|
423
|
+
uri: uri,
|
424
|
+
body: body || "",
|
425
|
+
params: query_string_params,
|
426
|
+
method_name: "enable_certificate_authority",
|
398
427
|
options: options
|
399
428
|
)
|
400
429
|
operation = ::Gapic::Rest::TransportOperation.new response
|
401
430
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
402
|
-
|
403
|
-
|
404
|
-
|
431
|
+
catch :response do
|
432
|
+
yield result, operation if block_given?
|
433
|
+
result
|
434
|
+
end
|
405
435
|
end
|
406
436
|
|
407
437
|
##
|
@@ -430,16 +460,18 @@ module Google
|
|
430
460
|
|
431
461
|
response = @client_stub.make_http_request(
|
432
462
|
verb,
|
433
|
-
uri:
|
434
|
-
body:
|
435
|
-
params:
|
463
|
+
uri: uri,
|
464
|
+
body: body || "",
|
465
|
+
params: query_string_params,
|
466
|
+
method_name: "fetch_certificate_authority_csr",
|
436
467
|
options: options
|
437
468
|
)
|
438
469
|
operation = ::Gapic::Rest::TransportOperation.new response
|
439
470
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::FetchCertificateAuthorityCsrResponse.decode_json response.body, ignore_unknown_fields: true
|
440
|
-
|
441
|
-
|
442
|
-
|
471
|
+
catch :response do
|
472
|
+
yield result, operation if block_given?
|
473
|
+
result
|
474
|
+
end
|
443
475
|
end
|
444
476
|
|
445
477
|
##
|
@@ -468,16 +500,18 @@ module Google
|
|
468
500
|
|
469
501
|
response = @client_stub.make_http_request(
|
470
502
|
verb,
|
471
|
-
uri:
|
472
|
-
body:
|
473
|
-
params:
|
503
|
+
uri: uri,
|
504
|
+
body: body || "",
|
505
|
+
params: query_string_params,
|
506
|
+
method_name: "get_certificate_authority",
|
474
507
|
options: options
|
475
508
|
)
|
476
509
|
operation = ::Gapic::Rest::TransportOperation.new response
|
477
510
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::CertificateAuthority.decode_json response.body, ignore_unknown_fields: true
|
478
|
-
|
479
|
-
|
480
|
-
|
511
|
+
catch :response do
|
512
|
+
yield result, operation if block_given?
|
513
|
+
result
|
514
|
+
end
|
481
515
|
end
|
482
516
|
|
483
517
|
##
|
@@ -506,16 +540,18 @@ module Google
|
|
506
540
|
|
507
541
|
response = @client_stub.make_http_request(
|
508
542
|
verb,
|
509
|
-
uri:
|
510
|
-
body:
|
511
|
-
params:
|
543
|
+
uri: uri,
|
544
|
+
body: body || "",
|
545
|
+
params: query_string_params,
|
546
|
+
method_name: "list_certificate_authorities",
|
512
547
|
options: options
|
513
548
|
)
|
514
549
|
operation = ::Gapic::Rest::TransportOperation.new response
|
515
550
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::ListCertificateAuthoritiesResponse.decode_json response.body, ignore_unknown_fields: true
|
516
|
-
|
517
|
-
|
518
|
-
|
551
|
+
catch :response do
|
552
|
+
yield result, operation if block_given?
|
553
|
+
result
|
554
|
+
end
|
519
555
|
end
|
520
556
|
|
521
557
|
##
|
@@ -544,16 +580,18 @@ module Google
|
|
544
580
|
|
545
581
|
response = @client_stub.make_http_request(
|
546
582
|
verb,
|
547
|
-
uri:
|
548
|
-
body:
|
549
|
-
params:
|
583
|
+
uri: uri,
|
584
|
+
body: body || "",
|
585
|
+
params: query_string_params,
|
586
|
+
method_name: "restore_certificate_authority",
|
550
587
|
options: options
|
551
588
|
)
|
552
589
|
operation = ::Gapic::Rest::TransportOperation.new response
|
553
590
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
554
|
-
|
555
|
-
|
556
|
-
|
591
|
+
catch :response do
|
592
|
+
yield result, operation if block_given?
|
593
|
+
result
|
594
|
+
end
|
557
595
|
end
|
558
596
|
|
559
597
|
##
|
@@ -582,16 +620,18 @@ module Google
|
|
582
620
|
|
583
621
|
response = @client_stub.make_http_request(
|
584
622
|
verb,
|
585
|
-
uri:
|
586
|
-
body:
|
587
|
-
params:
|
623
|
+
uri: uri,
|
624
|
+
body: body || "",
|
625
|
+
params: query_string_params,
|
626
|
+
method_name: "schedule_delete_certificate_authority",
|
588
627
|
options: options
|
589
628
|
)
|
590
629
|
operation = ::Gapic::Rest::TransportOperation.new response
|
591
630
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
592
|
-
|
593
|
-
|
594
|
-
|
631
|
+
catch :response do
|
632
|
+
yield result, operation if block_given?
|
633
|
+
result
|
634
|
+
end
|
595
635
|
end
|
596
636
|
|
597
637
|
##
|
@@ -620,16 +660,18 @@ module Google
|
|
620
660
|
|
621
661
|
response = @client_stub.make_http_request(
|
622
662
|
verb,
|
623
|
-
uri:
|
624
|
-
body:
|
625
|
-
params:
|
663
|
+
uri: uri,
|
664
|
+
body: body || "",
|
665
|
+
params: query_string_params,
|
666
|
+
method_name: "update_certificate_authority",
|
626
667
|
options: options
|
627
668
|
)
|
628
669
|
operation = ::Gapic::Rest::TransportOperation.new response
|
629
670
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
630
|
-
|
631
|
-
|
632
|
-
|
671
|
+
catch :response do
|
672
|
+
yield result, operation if block_given?
|
673
|
+
result
|
674
|
+
end
|
633
675
|
end
|
634
676
|
|
635
677
|
##
|
@@ -658,16 +700,18 @@ module Google
|
|
658
700
|
|
659
701
|
response = @client_stub.make_http_request(
|
660
702
|
verb,
|
661
|
-
uri:
|
662
|
-
body:
|
663
|
-
params:
|
703
|
+
uri: uri,
|
704
|
+
body: body || "",
|
705
|
+
params: query_string_params,
|
706
|
+
method_name: "get_certificate_revocation_list",
|
664
707
|
options: options
|
665
708
|
)
|
666
709
|
operation = ::Gapic::Rest::TransportOperation.new response
|
667
710
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::CertificateRevocationList.decode_json response.body, ignore_unknown_fields: true
|
668
|
-
|
669
|
-
|
670
|
-
|
711
|
+
catch :response do
|
712
|
+
yield result, operation if block_given?
|
713
|
+
result
|
714
|
+
end
|
671
715
|
end
|
672
716
|
|
673
717
|
##
|
@@ -696,16 +740,18 @@ module Google
|
|
696
740
|
|
697
741
|
response = @client_stub.make_http_request(
|
698
742
|
verb,
|
699
|
-
uri:
|
700
|
-
body:
|
701
|
-
params:
|
743
|
+
uri: uri,
|
744
|
+
body: body || "",
|
745
|
+
params: query_string_params,
|
746
|
+
method_name: "list_certificate_revocation_lists",
|
702
747
|
options: options
|
703
748
|
)
|
704
749
|
operation = ::Gapic::Rest::TransportOperation.new response
|
705
750
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::ListCertificateRevocationListsResponse.decode_json response.body, ignore_unknown_fields: true
|
706
|
-
|
707
|
-
|
708
|
-
|
751
|
+
catch :response do
|
752
|
+
yield result, operation if block_given?
|
753
|
+
result
|
754
|
+
end
|
709
755
|
end
|
710
756
|
|
711
757
|
##
|
@@ -734,16 +780,18 @@ module Google
|
|
734
780
|
|
735
781
|
response = @client_stub.make_http_request(
|
736
782
|
verb,
|
737
|
-
uri:
|
738
|
-
body:
|
739
|
-
params:
|
783
|
+
uri: uri,
|
784
|
+
body: body || "",
|
785
|
+
params: query_string_params,
|
786
|
+
method_name: "update_certificate_revocation_list",
|
740
787
|
options: options
|
741
788
|
)
|
742
789
|
operation = ::Gapic::Rest::TransportOperation.new response
|
743
790
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
744
|
-
|
745
|
-
|
746
|
-
|
791
|
+
catch :response do
|
792
|
+
yield result, operation if block_given?
|
793
|
+
result
|
794
|
+
end
|
747
795
|
end
|
748
796
|
|
749
797
|
##
|
@@ -772,16 +820,18 @@ module Google
|
|
772
820
|
|
773
821
|
response = @client_stub.make_http_request(
|
774
822
|
verb,
|
775
|
-
uri:
|
776
|
-
body:
|
777
|
-
params:
|
823
|
+
uri: uri,
|
824
|
+
body: body || "",
|
825
|
+
params: query_string_params,
|
826
|
+
method_name: "get_reusable_config",
|
778
827
|
options: options
|
779
828
|
)
|
780
829
|
operation = ::Gapic::Rest::TransportOperation.new response
|
781
830
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::ReusableConfig.decode_json response.body, ignore_unknown_fields: true
|
782
|
-
|
783
|
-
|
784
|
-
|
831
|
+
catch :response do
|
832
|
+
yield result, operation if block_given?
|
833
|
+
result
|
834
|
+
end
|
785
835
|
end
|
786
836
|
|
787
837
|
##
|
@@ -810,16 +860,18 @@ module Google
|
|
810
860
|
|
811
861
|
response = @client_stub.make_http_request(
|
812
862
|
verb,
|
813
|
-
uri:
|
814
|
-
body:
|
815
|
-
params:
|
863
|
+
uri: uri,
|
864
|
+
body: body || "",
|
865
|
+
params: query_string_params,
|
866
|
+
method_name: "list_reusable_configs",
|
816
867
|
options: options
|
817
868
|
)
|
818
869
|
operation = ::Gapic::Rest::TransportOperation.new response
|
819
870
|
result = ::Google::Cloud::Security::PrivateCA::V1beta1::ListReusableConfigsResponse.decode_json response.body, ignore_unknown_fields: true
|
820
|
-
|
821
|
-
|
822
|
-
|
871
|
+
catch :response do
|
872
|
+
yield result, operation if block_given?
|
873
|
+
result
|
874
|
+
end
|
823
875
|
end
|
824
876
|
|
825
877
|
##
|