@milaboratories/pl-drivers 1.6.3 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2026 -2480
- package/dist/index.mjs.map +1 -1
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +48 -0
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +2 -2
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts +13 -5
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +2 -2
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +11 -11
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +4 -4
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts +10 -10
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +10 -10
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts +8 -8
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts +24 -16
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +277 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +5344 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +530 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +82 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +91 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +251 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts.map +1 -0
- package/dist/proto/google/api/http.d.ts +46 -42
- package/dist/proto/google/api/http.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +172 -0
- package/dist/proto/google/protobuf/any.d.ts.map +1 -0
- package/dist/proto/google/protobuf/descriptor.d.ts +1003 -170
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +2 -3
- package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
- package/dist/proto/google/protobuf/empty.d.ts +27 -0
- package/dist/proto/google/protobuf/empty.d.ts.map +1 -0
- package/dist/proto/google/protobuf/struct.d.ts +179 -0
- package/dist/proto/google/protobuf/struct.d.ts.map +1 -0
- package/dist/proto/google/protobuf/timestamp.d.ts +3 -6
- package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/proto/google/protobuf/wrappers.d.ts +327 -0
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -0
- package/package.json +5 -5
- package/src/clients/download.ts +1 -1
- package/src/clients/upload.ts +1 -1
- package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +125 -0
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +25 -40
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +252 -396
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +25 -37
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +341 -453
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +39 -65
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +398 -630
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +126 -194
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +626 -964
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.ts +102 -153
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.ts +741 -1082
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +406 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +14986 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +1474 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +181 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +251 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +693 -0
- package/src/proto/google/api/http.ts +336 -492
- package/src/proto/google/protobuf/any.ts +326 -0
- package/src/proto/google/protobuf/descriptor.ts +4383 -4772
- package/src/proto/google/protobuf/duration.ts +122 -169
- package/src/proto/google/protobuf/empty.ts +94 -0
- package/src/proto/google/protobuf/struct.ts +484 -0
- package/src/proto/google/protobuf/timestamp.ts +150 -225
- package/src/proto/google/protobuf/wrappers.ts +785 -0
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
import { RpcTransport, ServiceInfo, UnaryCall, DuplexStreamingCall, RpcOptions, MethodInfo } from '@protobuf-ts/runtime-rpc';
|
|
2
|
+
import { MaintenanceAPI_Ping_Response, MaintenanceAPI_Ping_Request, MiscAPI_ListResourceTypes_Response, MiscAPI_ListResourceTypes_Request, AuthAPI_GetJWTToken_Response, AuthAPI_GetJWTToken_Request, AuthAPI_ListMethods_Response, AuthAPI_ListMethods_Request, LocksAPI_Lease_Release_Response, LocksAPI_Lease_Release_Request, LocksAPI_Lease_Update_Response, LocksAPI_Lease_Update_Request, LocksAPI_Lease_Create_Response, LocksAPI_Lease_Create_Request, ControllerAPI_ClearFeatures_Response, ControllerAPI_ClearFeatures_Request, ControllerAPI_SetFeatures_Response, ControllerAPI_SetFeatures_Request, ControllerAPI_GetUrl_Response, ControllerAPI_GetUrl_Request, ControllerAPI_RemoveAliasesAndUrls_Response, ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response, ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_GetNotifications_Response, ControllerAPI_GetNotifications_Request, ControllerAPI_AttachSubscription_Response, ControllerAPI_AttachSubscription_Request, ControllerAPI_Update_Response, ControllerAPI_Update_Request, ControllerAPI_Get_Response, ControllerAPI_Get_Request, ControllerAPI_Exists_Response, ControllerAPI_Exists_Request, ControllerAPI_Create_Response, ControllerAPI_Create_Request, ControllerAPI_Deregister_Response, ControllerAPI_Deregister_Request, ControllerAPI_Register_Response, ControllerAPI_Register_Request, NotificationAPI_Get_Response, NotificationAPI_Get_Request, SubscriptionAPI_DetachFilter_Response, SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_AttachFilter_Response, SubscriptionAPI_AttachFilter_Request, TxAPI_Sync_Response, TxAPI_Sync_Request, TxAPI_ServerMessage, TxAPI_ClientMessage } from './api';
|
|
3
|
+
import { JsonValue } from '@protobuf-ts/runtime';
|
|
4
|
+
/**
|
|
5
|
+
* @generated from protobuf service MiLaboratories.PL.API.Platform
|
|
6
|
+
*/
|
|
7
|
+
export interface IPlatformClient {
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* Transactions
|
|
11
|
+
*
|
|
12
|
+
*
|
|
13
|
+
* @generated from protobuf rpc: Tx
|
|
14
|
+
*/
|
|
15
|
+
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage>;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf rpc: TxSync
|
|
18
|
+
*/
|
|
19
|
+
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response>;
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* Subscriptions
|
|
23
|
+
*
|
|
24
|
+
*
|
|
25
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
26
|
+
*/
|
|
27
|
+
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
30
|
+
*/
|
|
31
|
+
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
34
|
+
*/
|
|
35
|
+
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* Controllers
|
|
39
|
+
*
|
|
40
|
+
*
|
|
41
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
42
|
+
*/
|
|
43
|
+
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response>;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
46
|
+
*/
|
|
47
|
+
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
50
|
+
*/
|
|
51
|
+
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response>;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from protobuf rpc: ControllerExists
|
|
54
|
+
*/
|
|
55
|
+
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>;
|
|
56
|
+
/**
|
|
57
|
+
* @generated from protobuf rpc: ControllerGet
|
|
58
|
+
*/
|
|
59
|
+
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response>;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
62
|
+
*/
|
|
63
|
+
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response>;
|
|
64
|
+
/**
|
|
65
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
66
|
+
*/
|
|
67
|
+
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>;
|
|
68
|
+
/**
|
|
69
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
70
|
+
*/
|
|
71
|
+
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>;
|
|
72
|
+
/**
|
|
73
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
74
|
+
*/
|
|
75
|
+
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>;
|
|
76
|
+
/**
|
|
77
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
78
|
+
*/
|
|
79
|
+
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>;
|
|
80
|
+
/**
|
|
81
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
82
|
+
*/
|
|
83
|
+
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>;
|
|
84
|
+
/**
|
|
85
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
86
|
+
*/
|
|
87
|
+
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
90
|
+
*/
|
|
91
|
+
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* Locks
|
|
95
|
+
*
|
|
96
|
+
*
|
|
97
|
+
* @generated from protobuf rpc: LeaseResource
|
|
98
|
+
*/
|
|
99
|
+
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>;
|
|
100
|
+
/**
|
|
101
|
+
* @generated from protobuf rpc: UpdateLease
|
|
102
|
+
*/
|
|
103
|
+
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>;
|
|
104
|
+
/**
|
|
105
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
106
|
+
*/
|
|
107
|
+
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* Authentication
|
|
111
|
+
*
|
|
112
|
+
*
|
|
113
|
+
* @generated from protobuf rpc: AuthMethods
|
|
114
|
+
*/
|
|
115
|
+
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>;
|
|
116
|
+
/**
|
|
117
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
118
|
+
*/
|
|
119
|
+
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>;
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* Other stuff
|
|
123
|
+
*
|
|
124
|
+
*
|
|
125
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
126
|
+
*/
|
|
127
|
+
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* Various service requests
|
|
131
|
+
*
|
|
132
|
+
*
|
|
133
|
+
* @generated from protobuf rpc: Ping
|
|
134
|
+
*/
|
|
135
|
+
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* @generated from protobuf service MiLaboratories.PL.API.Platform
|
|
139
|
+
*/
|
|
140
|
+
export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
141
|
+
private readonly _transport;
|
|
142
|
+
typeName: string;
|
|
143
|
+
methods: MethodInfo<any, any>[];
|
|
144
|
+
options: {
|
|
145
|
+
[extensionName: string]: JsonValue;
|
|
146
|
+
};
|
|
147
|
+
constructor(_transport: RpcTransport);
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* Transactions
|
|
151
|
+
*
|
|
152
|
+
*
|
|
153
|
+
* @generated from protobuf rpc: Tx
|
|
154
|
+
*/
|
|
155
|
+
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage>;
|
|
156
|
+
/**
|
|
157
|
+
* @generated from protobuf rpc: TxSync
|
|
158
|
+
*/
|
|
159
|
+
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response>;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* Subscriptions
|
|
163
|
+
*
|
|
164
|
+
*
|
|
165
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
166
|
+
*/
|
|
167
|
+
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>;
|
|
168
|
+
/**
|
|
169
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
170
|
+
*/
|
|
171
|
+
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>;
|
|
172
|
+
/**
|
|
173
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
174
|
+
*/
|
|
175
|
+
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response>;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* Controllers
|
|
179
|
+
*
|
|
180
|
+
*
|
|
181
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
182
|
+
*/
|
|
183
|
+
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response>;
|
|
184
|
+
/**
|
|
185
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
186
|
+
*/
|
|
187
|
+
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>;
|
|
188
|
+
/**
|
|
189
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
190
|
+
*/
|
|
191
|
+
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response>;
|
|
192
|
+
/**
|
|
193
|
+
* @generated from protobuf rpc: ControllerExists
|
|
194
|
+
*/
|
|
195
|
+
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>;
|
|
196
|
+
/**
|
|
197
|
+
* @generated from protobuf rpc: ControllerGet
|
|
198
|
+
*/
|
|
199
|
+
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response>;
|
|
200
|
+
/**
|
|
201
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
202
|
+
*/
|
|
203
|
+
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response>;
|
|
204
|
+
/**
|
|
205
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
206
|
+
*/
|
|
207
|
+
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>;
|
|
208
|
+
/**
|
|
209
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
210
|
+
*/
|
|
211
|
+
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>;
|
|
212
|
+
/**
|
|
213
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
214
|
+
*/
|
|
215
|
+
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>;
|
|
216
|
+
/**
|
|
217
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
218
|
+
*/
|
|
219
|
+
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>;
|
|
220
|
+
/**
|
|
221
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
222
|
+
*/
|
|
223
|
+
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>;
|
|
224
|
+
/**
|
|
225
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
226
|
+
*/
|
|
227
|
+
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>;
|
|
228
|
+
/**
|
|
229
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
230
|
+
*/
|
|
231
|
+
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>;
|
|
232
|
+
/**
|
|
233
|
+
*
|
|
234
|
+
* Locks
|
|
235
|
+
*
|
|
236
|
+
*
|
|
237
|
+
* @generated from protobuf rpc: LeaseResource
|
|
238
|
+
*/
|
|
239
|
+
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>;
|
|
240
|
+
/**
|
|
241
|
+
* @generated from protobuf rpc: UpdateLease
|
|
242
|
+
*/
|
|
243
|
+
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>;
|
|
244
|
+
/**
|
|
245
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
246
|
+
*/
|
|
247
|
+
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* Authentication
|
|
251
|
+
*
|
|
252
|
+
*
|
|
253
|
+
* @generated from protobuf rpc: AuthMethods
|
|
254
|
+
*/
|
|
255
|
+
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>;
|
|
256
|
+
/**
|
|
257
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
258
|
+
*/
|
|
259
|
+
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>;
|
|
260
|
+
/**
|
|
261
|
+
*
|
|
262
|
+
* Other stuff
|
|
263
|
+
*
|
|
264
|
+
*
|
|
265
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
266
|
+
*/
|
|
267
|
+
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>;
|
|
268
|
+
/**
|
|
269
|
+
*
|
|
270
|
+
* Various service requests
|
|
271
|
+
*
|
|
272
|
+
*
|
|
273
|
+
* @generated from protobuf rpc: Ping
|
|
274
|
+
*/
|
|
275
|
+
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>;
|
|
276
|
+
}
|
|
277
|
+
//# sourceMappingURL=api.client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.client.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts"],"names":[],"mappings":"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"}
|