This repository was archived by the owner on Jul 6, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
google/cloud/data_fusion_v1/services/data_fusion/transports Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -401,7 +401,33 @@ def operations_client(self) -> operations_v1.AbstractOperationsClient:
401
401
"""
402
402
# Only create a new client if we do not already have one.
403
403
if self ._operations_client is None :
404
- http_options : Dict [str , List [Dict [str , str ]]] = {}
404
+ http_options : Dict [str , List [Dict [str , str ]]] = {
405
+ "google.longrunning.Operations.CancelOperation" : [
406
+ {
407
+ "method" : "post" ,
408
+ "uri" : "/v1/{name=projects/*/locations/*/operations/*}:cancel" ,
409
+ "body" : "*" ,
410
+ },
411
+ ],
412
+ "google.longrunning.Operations.DeleteOperation" : [
413
+ {
414
+ "method" : "delete" ,
415
+ "uri" : "/v1/{name=projects/*/locations/*/operations/*}" ,
416
+ },
417
+ ],
418
+ "google.longrunning.Operations.GetOperation" : [
419
+ {
420
+ "method" : "get" ,
421
+ "uri" : "/v1/{name=projects/*/locations/*/operations/*}" ,
422
+ },
423
+ ],
424
+ "google.longrunning.Operations.ListOperations" : [
425
+ {
426
+ "method" : "get" ,
427
+ "uri" : "/v1/{name=projects/*/locations/*}/operations" ,
428
+ },
429
+ ],
430
+ }
405
431
406
432
rest_transport = operations_v1 .OperationsRestTransport (
407
433
host = self ._host ,
You can’t perform that action at this time.
0 commit comments