@eide/foir-proto-ts 0.94.0 → 0.96.0
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/package.json +1 -1
- package/src/deploy/v1/deploy_connect.d.ts +292 -0
- package/src/deploy/v1/deploy_connect.js +292 -0
- package/src/deploy/v1/deploy_pb.d.ts +2307 -0
- package/src/deploy/v1/deploy_pb.js +475 -0
- package/src/identity/v1/identity_connect.d.ts +30 -1
- package/src/identity/v1/identity_connect.js +30 -1
- package/src/identity/v1/identity_pb.d.ts +223 -0
- package/src/identity/v1/identity_pb.js +121 -72
- package/src/settings/v1/settings_connect.d.ts +86 -1
- package/src/settings/v1/settings_connect.js +86 -1
- package/src/settings/v1/settings_pb.d.ts +660 -0
- package/src/settings/v1/settings_pb.js +180 -33
package/package.json
CHANGED
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file deploy/v1/deploy.proto (package deploy.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { CreateAppRequest, CreateAppResponse, CreateDomainRequest, CreateDomainResponse, CreateEnvironmentRequest, CreateEnvironmentResponse, CreateProviderAccountRequest, CreateProviderAccountResponse, CreateSecretBindingRequest, CreateSecretBindingResponse, DeleteAppRequest, DeleteAppResponse, DeleteDomainRequest, DeleteDomainResponse, DeleteEnvironmentRequest, DeleteEnvironmentResponse, DeleteProviderAccountRequest, DeleteProviderAccountResponse, DeleteSecretBindingRequest, DeleteSecretBindingResponse, GetAppRequest, GetAppResponse, GetDeploymentRequest, GetDeploymentResponse, GetDomainRequest, GetDomainResponse, GetEnvironmentRequest, GetEnvironmentResponse, GetProviderAccountRequest, GetProviderAccountResponse, GetReconcileStatusRequest, GetReconcileStatusResponse, GetSecretBindingRequest, GetSecretBindingResponse, ListAppsRequest, ListAppsResponse, ListDeploymentsRequest, ListDeploymentsResponse, ListDomainsRequest, ListDomainsResponse, ListEnvironmentsRequest, ListEnvironmentsResponse, ListProviderAccountsRequest, ListProviderAccountsResponse, ListSecretBindingsRequest, ListSecretBindingsResponse, TriggerDeployRequest, TriggerDeployResponse, TriggerReconcileRequest, TriggerReconcileResponse, UpdateAppRequest, UpdateAppResponse, UpdateEnvironmentRequest, UpdateEnvironmentResponse, UpdateProviderAccountRequest, UpdateProviderAccountResponse, UpdateSecretBindingRequest, UpdateSecretBindingResponse } from "./deploy_pbjs";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service deploy.v1.DeployService
|
|
11
|
+
*/
|
|
12
|
+
export declare const DeployService: {
|
|
13
|
+
readonly typeName: "deploy.v1.DeployService",
|
|
14
|
+
readonly methods: {
|
|
15
|
+
/**
|
|
16
|
+
* ── Provider accounts ──
|
|
17
|
+
*
|
|
18
|
+
* @generated from rpc deploy.v1.DeployService.ListProviderAccounts
|
|
19
|
+
*/
|
|
20
|
+
readonly listProviderAccounts: {
|
|
21
|
+
readonly name: "ListProviderAccounts",
|
|
22
|
+
readonly I: typeof ListProviderAccountsRequest,
|
|
23
|
+
readonly O: typeof ListProviderAccountsResponse,
|
|
24
|
+
readonly kind: MethodKind.Unary,
|
|
25
|
+
},
|
|
26
|
+
/**
|
|
27
|
+
* @generated from rpc deploy.v1.DeployService.GetProviderAccount
|
|
28
|
+
*/
|
|
29
|
+
readonly getProviderAccount: {
|
|
30
|
+
readonly name: "GetProviderAccount",
|
|
31
|
+
readonly I: typeof GetProviderAccountRequest,
|
|
32
|
+
readonly O: typeof GetProviderAccountResponse,
|
|
33
|
+
readonly kind: MethodKind.Unary,
|
|
34
|
+
},
|
|
35
|
+
/**
|
|
36
|
+
* @generated from rpc deploy.v1.DeployService.CreateProviderAccount
|
|
37
|
+
*/
|
|
38
|
+
readonly createProviderAccount: {
|
|
39
|
+
readonly name: "CreateProviderAccount",
|
|
40
|
+
readonly I: typeof CreateProviderAccountRequest,
|
|
41
|
+
readonly O: typeof CreateProviderAccountResponse,
|
|
42
|
+
readonly kind: MethodKind.Unary,
|
|
43
|
+
},
|
|
44
|
+
/**
|
|
45
|
+
* @generated from rpc deploy.v1.DeployService.UpdateProviderAccount
|
|
46
|
+
*/
|
|
47
|
+
readonly updateProviderAccount: {
|
|
48
|
+
readonly name: "UpdateProviderAccount",
|
|
49
|
+
readonly I: typeof UpdateProviderAccountRequest,
|
|
50
|
+
readonly O: typeof UpdateProviderAccountResponse,
|
|
51
|
+
readonly kind: MethodKind.Unary,
|
|
52
|
+
},
|
|
53
|
+
/**
|
|
54
|
+
* @generated from rpc deploy.v1.DeployService.DeleteProviderAccount
|
|
55
|
+
*/
|
|
56
|
+
readonly deleteProviderAccount: {
|
|
57
|
+
readonly name: "DeleteProviderAccount",
|
|
58
|
+
readonly I: typeof DeleteProviderAccountRequest,
|
|
59
|
+
readonly O: typeof DeleteProviderAccountResponse,
|
|
60
|
+
readonly kind: MethodKind.Unary,
|
|
61
|
+
},
|
|
62
|
+
/**
|
|
63
|
+
* ── Apps ──
|
|
64
|
+
*
|
|
65
|
+
* @generated from rpc deploy.v1.DeployService.ListApps
|
|
66
|
+
*/
|
|
67
|
+
readonly listApps: {
|
|
68
|
+
readonly name: "ListApps",
|
|
69
|
+
readonly I: typeof ListAppsRequest,
|
|
70
|
+
readonly O: typeof ListAppsResponse,
|
|
71
|
+
readonly kind: MethodKind.Unary,
|
|
72
|
+
},
|
|
73
|
+
/**
|
|
74
|
+
* @generated from rpc deploy.v1.DeployService.GetApp
|
|
75
|
+
*/
|
|
76
|
+
readonly getApp: {
|
|
77
|
+
readonly name: "GetApp",
|
|
78
|
+
readonly I: typeof GetAppRequest,
|
|
79
|
+
readonly O: typeof GetAppResponse,
|
|
80
|
+
readonly kind: MethodKind.Unary,
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
* @generated from rpc deploy.v1.DeployService.CreateApp
|
|
84
|
+
*/
|
|
85
|
+
readonly createApp: {
|
|
86
|
+
readonly name: "CreateApp",
|
|
87
|
+
readonly I: typeof CreateAppRequest,
|
|
88
|
+
readonly O: typeof CreateAppResponse,
|
|
89
|
+
readonly kind: MethodKind.Unary,
|
|
90
|
+
},
|
|
91
|
+
/**
|
|
92
|
+
* @generated from rpc deploy.v1.DeployService.UpdateApp
|
|
93
|
+
*/
|
|
94
|
+
readonly updateApp: {
|
|
95
|
+
readonly name: "UpdateApp",
|
|
96
|
+
readonly I: typeof UpdateAppRequest,
|
|
97
|
+
readonly O: typeof UpdateAppResponse,
|
|
98
|
+
readonly kind: MethodKind.Unary,
|
|
99
|
+
},
|
|
100
|
+
/**
|
|
101
|
+
* @generated from rpc deploy.v1.DeployService.DeleteApp
|
|
102
|
+
*/
|
|
103
|
+
readonly deleteApp: {
|
|
104
|
+
readonly name: "DeleteApp",
|
|
105
|
+
readonly I: typeof DeleteAppRequest,
|
|
106
|
+
readonly O: typeof DeleteAppResponse,
|
|
107
|
+
readonly kind: MethodKind.Unary,
|
|
108
|
+
},
|
|
109
|
+
/**
|
|
110
|
+
* ── Environments ──
|
|
111
|
+
*
|
|
112
|
+
* @generated from rpc deploy.v1.DeployService.ListEnvironments
|
|
113
|
+
*/
|
|
114
|
+
readonly listEnvironments: {
|
|
115
|
+
readonly name: "ListEnvironments",
|
|
116
|
+
readonly I: typeof ListEnvironmentsRequest,
|
|
117
|
+
readonly O: typeof ListEnvironmentsResponse,
|
|
118
|
+
readonly kind: MethodKind.Unary,
|
|
119
|
+
},
|
|
120
|
+
/**
|
|
121
|
+
* @generated from rpc deploy.v1.DeployService.GetEnvironment
|
|
122
|
+
*/
|
|
123
|
+
readonly getEnvironment: {
|
|
124
|
+
readonly name: "GetEnvironment",
|
|
125
|
+
readonly I: typeof GetEnvironmentRequest,
|
|
126
|
+
readonly O: typeof GetEnvironmentResponse,
|
|
127
|
+
readonly kind: MethodKind.Unary,
|
|
128
|
+
},
|
|
129
|
+
/**
|
|
130
|
+
* @generated from rpc deploy.v1.DeployService.CreateEnvironment
|
|
131
|
+
*/
|
|
132
|
+
readonly createEnvironment: {
|
|
133
|
+
readonly name: "CreateEnvironment",
|
|
134
|
+
readonly I: typeof CreateEnvironmentRequest,
|
|
135
|
+
readonly O: typeof CreateEnvironmentResponse,
|
|
136
|
+
readonly kind: MethodKind.Unary,
|
|
137
|
+
},
|
|
138
|
+
/**
|
|
139
|
+
* @generated from rpc deploy.v1.DeployService.UpdateEnvironment
|
|
140
|
+
*/
|
|
141
|
+
readonly updateEnvironment: {
|
|
142
|
+
readonly name: "UpdateEnvironment",
|
|
143
|
+
readonly I: typeof UpdateEnvironmentRequest,
|
|
144
|
+
readonly O: typeof UpdateEnvironmentResponse,
|
|
145
|
+
readonly kind: MethodKind.Unary,
|
|
146
|
+
},
|
|
147
|
+
/**
|
|
148
|
+
* @generated from rpc deploy.v1.DeployService.DeleteEnvironment
|
|
149
|
+
*/
|
|
150
|
+
readonly deleteEnvironment: {
|
|
151
|
+
readonly name: "DeleteEnvironment",
|
|
152
|
+
readonly I: typeof DeleteEnvironmentRequest,
|
|
153
|
+
readonly O: typeof DeleteEnvironmentResponse,
|
|
154
|
+
readonly kind: MethodKind.Unary,
|
|
155
|
+
},
|
|
156
|
+
/**
|
|
157
|
+
* ── Secret bindings ──
|
|
158
|
+
*
|
|
159
|
+
* @generated from rpc deploy.v1.DeployService.ListSecretBindings
|
|
160
|
+
*/
|
|
161
|
+
readonly listSecretBindings: {
|
|
162
|
+
readonly name: "ListSecretBindings",
|
|
163
|
+
readonly I: typeof ListSecretBindingsRequest,
|
|
164
|
+
readonly O: typeof ListSecretBindingsResponse,
|
|
165
|
+
readonly kind: MethodKind.Unary,
|
|
166
|
+
},
|
|
167
|
+
/**
|
|
168
|
+
* @generated from rpc deploy.v1.DeployService.GetSecretBinding
|
|
169
|
+
*/
|
|
170
|
+
readonly getSecretBinding: {
|
|
171
|
+
readonly name: "GetSecretBinding",
|
|
172
|
+
readonly I: typeof GetSecretBindingRequest,
|
|
173
|
+
readonly O: typeof GetSecretBindingResponse,
|
|
174
|
+
readonly kind: MethodKind.Unary,
|
|
175
|
+
},
|
|
176
|
+
/**
|
|
177
|
+
* @generated from rpc deploy.v1.DeployService.CreateSecretBinding
|
|
178
|
+
*/
|
|
179
|
+
readonly createSecretBinding: {
|
|
180
|
+
readonly name: "CreateSecretBinding",
|
|
181
|
+
readonly I: typeof CreateSecretBindingRequest,
|
|
182
|
+
readonly O: typeof CreateSecretBindingResponse,
|
|
183
|
+
readonly kind: MethodKind.Unary,
|
|
184
|
+
},
|
|
185
|
+
/**
|
|
186
|
+
* @generated from rpc deploy.v1.DeployService.UpdateSecretBinding
|
|
187
|
+
*/
|
|
188
|
+
readonly updateSecretBinding: {
|
|
189
|
+
readonly name: "UpdateSecretBinding",
|
|
190
|
+
readonly I: typeof UpdateSecretBindingRequest,
|
|
191
|
+
readonly O: typeof UpdateSecretBindingResponse,
|
|
192
|
+
readonly kind: MethodKind.Unary,
|
|
193
|
+
},
|
|
194
|
+
/**
|
|
195
|
+
* @generated from rpc deploy.v1.DeployService.DeleteSecretBinding
|
|
196
|
+
*/
|
|
197
|
+
readonly deleteSecretBinding: {
|
|
198
|
+
readonly name: "DeleteSecretBinding",
|
|
199
|
+
readonly I: typeof DeleteSecretBindingRequest,
|
|
200
|
+
readonly O: typeof DeleteSecretBindingResponse,
|
|
201
|
+
readonly kind: MethodKind.Unary,
|
|
202
|
+
},
|
|
203
|
+
/**
|
|
204
|
+
* ── Domains ──
|
|
205
|
+
*
|
|
206
|
+
* @generated from rpc deploy.v1.DeployService.ListDomains
|
|
207
|
+
*/
|
|
208
|
+
readonly listDomains: {
|
|
209
|
+
readonly name: "ListDomains",
|
|
210
|
+
readonly I: typeof ListDomainsRequest,
|
|
211
|
+
readonly O: typeof ListDomainsResponse,
|
|
212
|
+
readonly kind: MethodKind.Unary,
|
|
213
|
+
},
|
|
214
|
+
/**
|
|
215
|
+
* @generated from rpc deploy.v1.DeployService.GetDomain
|
|
216
|
+
*/
|
|
217
|
+
readonly getDomain: {
|
|
218
|
+
readonly name: "GetDomain",
|
|
219
|
+
readonly I: typeof GetDomainRequest,
|
|
220
|
+
readonly O: typeof GetDomainResponse,
|
|
221
|
+
readonly kind: MethodKind.Unary,
|
|
222
|
+
},
|
|
223
|
+
/**
|
|
224
|
+
* @generated from rpc deploy.v1.DeployService.CreateDomain
|
|
225
|
+
*/
|
|
226
|
+
readonly createDomain: {
|
|
227
|
+
readonly name: "CreateDomain",
|
|
228
|
+
readonly I: typeof CreateDomainRequest,
|
|
229
|
+
readonly O: typeof CreateDomainResponse,
|
|
230
|
+
readonly kind: MethodKind.Unary,
|
|
231
|
+
},
|
|
232
|
+
/**
|
|
233
|
+
* @generated from rpc deploy.v1.DeployService.DeleteDomain
|
|
234
|
+
*/
|
|
235
|
+
readonly deleteDomain: {
|
|
236
|
+
readonly name: "DeleteDomain",
|
|
237
|
+
readonly I: typeof DeleteDomainRequest,
|
|
238
|
+
readonly O: typeof DeleteDomainResponse,
|
|
239
|
+
readonly kind: MethodKind.Unary,
|
|
240
|
+
},
|
|
241
|
+
/**
|
|
242
|
+
* ── Deployments (read-only; created by triggers / git push) ──
|
|
243
|
+
*
|
|
244
|
+
* @generated from rpc deploy.v1.DeployService.ListDeployments
|
|
245
|
+
*/
|
|
246
|
+
readonly listDeployments: {
|
|
247
|
+
readonly name: "ListDeployments",
|
|
248
|
+
readonly I: typeof ListDeploymentsRequest,
|
|
249
|
+
readonly O: typeof ListDeploymentsResponse,
|
|
250
|
+
readonly kind: MethodKind.Unary,
|
|
251
|
+
},
|
|
252
|
+
/**
|
|
253
|
+
* @generated from rpc deploy.v1.DeployService.GetDeployment
|
|
254
|
+
*/
|
|
255
|
+
readonly getDeployment: {
|
|
256
|
+
readonly name: "GetDeployment",
|
|
257
|
+
readonly I: typeof GetDeploymentRequest,
|
|
258
|
+
readonly O: typeof GetDeploymentResponse,
|
|
259
|
+
readonly kind: MethodKind.Unary,
|
|
260
|
+
},
|
|
261
|
+
/**
|
|
262
|
+
* ── Reconcile / deploy ──
|
|
263
|
+
*
|
|
264
|
+
* @generated from rpc deploy.v1.DeployService.TriggerReconcile
|
|
265
|
+
*/
|
|
266
|
+
readonly triggerReconcile: {
|
|
267
|
+
readonly name: "TriggerReconcile",
|
|
268
|
+
readonly I: typeof TriggerReconcileRequest,
|
|
269
|
+
readonly O: typeof TriggerReconcileResponse,
|
|
270
|
+
readonly kind: MethodKind.Unary,
|
|
271
|
+
},
|
|
272
|
+
/**
|
|
273
|
+
* @generated from rpc deploy.v1.DeployService.TriggerDeploy
|
|
274
|
+
*/
|
|
275
|
+
readonly triggerDeploy: {
|
|
276
|
+
readonly name: "TriggerDeploy",
|
|
277
|
+
readonly I: typeof TriggerDeployRequest,
|
|
278
|
+
readonly O: typeof TriggerDeployResponse,
|
|
279
|
+
readonly kind: MethodKind.Unary,
|
|
280
|
+
},
|
|
281
|
+
/**
|
|
282
|
+
* @generated from rpc deploy.v1.DeployService.GetReconcileStatus
|
|
283
|
+
*/
|
|
284
|
+
readonly getReconcileStatus: {
|
|
285
|
+
readonly name: "GetReconcileStatus",
|
|
286
|
+
readonly I: typeof GetReconcileStatusRequest,
|
|
287
|
+
readonly O: typeof GetReconcileStatusResponse,
|
|
288
|
+
readonly kind: MethodKind.Unary,
|
|
289
|
+
},
|
|
290
|
+
}
|
|
291
|
+
};
|
|
292
|
+
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file deploy/v1/deploy.proto (package deploy.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { CreateAppRequest, CreateAppResponse, CreateDomainRequest, CreateDomainResponse, CreateEnvironmentRequest, CreateEnvironmentResponse, CreateProviderAccountRequest, CreateProviderAccountResponse, CreateSecretBindingRequest, CreateSecretBindingResponse, DeleteAppRequest, DeleteAppResponse, DeleteDomainRequest, DeleteDomainResponse, DeleteEnvironmentRequest, DeleteEnvironmentResponse, DeleteProviderAccountRequest, DeleteProviderAccountResponse, DeleteSecretBindingRequest, DeleteSecretBindingResponse, GetAppRequest, GetAppResponse, GetDeploymentRequest, GetDeploymentResponse, GetDomainRequest, GetDomainResponse, GetEnvironmentRequest, GetEnvironmentResponse, GetProviderAccountRequest, GetProviderAccountResponse, GetReconcileStatusRequest, GetReconcileStatusResponse, GetSecretBindingRequest, GetSecretBindingResponse, ListAppsRequest, ListAppsResponse, ListDeploymentsRequest, ListDeploymentsResponse, ListDomainsRequest, ListDomainsResponse, ListEnvironmentsRequest, ListEnvironmentsResponse, ListProviderAccountsRequest, ListProviderAccountsResponse, ListSecretBindingsRequest, ListSecretBindingsResponse, TriggerDeployRequest, TriggerDeployResponse, TriggerReconcileRequest, TriggerReconcileResponse, UpdateAppRequest, UpdateAppResponse, UpdateEnvironmentRequest, UpdateEnvironmentResponse, UpdateProviderAccountRequest, UpdateProviderAccountResponse, UpdateSecretBindingRequest, UpdateSecretBindingResponse } from "./deploy_pbjs";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service deploy.v1.DeployService
|
|
11
|
+
*/
|
|
12
|
+
export const DeployService = {
|
|
13
|
+
typeName: "deploy.v1.DeployService",
|
|
14
|
+
methods: {
|
|
15
|
+
/**
|
|
16
|
+
* ── Provider accounts ──
|
|
17
|
+
*
|
|
18
|
+
* @generated from rpc deploy.v1.DeployService.ListProviderAccounts
|
|
19
|
+
*/
|
|
20
|
+
listProviderAccounts: {
|
|
21
|
+
name: "ListProviderAccounts",
|
|
22
|
+
I: ListProviderAccountsRequest,
|
|
23
|
+
O: ListProviderAccountsResponse,
|
|
24
|
+
kind: MethodKind.Unary,
|
|
25
|
+
},
|
|
26
|
+
/**
|
|
27
|
+
* @generated from rpc deploy.v1.DeployService.GetProviderAccount
|
|
28
|
+
*/
|
|
29
|
+
getProviderAccount: {
|
|
30
|
+
name: "GetProviderAccount",
|
|
31
|
+
I: GetProviderAccountRequest,
|
|
32
|
+
O: GetProviderAccountResponse,
|
|
33
|
+
kind: MethodKind.Unary,
|
|
34
|
+
},
|
|
35
|
+
/**
|
|
36
|
+
* @generated from rpc deploy.v1.DeployService.CreateProviderAccount
|
|
37
|
+
*/
|
|
38
|
+
createProviderAccount: {
|
|
39
|
+
name: "CreateProviderAccount",
|
|
40
|
+
I: CreateProviderAccountRequest,
|
|
41
|
+
O: CreateProviderAccountResponse,
|
|
42
|
+
kind: MethodKind.Unary,
|
|
43
|
+
},
|
|
44
|
+
/**
|
|
45
|
+
* @generated from rpc deploy.v1.DeployService.UpdateProviderAccount
|
|
46
|
+
*/
|
|
47
|
+
updateProviderAccount: {
|
|
48
|
+
name: "UpdateProviderAccount",
|
|
49
|
+
I: UpdateProviderAccountRequest,
|
|
50
|
+
O: UpdateProviderAccountResponse,
|
|
51
|
+
kind: MethodKind.Unary,
|
|
52
|
+
},
|
|
53
|
+
/**
|
|
54
|
+
* @generated from rpc deploy.v1.DeployService.DeleteProviderAccount
|
|
55
|
+
*/
|
|
56
|
+
deleteProviderAccount: {
|
|
57
|
+
name: "DeleteProviderAccount",
|
|
58
|
+
I: DeleteProviderAccountRequest,
|
|
59
|
+
O: DeleteProviderAccountResponse,
|
|
60
|
+
kind: MethodKind.Unary,
|
|
61
|
+
},
|
|
62
|
+
/**
|
|
63
|
+
* ── Apps ──
|
|
64
|
+
*
|
|
65
|
+
* @generated from rpc deploy.v1.DeployService.ListApps
|
|
66
|
+
*/
|
|
67
|
+
listApps: {
|
|
68
|
+
name: "ListApps",
|
|
69
|
+
I: ListAppsRequest,
|
|
70
|
+
O: ListAppsResponse,
|
|
71
|
+
kind: MethodKind.Unary,
|
|
72
|
+
},
|
|
73
|
+
/**
|
|
74
|
+
* @generated from rpc deploy.v1.DeployService.GetApp
|
|
75
|
+
*/
|
|
76
|
+
getApp: {
|
|
77
|
+
name: "GetApp",
|
|
78
|
+
I: GetAppRequest,
|
|
79
|
+
O: GetAppResponse,
|
|
80
|
+
kind: MethodKind.Unary,
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
* @generated from rpc deploy.v1.DeployService.CreateApp
|
|
84
|
+
*/
|
|
85
|
+
createApp: {
|
|
86
|
+
name: "CreateApp",
|
|
87
|
+
I: CreateAppRequest,
|
|
88
|
+
O: CreateAppResponse,
|
|
89
|
+
kind: MethodKind.Unary,
|
|
90
|
+
},
|
|
91
|
+
/**
|
|
92
|
+
* @generated from rpc deploy.v1.DeployService.UpdateApp
|
|
93
|
+
*/
|
|
94
|
+
updateApp: {
|
|
95
|
+
name: "UpdateApp",
|
|
96
|
+
I: UpdateAppRequest,
|
|
97
|
+
O: UpdateAppResponse,
|
|
98
|
+
kind: MethodKind.Unary,
|
|
99
|
+
},
|
|
100
|
+
/**
|
|
101
|
+
* @generated from rpc deploy.v1.DeployService.DeleteApp
|
|
102
|
+
*/
|
|
103
|
+
deleteApp: {
|
|
104
|
+
name: "DeleteApp",
|
|
105
|
+
I: DeleteAppRequest,
|
|
106
|
+
O: DeleteAppResponse,
|
|
107
|
+
kind: MethodKind.Unary,
|
|
108
|
+
},
|
|
109
|
+
/**
|
|
110
|
+
* ── Environments ──
|
|
111
|
+
*
|
|
112
|
+
* @generated from rpc deploy.v1.DeployService.ListEnvironments
|
|
113
|
+
*/
|
|
114
|
+
listEnvironments: {
|
|
115
|
+
name: "ListEnvironments",
|
|
116
|
+
I: ListEnvironmentsRequest,
|
|
117
|
+
O: ListEnvironmentsResponse,
|
|
118
|
+
kind: MethodKind.Unary,
|
|
119
|
+
},
|
|
120
|
+
/**
|
|
121
|
+
* @generated from rpc deploy.v1.DeployService.GetEnvironment
|
|
122
|
+
*/
|
|
123
|
+
getEnvironment: {
|
|
124
|
+
name: "GetEnvironment",
|
|
125
|
+
I: GetEnvironmentRequest,
|
|
126
|
+
O: GetEnvironmentResponse,
|
|
127
|
+
kind: MethodKind.Unary,
|
|
128
|
+
},
|
|
129
|
+
/**
|
|
130
|
+
* @generated from rpc deploy.v1.DeployService.CreateEnvironment
|
|
131
|
+
*/
|
|
132
|
+
createEnvironment: {
|
|
133
|
+
name: "CreateEnvironment",
|
|
134
|
+
I: CreateEnvironmentRequest,
|
|
135
|
+
O: CreateEnvironmentResponse,
|
|
136
|
+
kind: MethodKind.Unary,
|
|
137
|
+
},
|
|
138
|
+
/**
|
|
139
|
+
* @generated from rpc deploy.v1.DeployService.UpdateEnvironment
|
|
140
|
+
*/
|
|
141
|
+
updateEnvironment: {
|
|
142
|
+
name: "UpdateEnvironment",
|
|
143
|
+
I: UpdateEnvironmentRequest,
|
|
144
|
+
O: UpdateEnvironmentResponse,
|
|
145
|
+
kind: MethodKind.Unary,
|
|
146
|
+
},
|
|
147
|
+
/**
|
|
148
|
+
* @generated from rpc deploy.v1.DeployService.DeleteEnvironment
|
|
149
|
+
*/
|
|
150
|
+
deleteEnvironment: {
|
|
151
|
+
name: "DeleteEnvironment",
|
|
152
|
+
I: DeleteEnvironmentRequest,
|
|
153
|
+
O: DeleteEnvironmentResponse,
|
|
154
|
+
kind: MethodKind.Unary,
|
|
155
|
+
},
|
|
156
|
+
/**
|
|
157
|
+
* ── Secret bindings ──
|
|
158
|
+
*
|
|
159
|
+
* @generated from rpc deploy.v1.DeployService.ListSecretBindings
|
|
160
|
+
*/
|
|
161
|
+
listSecretBindings: {
|
|
162
|
+
name: "ListSecretBindings",
|
|
163
|
+
I: ListSecretBindingsRequest,
|
|
164
|
+
O: ListSecretBindingsResponse,
|
|
165
|
+
kind: MethodKind.Unary,
|
|
166
|
+
},
|
|
167
|
+
/**
|
|
168
|
+
* @generated from rpc deploy.v1.DeployService.GetSecretBinding
|
|
169
|
+
*/
|
|
170
|
+
getSecretBinding: {
|
|
171
|
+
name: "GetSecretBinding",
|
|
172
|
+
I: GetSecretBindingRequest,
|
|
173
|
+
O: GetSecretBindingResponse,
|
|
174
|
+
kind: MethodKind.Unary,
|
|
175
|
+
},
|
|
176
|
+
/**
|
|
177
|
+
* @generated from rpc deploy.v1.DeployService.CreateSecretBinding
|
|
178
|
+
*/
|
|
179
|
+
createSecretBinding: {
|
|
180
|
+
name: "CreateSecretBinding",
|
|
181
|
+
I: CreateSecretBindingRequest,
|
|
182
|
+
O: CreateSecretBindingResponse,
|
|
183
|
+
kind: MethodKind.Unary,
|
|
184
|
+
},
|
|
185
|
+
/**
|
|
186
|
+
* @generated from rpc deploy.v1.DeployService.UpdateSecretBinding
|
|
187
|
+
*/
|
|
188
|
+
updateSecretBinding: {
|
|
189
|
+
name: "UpdateSecretBinding",
|
|
190
|
+
I: UpdateSecretBindingRequest,
|
|
191
|
+
O: UpdateSecretBindingResponse,
|
|
192
|
+
kind: MethodKind.Unary,
|
|
193
|
+
},
|
|
194
|
+
/**
|
|
195
|
+
* @generated from rpc deploy.v1.DeployService.DeleteSecretBinding
|
|
196
|
+
*/
|
|
197
|
+
deleteSecretBinding: {
|
|
198
|
+
name: "DeleteSecretBinding",
|
|
199
|
+
I: DeleteSecretBindingRequest,
|
|
200
|
+
O: DeleteSecretBindingResponse,
|
|
201
|
+
kind: MethodKind.Unary,
|
|
202
|
+
},
|
|
203
|
+
/**
|
|
204
|
+
* ── Domains ──
|
|
205
|
+
*
|
|
206
|
+
* @generated from rpc deploy.v1.DeployService.ListDomains
|
|
207
|
+
*/
|
|
208
|
+
listDomains: {
|
|
209
|
+
name: "ListDomains",
|
|
210
|
+
I: ListDomainsRequest,
|
|
211
|
+
O: ListDomainsResponse,
|
|
212
|
+
kind: MethodKind.Unary,
|
|
213
|
+
},
|
|
214
|
+
/**
|
|
215
|
+
* @generated from rpc deploy.v1.DeployService.GetDomain
|
|
216
|
+
*/
|
|
217
|
+
getDomain: {
|
|
218
|
+
name: "GetDomain",
|
|
219
|
+
I: GetDomainRequest,
|
|
220
|
+
O: GetDomainResponse,
|
|
221
|
+
kind: MethodKind.Unary,
|
|
222
|
+
},
|
|
223
|
+
/**
|
|
224
|
+
* @generated from rpc deploy.v1.DeployService.CreateDomain
|
|
225
|
+
*/
|
|
226
|
+
createDomain: {
|
|
227
|
+
name: "CreateDomain",
|
|
228
|
+
I: CreateDomainRequest,
|
|
229
|
+
O: CreateDomainResponse,
|
|
230
|
+
kind: MethodKind.Unary,
|
|
231
|
+
},
|
|
232
|
+
/**
|
|
233
|
+
* @generated from rpc deploy.v1.DeployService.DeleteDomain
|
|
234
|
+
*/
|
|
235
|
+
deleteDomain: {
|
|
236
|
+
name: "DeleteDomain",
|
|
237
|
+
I: DeleteDomainRequest,
|
|
238
|
+
O: DeleteDomainResponse,
|
|
239
|
+
kind: MethodKind.Unary,
|
|
240
|
+
},
|
|
241
|
+
/**
|
|
242
|
+
* ── Deployments (read-only; created by triggers / git push) ──
|
|
243
|
+
*
|
|
244
|
+
* @generated from rpc deploy.v1.DeployService.ListDeployments
|
|
245
|
+
*/
|
|
246
|
+
listDeployments: {
|
|
247
|
+
name: "ListDeployments",
|
|
248
|
+
I: ListDeploymentsRequest,
|
|
249
|
+
O: ListDeploymentsResponse,
|
|
250
|
+
kind: MethodKind.Unary,
|
|
251
|
+
},
|
|
252
|
+
/**
|
|
253
|
+
* @generated from rpc deploy.v1.DeployService.GetDeployment
|
|
254
|
+
*/
|
|
255
|
+
getDeployment: {
|
|
256
|
+
name: "GetDeployment",
|
|
257
|
+
I: GetDeploymentRequest,
|
|
258
|
+
O: GetDeploymentResponse,
|
|
259
|
+
kind: MethodKind.Unary,
|
|
260
|
+
},
|
|
261
|
+
/**
|
|
262
|
+
* ── Reconcile / deploy ──
|
|
263
|
+
*
|
|
264
|
+
* @generated from rpc deploy.v1.DeployService.TriggerReconcile
|
|
265
|
+
*/
|
|
266
|
+
triggerReconcile: {
|
|
267
|
+
name: "TriggerReconcile",
|
|
268
|
+
I: TriggerReconcileRequest,
|
|
269
|
+
O: TriggerReconcileResponse,
|
|
270
|
+
kind: MethodKind.Unary,
|
|
271
|
+
},
|
|
272
|
+
/**
|
|
273
|
+
* @generated from rpc deploy.v1.DeployService.TriggerDeploy
|
|
274
|
+
*/
|
|
275
|
+
triggerDeploy: {
|
|
276
|
+
name: "TriggerDeploy",
|
|
277
|
+
I: TriggerDeployRequest,
|
|
278
|
+
O: TriggerDeployResponse,
|
|
279
|
+
kind: MethodKind.Unary,
|
|
280
|
+
},
|
|
281
|
+
/**
|
|
282
|
+
* @generated from rpc deploy.v1.DeployService.GetReconcileStatus
|
|
283
|
+
*/
|
|
284
|
+
getReconcileStatus: {
|
|
285
|
+
name: "GetReconcileStatus",
|
|
286
|
+
I: GetReconcileStatusRequest,
|
|
287
|
+
O: GetReconcileStatusResponse,
|
|
288
|
+
kind: MethodKind.Unary,
|
|
289
|
+
},
|
|
290
|
+
}
|
|
291
|
+
};
|
|
292
|
+
|