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