mirror of https://github.com/grpc/grpc-node.git
23 lines
566 B
TypeScript
23 lines
566 B
TypeScript
// Original file: deps/googleapis/google/longrunning/operations.proto
|
|
|
|
|
|
/**
|
|
* The request message for [Operations.CancelOperation][google.longrunning.Operations.CancelOperation].
|
|
*/
|
|
export interface ICancelOperationRequest {
|
|
/**
|
|
* The name of the operation resource to be cancelled.
|
|
*/
|
|
'name'?: (string);
|
|
}
|
|
|
|
/**
|
|
* The request message for [Operations.CancelOperation][google.longrunning.Operations.CancelOperation].
|
|
*/
|
|
export interface OCancelOperationRequest {
|
|
/**
|
|
* The name of the operation resource to be cancelled.
|
|
*/
|
|
'name': (string);
|
|
}
|