You've already forked npm-core-sdk
99 lines
3.0 KiB
TypeScript
99 lines
3.0 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file connection.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { CreateConnectionRequest, CreateConnectionResult, DeleteConnectionInDBRequest, DeleteConnectionInDBResult, DeleteConnectionRequest, DeleteConnectionResult, GetDetailsConnectionsRequest, GetDetailsConnectionsResult, GetStartDetailsConnectionsRequest, GetStartDetailsConnectionsResult, IsConnectionExistRequest, IsConnectionExistResult, ListConnectionsRequest, ListConnectionsResult, RenewConnectionSARequest, RenewConnectionSAResult, SetRunDetailsConnectionsRequest, SetRunDetailsConnectionsResult } from "./connection_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.ConnectionService
|
|
*/
|
|
export const ConnectionService = {
|
|
typeName: "api.ConnectionService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.ConnectionService.Create
|
|
*/
|
|
create: {
|
|
name: "Create",
|
|
I: CreateConnectionRequest,
|
|
O: CreateConnectionResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.Delete
|
|
*/
|
|
delete: {
|
|
name: "Delete",
|
|
I: DeleteConnectionRequest,
|
|
O: DeleteConnectionResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.List
|
|
*/
|
|
list: {
|
|
name: "List",
|
|
I: ListConnectionsRequest,
|
|
O: ListConnectionsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.GetDetails
|
|
*/
|
|
getDetails: {
|
|
name: "GetDetails",
|
|
I: GetDetailsConnectionsRequest,
|
|
O: GetDetailsConnectionsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.GetStartDetails
|
|
*/
|
|
getStartDetails: {
|
|
name: "GetStartDetails",
|
|
I: GetStartDetailsConnectionsRequest,
|
|
O: GetStartDetailsConnectionsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.SetRunDetails
|
|
*/
|
|
setRunDetails: {
|
|
name: "SetRunDetails",
|
|
I: SetRunDetailsConnectionsRequest,
|
|
O: SetRunDetailsConnectionsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.RenewConnectionSA
|
|
*/
|
|
renewConnectionSA: {
|
|
name: "RenewConnectionSA",
|
|
I: RenewConnectionSARequest,
|
|
O: RenewConnectionSAResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.DeleteConnectionInDB
|
|
*/
|
|
deleteConnectionInDB: {
|
|
name: "DeleteConnectionInDB",
|
|
I: DeleteConnectionInDBRequest,
|
|
O: DeleteConnectionInDBResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionService.IsConnectionExist
|
|
*/
|
|
isConnectionExist: {
|
|
name: "IsConnectionExist",
|
|
I: IsConnectionExistRequest,
|
|
O: IsConnectionExistResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|