@stack-spot/portal-network 0.191.0 → 0.192.0-beta.1
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/CHANGELOG.md +161 -0
- package/dist/api/account.d.ts +4 -116
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +9 -95
- package/dist/api/account.js.map +1 -1
- package/dist/api/ai.d.ts +189 -86
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +238 -142
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatform.d.ts +364 -248
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +289 -109
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/codeShift.d.ts +109 -39
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +51 -10
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/genAiInference.d.ts +22 -2
- package/dist/api/genAiInference.d.ts.map +1 -1
- package/dist/api/genAiInference.js +22 -3
- package/dist/api/genAiInference.js.map +1 -1
- package/dist/client/account.d.ts +33 -19
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +33 -15
- package/dist/client/account.js.map +1 -1
- package/dist/client/ai.d.ts +46 -0
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +140 -15
- package/dist/client/ai.js.map +1 -1
- package/dist/client/cloud-platform.d.ts +195 -43
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +159 -42
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/code-shift.d.ts +36 -3
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +37 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/types.d.ts +26 -5
- package/dist/client/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/readme.md +2 -1
- package/src/api/account.ts +21 -192
- package/src/api/agent-tools.ts +3 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +698 -398
- package/src/api/codeShift.ts +189 -44
- package/src/api/genAiInference.ts +47 -4
- package/src/api/notification.ts +2 -0
- package/src/client/account.ts +36 -17
- package/src/client/ai.ts +136 -13
- package/src/client/cloud-platform.ts +92 -27
- package/src/client/code-shift.ts +20 -1
- package/src/client/types.ts +27 -5
|
@@ -9,12 +9,14 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
9
9
|
*/
|
|
10
10
|
listFoundations: import("../network/types.js").QueryObject<Omit<{
|
|
11
11
|
authorization: string;
|
|
12
|
+
xAccountId?: string | undefined;
|
|
12
13
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListFoundationResponse>;
|
|
13
14
|
/**
|
|
14
15
|
* Get a foundation by id
|
|
15
16
|
*/
|
|
16
17
|
foundation: import("../network/types.js").QueryObject<Omit<{
|
|
17
18
|
authorization: string;
|
|
19
|
+
xAccountId?: string | undefined;
|
|
18
20
|
foundationId: string;
|
|
19
21
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
|
|
20
22
|
/**
|
|
@@ -22,6 +24,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
22
24
|
*/
|
|
23
25
|
getFolder: import("../network/types.js").QueryObject<Omit<{
|
|
24
26
|
authorization: string;
|
|
27
|
+
xAccountId?: string | undefined;
|
|
25
28
|
foundationId: string;
|
|
26
29
|
folderId: string;
|
|
27
30
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
@@ -36,6 +39,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
36
39
|
*/
|
|
37
40
|
createFoundation: import("../network/types.js").MutationObject<Omit<{
|
|
38
41
|
authorization: string;
|
|
42
|
+
xAccountId?: string | undefined;
|
|
39
43
|
createFoundationRequest: import("../api/cloudPlatform.js").CreateFoundationRequest;
|
|
40
44
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
|
|
41
45
|
/**
|
|
@@ -43,6 +47,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
43
47
|
*/
|
|
44
48
|
createFolder: import("../network/types.js").MutationObject<Omit<{
|
|
45
49
|
authorization: string;
|
|
50
|
+
xAccountId?: string | undefined;
|
|
46
51
|
foundationId: string;
|
|
47
52
|
createFolderRequest: import("../api/cloudPlatform.js").CreateFolderRequest;
|
|
48
53
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
@@ -51,15 +56,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
51
56
|
*/
|
|
52
57
|
listDnsZones: import("../network/types.js").QueryObject<Omit<{
|
|
53
58
|
authorization: string;
|
|
59
|
+
xAccountId?: string | undefined;
|
|
54
60
|
foundationId: string;
|
|
55
61
|
projectId?: string | undefined;
|
|
56
|
-
privacy?:
|
|
62
|
+
privacy?: "PRIVATE" | "PUBLIC" | undefined;
|
|
57
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsZoneResponse>;
|
|
58
64
|
/**
|
|
59
65
|
* Create a dns zone
|
|
60
66
|
*/
|
|
61
67
|
createDnsZone: import("../network/types.js").MutationObject<Omit<{
|
|
62
68
|
authorization: string;
|
|
69
|
+
xAccountId?: string | undefined;
|
|
63
70
|
foundationId: string;
|
|
64
71
|
createDnsZoneRequest: import("../api/cloudPlatform.js").CreateDnsZoneRequest;
|
|
65
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
|
|
@@ -68,6 +75,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
68
75
|
*/
|
|
69
76
|
listCidrs: import("../network/types.js").QueryObject<Omit<{
|
|
70
77
|
authorization: string;
|
|
78
|
+
xAccountId?: string | undefined;
|
|
71
79
|
foundationId: string;
|
|
72
80
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCidrResponse>;
|
|
73
81
|
/**
|
|
@@ -75,6 +83,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
75
83
|
*/
|
|
76
84
|
createCidr: import("../network/types.js").MutationObject<Omit<{
|
|
77
85
|
authorization: string;
|
|
86
|
+
xAccountId?: string | undefined;
|
|
78
87
|
foundationId: string;
|
|
79
88
|
createCidrRequest: import("../api/cloudPlatform.js").CreateCidrRequest;
|
|
80
89
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
|
|
@@ -83,6 +92,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
83
92
|
*/
|
|
84
93
|
listCertificates: import("../network/types.js").QueryObject<Omit<{
|
|
85
94
|
authorization: string;
|
|
95
|
+
xAccountId?: string | undefined;
|
|
86
96
|
foundationId: string;
|
|
87
97
|
forInbound?: "TRUE" | "FALSE" | undefined;
|
|
88
98
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCertificateResponse>;
|
|
@@ -91,6 +101,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
91
101
|
*/
|
|
92
102
|
getCertificate: import("../network/types.js").QueryObject<Omit<{
|
|
93
103
|
authorization: string;
|
|
104
|
+
xAccountId?: string | undefined;
|
|
94
105
|
foundationId: string;
|
|
95
106
|
certificateId: string;
|
|
96
107
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
@@ -99,6 +110,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
99
110
|
*/
|
|
100
111
|
createCertificate: import("../network/types.js").MutationObject<Omit<{
|
|
101
112
|
authorization: string;
|
|
113
|
+
xAccountId?: string | undefined;
|
|
102
114
|
foundationId: string;
|
|
103
115
|
body: import("../api/cloudPlatform.js").CreatePublicCertificateRequest | import("../api/cloudPlatform.js").ImportCertificateRequest;
|
|
104
116
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
@@ -107,6 +119,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
107
119
|
*/
|
|
108
120
|
createProject: import("../network/types.js").MutationObject<Omit<{
|
|
109
121
|
authorization: string;
|
|
122
|
+
xAccountId?: string | undefined;
|
|
110
123
|
foundationId: string;
|
|
111
124
|
createProjectRequest: import("../api/cloudPlatform.js").CreateProjectRequest;
|
|
112
125
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
@@ -115,6 +128,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
115
128
|
*/
|
|
116
129
|
getProjectById: import("../network/types.js").QueryObject<Omit<{
|
|
117
130
|
authorization: string;
|
|
131
|
+
xAccountId?: string | undefined;
|
|
118
132
|
foundationId: string;
|
|
119
133
|
projectId: string;
|
|
120
134
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
@@ -123,6 +137,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
123
137
|
*/
|
|
124
138
|
listDnsRecords: import("../network/types.js").QueryObject<Omit<{
|
|
125
139
|
authorization: string;
|
|
140
|
+
xAccountId?: string | undefined;
|
|
126
141
|
foundationId: string;
|
|
127
142
|
projectId?: string | undefined;
|
|
128
143
|
dnsZoneId?: string | undefined;
|
|
@@ -132,6 +147,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
132
147
|
*/
|
|
133
148
|
createDnsRecord: import("../network/types.js").MutationObject<Omit<{
|
|
134
149
|
authorization: string;
|
|
150
|
+
xAccountId?: string | undefined;
|
|
135
151
|
foundationId: string;
|
|
136
152
|
createDnsRecordRequest: import("../api/cloudPlatform.js").CreateDnsRecordRequest;
|
|
137
153
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecordResponse>;
|
|
@@ -140,6 +156,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
140
156
|
*/
|
|
141
157
|
listNetworks: import("../network/types.js").QueryObject<Omit<{
|
|
142
158
|
authorization: string;
|
|
159
|
+
xAccountId?: string | undefined;
|
|
143
160
|
foundationId: string;
|
|
144
161
|
projectId?: string | undefined;
|
|
145
162
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkResponse>;
|
|
@@ -148,56 +165,16 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
148
165
|
*/
|
|
149
166
|
createNetwork: import("../network/types.js").MutationObject<Omit<{
|
|
150
167
|
authorization: string;
|
|
168
|
+
xAccountId?: string | undefined;
|
|
151
169
|
foundationId: string;
|
|
152
170
|
createNetworkRequest: import("../api/cloudPlatform.js").CreateNetworkRequest;
|
|
153
171
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
154
|
-
/**
|
|
155
|
-
* Get a list of inbounds
|
|
156
|
-
*/
|
|
157
|
-
listInbounds: import("../network/types.js").QueryObject<Omit<{
|
|
158
|
-
authorization: string;
|
|
159
|
-
foundationId: string;
|
|
160
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListInboundResponse>;
|
|
161
|
-
/**
|
|
162
|
-
* Create a inbound
|
|
163
|
-
*/
|
|
164
|
-
createInbound: import("../network/types.js").MutationObject<Omit<{
|
|
165
|
-
authorization: string;
|
|
166
|
-
foundationId: string;
|
|
167
|
-
createInboundRequest: import("../api/cloudPlatform.js").CreateInboundRequest;
|
|
168
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").InboundResponse>;
|
|
169
|
-
/**
|
|
170
|
-
* Add a network connection
|
|
171
|
-
*/
|
|
172
|
-
addNetworkConnection: import("../network/types.js").MutationObject<Omit<{
|
|
173
|
-
authorization: string;
|
|
174
|
-
foundationId: string;
|
|
175
|
-
createNetworkConnectionRequest: import("../api/cloudPlatform.js").CreateNetworkConnectionRequest;
|
|
176
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkConnectionResponse>;
|
|
177
|
-
/**
|
|
178
|
-
* Get a network connection request
|
|
179
|
-
*/
|
|
180
|
-
getNetworkConnections: import("../network/types.js").QueryObject<Omit<{
|
|
181
|
-
authorization: string;
|
|
182
|
-
foundationId: string;
|
|
183
|
-
accepterNetworkId?: string | undefined;
|
|
184
|
-
accepterProjectId?: string | undefined;
|
|
185
|
-
requesterNetworkId?: string | undefined;
|
|
186
|
-
requesterProjectId?: string | undefined;
|
|
187
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkConnectionResponse>;
|
|
188
|
-
/**
|
|
189
|
-
* Accept a network connection
|
|
190
|
-
*/
|
|
191
|
-
acceptNetworkConnection: import("../network/types.js").MutationObject<Omit<{
|
|
192
|
-
authorization: string;
|
|
193
|
-
foundationId: string;
|
|
194
|
-
networkConnectionId: string;
|
|
195
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkConnectionResponse>;
|
|
196
172
|
/**
|
|
197
173
|
* Get a list of vpn's
|
|
198
174
|
*/
|
|
199
175
|
listVpns: import("../network/types.js").QueryObject<Omit<{
|
|
200
176
|
authorization: string;
|
|
177
|
+
xAccountId?: string | undefined;
|
|
201
178
|
foundationId: string;
|
|
202
179
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListVpnResponse>;
|
|
203
180
|
/**
|
|
@@ -205,6 +182,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
205
182
|
*/
|
|
206
183
|
getVpnConfiguration: import("../network/types.js").QueryObject<Omit<{
|
|
207
184
|
authorization: string;
|
|
185
|
+
xAccountId?: string | undefined;
|
|
208
186
|
foundationId: string;
|
|
209
187
|
vpnId: string;
|
|
210
188
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnConfigurationResponse>;
|
|
@@ -213,6 +191,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
213
191
|
*/
|
|
214
192
|
createVpn: import("../network/types.js").MutationObject<Omit<{
|
|
215
193
|
authorization: string;
|
|
194
|
+
xAccountId?: string | undefined;
|
|
216
195
|
foundationId: string;
|
|
217
196
|
createVpnRequest: import("../api/cloudPlatform.js").CreateVpnRequest;
|
|
218
197
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
|
|
@@ -221,6 +200,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
221
200
|
*/
|
|
222
201
|
getNetworkById: import("../network/types.js").QueryObject<Omit<{
|
|
223
202
|
authorization: string;
|
|
203
|
+
xAccountId?: string | undefined;
|
|
224
204
|
foundationId: string;
|
|
225
205
|
networkId: string;
|
|
226
206
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
@@ -229,6 +209,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
229
209
|
*/
|
|
230
210
|
listTenants: import("../network/types.js").QueryObject<Omit<{
|
|
231
211
|
authorization: string;
|
|
212
|
+
xAccountId?: string | undefined;
|
|
232
213
|
foundationId: string;
|
|
233
214
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListTenantResponse>;
|
|
234
215
|
/**
|
|
@@ -236,9 +217,180 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
236
217
|
*/
|
|
237
218
|
createTenant: import("../network/types.js").MutationObject<Omit<{
|
|
238
219
|
authorization: string;
|
|
220
|
+
xAccountId?: string | undefined;
|
|
239
221
|
foundationId: string;
|
|
240
222
|
createTenantRequest: import("../api/cloudPlatform.js").CreateTenantRequest;
|
|
241
223
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").TenantResponse>;
|
|
224
|
+
/**
|
|
225
|
+
* Get a list of runtimes
|
|
226
|
+
*/
|
|
227
|
+
listRuntimes: import("../network/types.js").QueryObject<Omit<{
|
|
228
|
+
authorization: string;
|
|
229
|
+
xAccountId?: string | undefined;
|
|
230
|
+
foundationId: string;
|
|
231
|
+
tenantId?: string | undefined;
|
|
232
|
+
projectId?: string | undefined;
|
|
233
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListRuntimeResponse>;
|
|
234
|
+
/**
|
|
235
|
+
* Create a runtime
|
|
236
|
+
*/
|
|
237
|
+
createRuntime: import("../network/types.js").MutationObject<Omit<{
|
|
238
|
+
authorization: string;
|
|
239
|
+
xAccountId?: string | undefined;
|
|
240
|
+
foundationId: string;
|
|
241
|
+
createRuntimeRequest: import("../api/cloudPlatform.js").CreateRuntimeRequest;
|
|
242
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").RuntimeResponse>;
|
|
243
|
+
/**
|
|
244
|
+
* Get a list of tags in folder
|
|
245
|
+
*/
|
|
246
|
+
getFolderTags: import("../network/types.js").QueryObject<Omit<{
|
|
247
|
+
authorization: string;
|
|
248
|
+
xAccountId?: string | undefined;
|
|
249
|
+
foundationId: string;
|
|
250
|
+
folderId: string;
|
|
251
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Tag[]>;
|
|
252
|
+
/**
|
|
253
|
+
* Update folder tags
|
|
254
|
+
*/
|
|
255
|
+
updateFolderTags: import("../network/types.js").MutationObject<Omit<{
|
|
256
|
+
authorization: string;
|
|
257
|
+
xAccountId?: string | undefined;
|
|
258
|
+
foundationId: string;
|
|
259
|
+
folderId: string;
|
|
260
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
261
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
262
|
+
/**
|
|
263
|
+
* Update project tags
|
|
264
|
+
*/
|
|
265
|
+
updateProjectTags: import("../network/types.js").MutationObject<Omit<{
|
|
266
|
+
authorization: string;
|
|
267
|
+
xAccountId?: string | undefined;
|
|
268
|
+
foundationId: string;
|
|
269
|
+
projectId: string;
|
|
270
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
271
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
272
|
+
/**
|
|
273
|
+
* Update network tags
|
|
274
|
+
*/
|
|
275
|
+
updateNetworkTags: import("../network/types.js").MutationObject<Omit<{
|
|
276
|
+
authorization: string;
|
|
277
|
+
xAccountId?: string | undefined;
|
|
278
|
+
foundationId: string;
|
|
279
|
+
networkId: string;
|
|
280
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
281
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
282
|
+
/**
|
|
283
|
+
* Update cidr tags
|
|
284
|
+
*/
|
|
285
|
+
updateCidrTags: import("../network/types.js").MutationObject<Omit<{
|
|
286
|
+
authorization: string;
|
|
287
|
+
xAccountId?: string | undefined;
|
|
288
|
+
foundationId: string;
|
|
289
|
+
cidrId: string;
|
|
290
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
291
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
|
|
292
|
+
/**
|
|
293
|
+
* Update dns zone tags
|
|
294
|
+
*/
|
|
295
|
+
updateDnsZoneTags: import("../network/types.js").MutationObject<Omit<{
|
|
296
|
+
authorization: string;
|
|
297
|
+
xAccountId?: string | undefined;
|
|
298
|
+
foundationId: string;
|
|
299
|
+
dnsZoneId: string;
|
|
300
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
301
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
|
|
302
|
+
/**
|
|
303
|
+
* Update certificate tags
|
|
304
|
+
*/
|
|
305
|
+
updateCertificateTags: import("../network/types.js").MutationObject<Omit<{
|
|
306
|
+
authorization: string;
|
|
307
|
+
xAccountId?: string | undefined;
|
|
308
|
+
foundationId: string;
|
|
309
|
+
certificateId: string;
|
|
310
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
311
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
312
|
+
/**
|
|
313
|
+
* Update vpn tags
|
|
314
|
+
*/
|
|
315
|
+
updateVpnTags: import("../network/types.js").MutationObject<Omit<{
|
|
316
|
+
authorization: string;
|
|
317
|
+
xAccountId?: string | undefined;
|
|
318
|
+
foundationId: string;
|
|
319
|
+
vpnId: string;
|
|
320
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
321
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
|
|
322
|
+
/**
|
|
323
|
+
* Delete a folder
|
|
324
|
+
*/
|
|
325
|
+
deleteFolder: import("../network/types.js").MutationObject<Omit<{
|
|
326
|
+
authorization: string;
|
|
327
|
+
xAccountId?: string | undefined;
|
|
328
|
+
foundationId: string;
|
|
329
|
+
folderId: string;
|
|
330
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
331
|
+
/**
|
|
332
|
+
* Delete a project
|
|
333
|
+
*/
|
|
334
|
+
deleteProject: import("../network/types.js").MutationObject<Omit<{
|
|
335
|
+
authorization: string;
|
|
336
|
+
xAccountId?: string | undefined;
|
|
337
|
+
foundationId: string;
|
|
338
|
+
projectId: string;
|
|
339
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
340
|
+
/**
|
|
341
|
+
* Delete a network
|
|
342
|
+
*/
|
|
343
|
+
deleteNetwork: import("../network/types.js").MutationObject<Omit<{
|
|
344
|
+
authorization: string;
|
|
345
|
+
xAccountId?: string | undefined;
|
|
346
|
+
foundationId: string;
|
|
347
|
+
networkId: string;
|
|
348
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
349
|
+
/**
|
|
350
|
+
* Delete a certificate
|
|
351
|
+
*/
|
|
352
|
+
deleteCertificate: import("../network/types.js").MutationObject<Omit<{
|
|
353
|
+
authorization: string;
|
|
354
|
+
xAccountId?: string | undefined;
|
|
355
|
+
foundationId: string;
|
|
356
|
+
certificateId: string;
|
|
357
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
358
|
+
/**
|
|
359
|
+
* Delete a dns zone
|
|
360
|
+
*/
|
|
361
|
+
deleteDnsZone: import("../network/types.js").MutationObject<Omit<{
|
|
362
|
+
authorization: string;
|
|
363
|
+
xAccountId?: string | undefined;
|
|
364
|
+
foundationId: string;
|
|
365
|
+
dnsZoneId: string;
|
|
366
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
367
|
+
/**
|
|
368
|
+
* Delete a dns record
|
|
369
|
+
*/
|
|
370
|
+
deleteDnsRecord: import("../network/types.js").MutationObject<Omit<{
|
|
371
|
+
authorization: string;
|
|
372
|
+
xAccountId?: string | undefined;
|
|
373
|
+
foundationId: string;
|
|
374
|
+
dnsRecordId: string;
|
|
375
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
376
|
+
/**
|
|
377
|
+
* Delete a VPN
|
|
378
|
+
*/
|
|
379
|
+
deleteVPN: import("../network/types.js").MutationObject<Omit<{
|
|
380
|
+
authorization: string;
|
|
381
|
+
xAccountId?: string | undefined;
|
|
382
|
+
foundationId: string;
|
|
383
|
+
vpnId: string;
|
|
384
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
385
|
+
/**
|
|
386
|
+
* Delete a CIDR
|
|
387
|
+
*/
|
|
388
|
+
deleteCidr: import("../network/types.js").MutationObject<Omit<{
|
|
389
|
+
authorization: string;
|
|
390
|
+
xAccountId?: string | undefined;
|
|
391
|
+
foundationId: string;
|
|
392
|
+
cidrId: string;
|
|
393
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
242
394
|
}
|
|
243
395
|
export declare const cloudPlatformClient: CloudPlatformClient;
|
|
244
396
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloud-platform.d.ts","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"cloud-platform.d.ts","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAgD7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAK5E,cAAM,mBAAoB,SAAQ,uBAAuB;;IAKvD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,eAAe;;;0HAAwD;IACvE;;OAEG;IACH,UAAU;;;;sHAAsD;IAChE;;OAEG;IACH,SAAS;;;;;kHAAkD;IAC3D;;OAEG;IACH,aAAa;;SAAkD;IAC/D;;OAEG;IACH,gBAAgB;;;;sHAA4D;IAC5E;;OAEG;IACH,YAAY;;;;;kHAAwD;IACpE;;OAEG;IACH,YAAY;;;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,SAAS;;;;oHAAiD;IAC1D;;OAEG;IACH,UAAU;;;;;gHAAsD;IAChE;;OAEG;IACH,gBAAgB;;;;;2HAAyD;IACzE;;OAEG;IACH,cAAc;;;;;uHAAuD;IACrE;;OAEG;IACH,iBAAiB;;;;;uHAA6D;IAC9E;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,cAAc;;;;;mHAAmD;IACjE;;OAEG;IACH,cAAc;;;;;;yHAAsD;IACpE;;OAEG;IACH,eAAe;;;;;qHAA2D;IAC1E;;OAEG;IACH,YAAY;;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,QAAQ;;;;mHAAiD;IACzD;;OAEG;IACH,mBAAmB;;;;;4HAA4D;IAC/E;;OAEG;IACH,SAAS;;;;;+GAAqD;IAC9D;;OAEG;IACH,cAAc;;;;;mHAAmD;IACjE;;KAEC;IACD,WAAW;;;;sHAAmD;IAC9D;;KAEC;IACD,YAAY;;;;;kHAAwD;IACpE;;MAEE;IACF,YAAY;;;;;;uHAAoD;IAChE;;MAEE;IACF,aAAa;;;;;mHAAyD;IACtE;;MAEE;IACF,aAAa;;;;;yGAAsD;IACnE;;MAEE;IACF,gBAAgB;;;;;;kHAAyD;IACzE;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,cAAc;;;;;;gHAAuD;IACrE;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,qBAAqB;;;;;;uHAA8D;IACnF;;MAEE;IACF,aAAa;;;;;;+GAAsD;IACnE;;MAEE;IACF,YAAY;;;;;0EAAwD;IACpE;;MAEE;IACF,aAAa;;;;;0EAAyD;IACtE;;MAEE;IACF,aAAa;;;;;0EAAyD;IACtE;;MAEE;IACF,iBAAiB;;;;;0EAA6D;IAC9E;;MAEE;IACF,aAAa;;;;;0EAAyD;IACtE;;MAEE;IACF,eAAe;;;;;0EAA2D;IAC1E;;IAEA;IACA,SAAS;;;;;0EAAqD;IAC9D;;IAEA;IACA,UAAU;;;;;0EAAsD;CACjE;AAED,eAAO,MAAM,mBAAmB,qBAA4B,CAAA"}
|