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