@stack-spot/portal-network 0.197.0 → 0.198.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 +152 -0
- package/dist/api/agent-tools.d.ts +139 -148
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js +41 -4
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api/ai.d.ts +288 -19
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +196 -11
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatformHorizon.d.ts +178 -9
- package/dist/api/cloudPlatformHorizon.d.ts.map +1 -1
- package/dist/api/cloudPlatformHorizon.js +69 -1
- package/dist/api/cloudPlatformHorizon.js.map +1 -1
- package/dist/api/codeShift.d.ts +316 -32
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +172 -8
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/dataIntegration.d.ts +291 -1
- package/dist/api/dataIntegration.d.ts.map +1 -1
- package/dist/api/dataIntegration.js +254 -0
- package/dist/api/dataIntegration.js.map +1 -1
- package/dist/api/discover.d.ts +95 -12
- package/dist/api/discover.d.ts.map +1 -1
- package/dist/api/discover.js +78 -2
- package/dist/api/discover.js.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +159 -126
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +35 -4
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +243 -108
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +102 -2
- package/dist/client/ai.js.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +38 -19
- package/dist/client/cloud-platform-horizon.d.ts.map +1 -1
- package/dist/client/cloud-platform-horizon.js +19 -1
- package/dist/client/cloud-platform-horizon.js.map +1 -1
- package/dist/client/cloud-platform.d.ts +50 -50
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +379 -265
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +100 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +85 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/data-integration.js +22 -2
- package/dist/client/data-integration.js.map +1 -1
- package/dist/client/discover.d.ts +29 -9
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/discover.js +236 -1
- package/dist/client/discover.js.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/secrets.d.ts.map +1 -1
- package/dist/client/secrets.js +1 -1
- package/dist/client/secrets.js.map +1 -1
- package/dist/client/types.d.ts +14 -0
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +53 -53
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.d.ts +6 -0
- package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.js +6 -0
- package/dist/error/dictionary/cloud-platform.js.map +1 -1
- package/dist/utils/StreamedJson.d.ts.map +1 -1
- package/dist/utils/StreamedJson.js +9 -1
- package/dist/utils/StreamedJson.js.map +1 -1
- package/package.json +2 -2
- package/src/api/agent-tools.ts +186 -150
- package/src/api/ai.ts +521 -24
- package/src/api/cloudPlatformHorizon.ts +412 -9
- package/src/api/codeShift.ts +631 -37
- package/src/api/dataIntegration.ts +635 -1
- package/src/api/discover.ts +180 -14
- package/src/client/agent-tools.ts +26 -4
- package/src/client/ai.ts +81 -10
- package/src/client/cloud-platform-horizon.ts +12 -4
- package/src/client/code-shift.ts +64 -1
- package/src/client/data-integration.ts +15 -1
- package/src/client/discover.ts +233 -3
- package/src/client/secrets.ts +1 -1
- package/src/client/types.ts +17 -2
- package/src/error/dictionary/cloud-platform.ts +6 -0
- package/src/utils/StreamedJson.tsx +9 -2
|
@@ -9,14 +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
|
|
12
|
+
xAccountId?: string;
|
|
13
13
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListFoundationResponse>;
|
|
14
14
|
/**
|
|
15
15
|
* Get a foundation by id
|
|
16
16
|
*/
|
|
17
17
|
foundation: import("../network/types.js").QueryObject<Omit<{
|
|
18
18
|
authorization: string;
|
|
19
|
-
xAccountId?: string
|
|
19
|
+
xAccountId?: string;
|
|
20
20
|
foundationId: string;
|
|
21
21
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
|
|
22
22
|
/**
|
|
@@ -24,7 +24,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
24
24
|
*/
|
|
25
25
|
getFolder: import("../network/types.js").QueryObject<Omit<{
|
|
26
26
|
authorization: string;
|
|
27
|
-
xAccountId?: string
|
|
27
|
+
xAccountId?: string;
|
|
28
28
|
foundationId: string;
|
|
29
29
|
folderId: string;
|
|
30
30
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
@@ -39,7 +39,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
39
39
|
*/
|
|
40
40
|
createFoundation: import("../network/types.js").MutationObject<Omit<{
|
|
41
41
|
authorization: string;
|
|
42
|
-
xAccountId?: string
|
|
42
|
+
xAccountId?: string;
|
|
43
43
|
createFoundationRequest: import("../api/cloudPlatform.js").CreateFoundationRequest;
|
|
44
44
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
|
|
45
45
|
/**
|
|
@@ -47,7 +47,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
47
47
|
*/
|
|
48
48
|
createFolder: import("../network/types.js").MutationObject<Omit<{
|
|
49
49
|
authorization: string;
|
|
50
|
-
xAccountId?: string
|
|
50
|
+
xAccountId?: string;
|
|
51
51
|
foundationId: string;
|
|
52
52
|
createFolderRequest: import("../api/cloudPlatform.js").CreateFolderRequest;
|
|
53
53
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
@@ -56,17 +56,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
56
56
|
*/
|
|
57
57
|
listDnsZones: import("../network/types.js").QueryObject<Omit<{
|
|
58
58
|
authorization: string;
|
|
59
|
-
xAccountId?: string
|
|
59
|
+
xAccountId?: string;
|
|
60
60
|
foundationId: string;
|
|
61
|
-
projectId?: string
|
|
62
|
-
privacy?: "
|
|
61
|
+
projectId?: string;
|
|
62
|
+
privacy?: "PUBLIC" | "PRIVATE";
|
|
63
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsZoneResponse>;
|
|
64
64
|
/**
|
|
65
65
|
* Create a dns zone
|
|
66
66
|
*/
|
|
67
67
|
createDnsZone: import("../network/types.js").MutationObject<Omit<{
|
|
68
68
|
authorization: string;
|
|
69
|
-
xAccountId?: string
|
|
69
|
+
xAccountId?: string;
|
|
70
70
|
foundationId: string;
|
|
71
71
|
createDnsZoneRequest: import("../api/cloudPlatform.js").CreateDnsZoneRequest;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
|
|
@@ -75,7 +75,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
75
75
|
*/
|
|
76
76
|
listCidrs: import("../network/types.js").QueryObject<Omit<{
|
|
77
77
|
authorization: string;
|
|
78
|
-
xAccountId?: string
|
|
78
|
+
xAccountId?: string;
|
|
79
79
|
foundationId: string;
|
|
80
80
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCidrResponse>;
|
|
81
81
|
/**
|
|
@@ -83,7 +83,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
83
83
|
*/
|
|
84
84
|
createCidr: import("../network/types.js").MutationObject<Omit<{
|
|
85
85
|
authorization: string;
|
|
86
|
-
xAccountId?: string
|
|
86
|
+
xAccountId?: string;
|
|
87
87
|
foundationId: string;
|
|
88
88
|
createCidrRequest: import("../api/cloudPlatform.js").CreateCidrRequest;
|
|
89
89
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
|
|
@@ -92,16 +92,16 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
92
92
|
*/
|
|
93
93
|
listCertificates: import("../network/types.js").QueryObject<Omit<{
|
|
94
94
|
authorization: string;
|
|
95
|
-
xAccountId?: string
|
|
95
|
+
xAccountId?: string;
|
|
96
96
|
foundationId: string;
|
|
97
|
-
forInbound?: "TRUE" | "FALSE"
|
|
97
|
+
forInbound?: "TRUE" | "FALSE";
|
|
98
98
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCertificateResponse>;
|
|
99
99
|
/**
|
|
100
100
|
* Get a certificate by id
|
|
101
101
|
*/
|
|
102
102
|
getCertificate: import("../network/types.js").QueryObject<Omit<{
|
|
103
103
|
authorization: string;
|
|
104
|
-
xAccountId?: string
|
|
104
|
+
xAccountId?: string;
|
|
105
105
|
foundationId: string;
|
|
106
106
|
certificateId: string;
|
|
107
107
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
@@ -110,7 +110,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
110
110
|
*/
|
|
111
111
|
createCertificate: import("../network/types.js").MutationObject<Omit<{
|
|
112
112
|
authorization: string;
|
|
113
|
-
xAccountId?: string
|
|
113
|
+
xAccountId?: string;
|
|
114
114
|
foundationId: string;
|
|
115
115
|
body: import("../api/cloudPlatform.js").CreatePublicCertificateRequest | import("../api/cloudPlatform.js").ImportCertificateRequest;
|
|
116
116
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
@@ -119,7 +119,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
119
119
|
*/
|
|
120
120
|
createProject: import("../network/types.js").MutationObject<Omit<{
|
|
121
121
|
authorization: string;
|
|
122
|
-
xAccountId?: string
|
|
122
|
+
xAccountId?: string;
|
|
123
123
|
foundationId: string;
|
|
124
124
|
createProjectRequest: import("../api/cloudPlatform.js").CreateProjectRequest;
|
|
125
125
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
@@ -128,7 +128,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
128
128
|
*/
|
|
129
129
|
getProjectById: import("../network/types.js").QueryObject<Omit<{
|
|
130
130
|
authorization: string;
|
|
131
|
-
xAccountId?: string
|
|
131
|
+
xAccountId?: string;
|
|
132
132
|
foundationId: string;
|
|
133
133
|
projectId: string;
|
|
134
134
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
@@ -137,17 +137,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
137
137
|
*/
|
|
138
138
|
listDnsRecords: import("../network/types.js").QueryObject<Omit<{
|
|
139
139
|
authorization: string;
|
|
140
|
-
xAccountId?: string
|
|
140
|
+
xAccountId?: string;
|
|
141
141
|
foundationId: string;
|
|
142
|
-
projectId?: string
|
|
143
|
-
dnsZoneId?: string
|
|
142
|
+
projectId?: string;
|
|
143
|
+
dnsZoneId?: string;
|
|
144
144
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsRecordResponse>;
|
|
145
145
|
/**
|
|
146
146
|
* Create a dns record
|
|
147
147
|
*/
|
|
148
148
|
createDnsRecord: import("../network/types.js").MutationObject<Omit<{
|
|
149
149
|
authorization: string;
|
|
150
|
-
xAccountId?: string
|
|
150
|
+
xAccountId?: string;
|
|
151
151
|
foundationId: string;
|
|
152
152
|
createDnsRecordRequest: import("../api/cloudPlatform.js").CreateDnsRecordRequest;
|
|
153
153
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecordResponse>;
|
|
@@ -156,16 +156,16 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
156
156
|
*/
|
|
157
157
|
listNetworks: import("../network/types.js").QueryObject<Omit<{
|
|
158
158
|
authorization: string;
|
|
159
|
-
xAccountId?: string
|
|
159
|
+
xAccountId?: string;
|
|
160
160
|
foundationId: string;
|
|
161
|
-
projectId?: string
|
|
161
|
+
projectId?: string;
|
|
162
162
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkResponse>;
|
|
163
163
|
/**
|
|
164
164
|
* Create a network
|
|
165
165
|
*/
|
|
166
166
|
createNetwork: import("../network/types.js").MutationObject<Omit<{
|
|
167
167
|
authorization: string;
|
|
168
|
-
xAccountId?: string
|
|
168
|
+
xAccountId?: string;
|
|
169
169
|
foundationId: string;
|
|
170
170
|
createNetworkRequest: import("../api/cloudPlatform.js").CreateNetworkRequest;
|
|
171
171
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
@@ -174,7 +174,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
174
174
|
*/
|
|
175
175
|
listVpns: import("../network/types.js").QueryObject<Omit<{
|
|
176
176
|
authorization: string;
|
|
177
|
-
xAccountId?: string
|
|
177
|
+
xAccountId?: string;
|
|
178
178
|
foundationId: string;
|
|
179
179
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListVpnResponse>;
|
|
180
180
|
/**
|
|
@@ -182,7 +182,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
182
182
|
*/
|
|
183
183
|
getVpnConfiguration: import("../network/types.js").QueryObject<Omit<{
|
|
184
184
|
authorization: string;
|
|
185
|
-
xAccountId?: string
|
|
185
|
+
xAccountId?: string;
|
|
186
186
|
foundationId: string;
|
|
187
187
|
vpnId: string;
|
|
188
188
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnConfigurationResponse>;
|
|
@@ -191,7 +191,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
191
191
|
*/
|
|
192
192
|
createVpn: import("../network/types.js").MutationObject<Omit<{
|
|
193
193
|
authorization: string;
|
|
194
|
-
xAccountId?: string
|
|
194
|
+
xAccountId?: string;
|
|
195
195
|
foundationId: string;
|
|
196
196
|
createVpnRequest: import("../api/cloudPlatform.js").CreateVpnRequest;
|
|
197
197
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
|
|
@@ -200,7 +200,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
200
200
|
*/
|
|
201
201
|
getNetworkById: import("../network/types.js").QueryObject<Omit<{
|
|
202
202
|
authorization: string;
|
|
203
|
-
xAccountId?: string
|
|
203
|
+
xAccountId?: string;
|
|
204
204
|
foundationId: string;
|
|
205
205
|
networkId: string;
|
|
206
206
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
@@ -209,7 +209,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
209
209
|
*/
|
|
210
210
|
listTenants: import("../network/types.js").QueryObject<Omit<{
|
|
211
211
|
authorization: string;
|
|
212
|
-
xAccountId?: string
|
|
212
|
+
xAccountId?: string;
|
|
213
213
|
foundationId: string;
|
|
214
214
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListTenantResponse>;
|
|
215
215
|
/**
|
|
@@ -217,7 +217,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
217
217
|
*/
|
|
218
218
|
createTenant: import("../network/types.js").MutationObject<Omit<{
|
|
219
219
|
authorization: string;
|
|
220
|
-
xAccountId?: string
|
|
220
|
+
xAccountId?: string;
|
|
221
221
|
foundationId: string;
|
|
222
222
|
createTenantRequest: import("../api/cloudPlatform.js").CreateTenantRequest;
|
|
223
223
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").TenantResponse>;
|
|
@@ -226,17 +226,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
226
226
|
*/
|
|
227
227
|
listRuntimes: import("../network/types.js").QueryObject<Omit<{
|
|
228
228
|
authorization: string;
|
|
229
|
-
xAccountId?: string
|
|
229
|
+
xAccountId?: string;
|
|
230
230
|
foundationId: string;
|
|
231
|
-
tenantId?: string
|
|
232
|
-
projectId?: string
|
|
231
|
+
tenantId?: string;
|
|
232
|
+
projectId?: string;
|
|
233
233
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListRuntimeResponse>;
|
|
234
234
|
/**
|
|
235
235
|
* Create a runtime
|
|
236
236
|
*/
|
|
237
237
|
createRuntime: import("../network/types.js").MutationObject<Omit<{
|
|
238
238
|
authorization: string;
|
|
239
|
-
xAccountId?: string
|
|
239
|
+
xAccountId?: string;
|
|
240
240
|
foundationId: string;
|
|
241
241
|
createRuntimeRequest: import("../api/cloudPlatform.js").CreateRuntimeRequest;
|
|
242
242
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").RuntimeResponse>;
|
|
@@ -245,7 +245,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
245
245
|
*/
|
|
246
246
|
getFolderTags: import("../network/types.js").QueryObject<Omit<{
|
|
247
247
|
authorization: string;
|
|
248
|
-
xAccountId?: string
|
|
248
|
+
xAccountId?: string;
|
|
249
249
|
foundationId: string;
|
|
250
250
|
folderId: string;
|
|
251
251
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Tag[]>;
|
|
@@ -254,7 +254,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
254
254
|
*/
|
|
255
255
|
updateFolderTags: import("../network/types.js").MutationObject<Omit<{
|
|
256
256
|
authorization: string;
|
|
257
|
-
xAccountId?: string
|
|
257
|
+
xAccountId?: string;
|
|
258
258
|
foundationId: string;
|
|
259
259
|
folderId: string;
|
|
260
260
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -264,7 +264,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
264
264
|
*/
|
|
265
265
|
updateProjectTags: import("../network/types.js").MutationObject<Omit<{
|
|
266
266
|
authorization: string;
|
|
267
|
-
xAccountId?: string
|
|
267
|
+
xAccountId?: string;
|
|
268
268
|
foundationId: string;
|
|
269
269
|
projectId: string;
|
|
270
270
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -274,7 +274,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
274
274
|
*/
|
|
275
275
|
updateNetworkTags: import("../network/types.js").MutationObject<Omit<{
|
|
276
276
|
authorization: string;
|
|
277
|
-
xAccountId?: string
|
|
277
|
+
xAccountId?: string;
|
|
278
278
|
foundationId: string;
|
|
279
279
|
networkId: string;
|
|
280
280
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -284,7 +284,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
284
284
|
*/
|
|
285
285
|
updateCidrTags: import("../network/types.js").MutationObject<Omit<{
|
|
286
286
|
authorization: string;
|
|
287
|
-
xAccountId?: string
|
|
287
|
+
xAccountId?: string;
|
|
288
288
|
foundationId: string;
|
|
289
289
|
cidrId: string;
|
|
290
290
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -294,7 +294,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
294
294
|
*/
|
|
295
295
|
updateDnsZoneTags: import("../network/types.js").MutationObject<Omit<{
|
|
296
296
|
authorization: string;
|
|
297
|
-
xAccountId?: string
|
|
297
|
+
xAccountId?: string;
|
|
298
298
|
foundationId: string;
|
|
299
299
|
dnsZoneId: string;
|
|
300
300
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -304,7 +304,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
304
304
|
*/
|
|
305
305
|
updateCertificateTags: import("../network/types.js").MutationObject<Omit<{
|
|
306
306
|
authorization: string;
|
|
307
|
-
xAccountId?: string
|
|
307
|
+
xAccountId?: string;
|
|
308
308
|
foundationId: string;
|
|
309
309
|
certificateId: string;
|
|
310
310
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -314,7 +314,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
314
314
|
*/
|
|
315
315
|
updateVpnTags: import("../network/types.js").MutationObject<Omit<{
|
|
316
316
|
authorization: string;
|
|
317
|
-
xAccountId?: string
|
|
317
|
+
xAccountId?: string;
|
|
318
318
|
foundationId: string;
|
|
319
319
|
vpnId: string;
|
|
320
320
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
@@ -324,7 +324,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
324
324
|
*/
|
|
325
325
|
deleteFolder: import("../network/types.js").MutationObject<Omit<{
|
|
326
326
|
authorization: string;
|
|
327
|
-
xAccountId?: string
|
|
327
|
+
xAccountId?: string;
|
|
328
328
|
foundationId: string;
|
|
329
329
|
folderId: string;
|
|
330
330
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -333,7 +333,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
333
333
|
*/
|
|
334
334
|
deleteProject: import("../network/types.js").MutationObject<Omit<{
|
|
335
335
|
authorization: string;
|
|
336
|
-
xAccountId?: string
|
|
336
|
+
xAccountId?: string;
|
|
337
337
|
foundationId: string;
|
|
338
338
|
projectId: string;
|
|
339
339
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -342,7 +342,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
342
342
|
*/
|
|
343
343
|
deleteNetwork: import("../network/types.js").MutationObject<Omit<{
|
|
344
344
|
authorization: string;
|
|
345
|
-
xAccountId?: string
|
|
345
|
+
xAccountId?: string;
|
|
346
346
|
foundationId: string;
|
|
347
347
|
networkId: string;
|
|
348
348
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -351,7 +351,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
351
351
|
*/
|
|
352
352
|
deleteCertificate: import("../network/types.js").MutationObject<Omit<{
|
|
353
353
|
authorization: string;
|
|
354
|
-
xAccountId?: string
|
|
354
|
+
xAccountId?: string;
|
|
355
355
|
foundationId: string;
|
|
356
356
|
certificateId: string;
|
|
357
357
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -360,7 +360,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
360
360
|
*/
|
|
361
361
|
deleteDnsZone: import("../network/types.js").MutationObject<Omit<{
|
|
362
362
|
authorization: string;
|
|
363
|
-
xAccountId?: string
|
|
363
|
+
xAccountId?: string;
|
|
364
364
|
foundationId: string;
|
|
365
365
|
dnsZoneId: string;
|
|
366
366
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -369,7 +369,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
369
369
|
*/
|
|
370
370
|
deleteDnsRecord: import("../network/types.js").MutationObject<Omit<{
|
|
371
371
|
authorization: string;
|
|
372
|
-
xAccountId?: string
|
|
372
|
+
xAccountId?: string;
|
|
373
373
|
foundationId: string;
|
|
374
374
|
dnsRecordId: string;
|
|
375
375
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -378,7 +378,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
378
378
|
*/
|
|
379
379
|
deleteVPN: import("../network/types.js").MutationObject<Omit<{
|
|
380
380
|
authorization: string;
|
|
381
|
-
xAccountId?: string
|
|
381
|
+
xAccountId?: string;
|
|
382
382
|
foundationId: string;
|
|
383
383
|
vpnId: string;
|
|
384
384
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -387,7 +387,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
387
387
|
*/
|
|
388
388
|
deleteCidr: import("../network/types.js").MutationObject<Omit<{
|
|
389
389
|
authorization: string;
|
|
390
|
-
xAccountId?: string
|
|
390
|
+
xAccountId?: string;
|
|
391
391
|
foundationId: string;
|
|
392
392
|
cidrId: string;
|
|
393
393
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
@@ -9,8 +9,8 @@ declare class CloudRuntimesClient extends ReactQueryNetworkClient {
|
|
|
9
9
|
*/
|
|
10
10
|
listApplications: import("../network/types.js").QueryObject<Omit<{
|
|
11
11
|
projectId: string;
|
|
12
|
-
limit?: number
|
|
13
|
-
offset?: number
|
|
12
|
+
limit?: number;
|
|
13
|
+
offset?: number;
|
|
14
14
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudRuntimes.js").PaginatedResponseApplicationDto>;
|
|
15
15
|
/**
|
|
16
16
|
* Get an application by id
|
|
@@ -70,8 +70,8 @@ declare class CloudRuntimesClient extends ReactQueryNetworkClient {
|
|
|
70
70
|
* Get list of repositories
|
|
71
71
|
*/
|
|
72
72
|
listRepositories: import("../network/types.js").QueryObject<Omit<{
|
|
73
|
-
limit?: number
|
|
74
|
-
offset?: number
|
|
73
|
+
limit?: number;
|
|
74
|
+
offset?: number;
|
|
75
75
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudRuntimes.js").ListRepositoryResponse>;
|
|
76
76
|
/**
|
|
77
77
|
* Get list of images from a repository
|
|
@@ -10,8 +10,8 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
|
|
|
10
10
|
* Gets overview of costs over the current month, last month and last 3 months.
|
|
11
11
|
*/
|
|
12
12
|
costOverview: import("../network/types.js").QueryObject<Omit<{
|
|
13
|
-
sortBy?: string
|
|
14
|
-
sortOrder?: string
|
|
13
|
+
sortBy?: string;
|
|
14
|
+
sortOrder?: string;
|
|
15
15
|
}, "sortOrder"> & {
|
|
16
16
|
sortOrder?: "asc" | "desc" | undefined;
|
|
17
17
|
}, import("../api/cloudServices.js").CostOverview>;
|
|
@@ -28,13 +28,13 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
|
|
|
28
28
|
alerts: import("../network/types.js").InfiniteQueryObject<{
|
|
29
29
|
workspace: string;
|
|
30
30
|
env: string;
|
|
31
|
-
pillar?: "SECURITY" | "COST_OPTIMIZATION" | "RELIABILITY"
|
|
32
|
-
severity?: "
|
|
33
|
-
status?: "PENDING" | "NOT_APPLICABLE" | "COMPLETED"
|
|
34
|
-
search?: string
|
|
35
|
-
sort?: ("STATUS_ASC" | "STATUS_DESC" | "POLICIES_ASC" | "POLICIES_DESC" | "PILLAR_ASC" | "PILLAR_DESC" | "SEVERITY_ASC" | "SEVERITY_DESC")[]
|
|
36
|
-
page?: number
|
|
37
|
-
pageSize?: number
|
|
31
|
+
pillar?: "SECURITY" | "COST_OPTIMIZATION" | "RELIABILITY";
|
|
32
|
+
severity?: "LOW" | "MEDIUM" | "HIGH" | "MANDATORY";
|
|
33
|
+
status?: "PENDING" | "NOT_APPLICABLE" | "COMPLETED";
|
|
34
|
+
search?: string;
|
|
35
|
+
sort?: ("STATUS_ASC" | "STATUS_DESC" | "POLICIES_ASC" | "POLICIES_DESC" | "PILLAR_ASC" | "PILLAR_DESC" | "SEVERITY_ASC" | "SEVERITY_DESC")[];
|
|
36
|
+
page?: number;
|
|
37
|
+
pageSize?: number;
|
|
38
38
|
}, import("../api/cloudServices.js").PaginatedResponseAlert, "data">;
|
|
39
39
|
/**
|
|
40
40
|
* Lists instances of a particular service resource running in a workspace.
|
|
@@ -42,8 +42,8 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
|
|
|
42
42
|
allInstancesOfResource: import("../network/types.js").QueryObject<{
|
|
43
43
|
workspaceId: string;
|
|
44
44
|
resourceId: string;
|
|
45
|
-
pageToken?: string
|
|
46
|
-
search?: string
|
|
45
|
+
pageToken?: string;
|
|
46
|
+
search?: string;
|
|
47
47
|
}, import("../api/cloudServices.js").ManagedResourceList>;
|
|
48
48
|
/**
|
|
49
49
|
* Lists all managed services.
|
|
@@ -62,16 +62,16 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
|
|
|
62
62
|
*/
|
|
63
63
|
guardRails: import("../network/types.js").QueryObject<{
|
|
64
64
|
account: string;
|
|
65
|
-
workspace?: string
|
|
66
|
-
env?: string
|
|
65
|
+
workspace?: string;
|
|
66
|
+
env?: string;
|
|
67
67
|
}, import("../api/cloudServices.js").GroupedGuardrailResponse[]>;
|
|
68
68
|
/**
|
|
69
69
|
* Enables a Guard Rail in any level
|
|
70
70
|
*/
|
|
71
71
|
enableGuardRail: import("../network/types.js").MutationObject<{
|
|
72
72
|
account: string;
|
|
73
|
-
workspace?: string
|
|
74
|
-
env?: string
|
|
73
|
+
workspace?: string;
|
|
74
|
+
env?: string;
|
|
75
75
|
enable: boolean;
|
|
76
76
|
guardrailId: string;
|
|
77
77
|
}, unknown>;
|
|
@@ -83,7 +83,7 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
|
|
|
83
83
|
* Lists the filters related to the given type.
|
|
84
84
|
*/
|
|
85
85
|
costAllocationFilters: import("../network/types.js").QueryObject<{
|
|
86
|
-
$type: "
|
|
86
|
+
$type: "SUB_ACCOUNT_ID" | "REGION";
|
|
87
87
|
}, string[]>;
|
|
88
88
|
/**
|
|
89
89
|
* Gets a CSV file with the data of `costAllocation`.
|
|
@@ -105,7 +105,7 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
|
|
|
105
105
|
*/
|
|
106
106
|
billingAccounts: import("../network/types.js").QueryObject<{
|
|
107
107
|
stackSpotAccountId: string;
|
|
108
|
-
showDeleted?: boolean
|
|
108
|
+
showDeleted?: boolean;
|
|
109
109
|
}, BillingAccountSummaryResponse[]>;
|
|
110
110
|
}
|
|
111
111
|
export declare const cloudServicesClient: CloudServicesClient;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloud-services.d.ts","sourceRoot":"","sources":["../../src/client/cloud-services.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EACL,6BAA6B,EAI9B,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAC5E,OAAO,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,mBAAmB,EAAiD,MAAM,SAAS,CAAA;AAG3I,cAAM,mBAAoB,SAAQ,uBAAuB;;IAKvD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE;;OAEG;IACH,YAAY
|
|
1
|
+
{"version":3,"file":"cloud-services.d.ts","sourceRoot":"","sources":["../../src/client/cloud-services.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EACL,6BAA6B,EAI9B,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAC5E,OAAO,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,mBAAmB,EAAiD,MAAM,SAAS,CAAA;AAG3I,cAAM,mBAAoB,SAAQ,uBAAuB;;IAKvD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE;;OAEG;IACH,YAAY;;;;oBAA+F,KAAK,GAAG,MAAM;oDAAI;IAC7H;;OAEG;IACH,uBAAuB;;;wDAAkC;IACzD;;OAEG;IACH,MAAM;;;;;;;;;;sEAKJ;IACF;;OAEG;IACH,sBAAsB;;;;;2DAA4B;IAClD;;OAEG;IACH,WAAW,sEAAmG;IAC9G;;OAEG;IAKH,QAAQ;;;;eAMN;IACF;;OAEG;IACH,UAAU;;;;kEAA4B;IACtC;;OAEG;IACH,eAAe;;;;;;gBAAiC;IAChD;;OAEG;IACH,cAAc,wFAEb;IACD;;OAEG;IACH,qBAAqB;;iBAAuC;IAC5D;;OAEG;IACH,yBAAyB;;;;;wDAAmC;IAC5D;;OAEG;IACH,OAAO;;iBAAyB;IAChC;;OAEG;IACH,eAAe;;;wCAA2H;CAC3I;AAED,eAAO,MAAM,mBAAmB,qBAA4B,CAAA"}
|