@stack-spot/portal-network 0.235.3 → 0.237.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.
@@ -5,637 +5,837 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
5
5
  constructor();
6
6
  protected buildStackSpotError(error: HttpError): StackspotAPIError;
7
7
  /**
8
- * List foundations
9
- */
10
- listFoundations: import("../network/types.js").QueryObject<Omit<{
11
- authorization: string;
12
- xAccountId?: string;
13
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListFoundationResponse>;
14
- /**
15
- * Get a foundation by id
16
- */
17
- foundation: import("../network/types.js").QueryObject<Omit<{
18
- authorization: string;
19
- xAccountId?: string;
20
- foundationId: string;
21
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
22
- /**
23
- * Get list of foundations folders or folder by id
24
- */
25
- getFolder: import("../network/types.js").QueryObject<Omit<{
26
- authorization: string;
27
- xAccountId?: string;
28
- foundationId: string;
29
- folderId: string;
30
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
31
- /**
32
- * Create a foundation
33
- */
34
- createFoundation: import("../network/types.js").MutationObject<Omit<{
35
- authorization: string;
36
- xAccountId?: string;
37
- createFoundationRequest: import("../api/cloudPlatform.js").CreateFoundationRequest;
38
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
39
- /**
40
- * Create a foundation folder
41
- */
42
- createFolder: import("../network/types.js").MutationObject<Omit<{
43
- authorization: string;
44
- xAccountId?: string;
45
- foundationId: string;
46
- createFolderRequest: import("../api/cloudPlatform.js").CreateFolderRequest;
47
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
48
- /**
49
- * Get a list of dns zones
50
- */
51
- listDnsZones: import("../network/types.js").QueryObject<Omit<{
52
- authorization: string;
53
- xAccountId?: string;
54
- foundationId: string;
55
- projectId?: string;
56
- privacy?: "PUBLIC" | "PRIVATE";
57
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsZoneResponse>;
58
- /**
59
- * Create a dns zone
60
- */
61
- createDnsZone: import("../network/types.js").MutationObject<Omit<{
62
- authorization: string;
63
- xAccountId?: string;
64
- foundationId: string;
65
- createDnsZoneRequest: import("../api/cloudPlatform.js").CreateDnsZoneRequest;
66
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
67
- /**
68
- * Get a list of cidrs
69
- */
70
- listCidrs: import("../network/types.js").QueryObject<Omit<{
71
- authorization: string;
72
- xAccountId?: string;
73
- foundationId: string;
74
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCidrResponse>;
75
- /**
76
- * Create a cidr
77
- */
78
- createCidr: import("../network/types.js").MutationObject<Omit<{
79
- authorization: string;
80
- xAccountId?: string;
81
- foundationId: string;
82
- createCidrRequest: import("../api/cloudPlatform.js").CreateCidrRequest;
83
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
84
- /**
85
- * Get a list of certificates
86
- */
87
- listCertificates: import("../network/types.js").QueryObject<Omit<{
88
- authorization: string;
89
- xAccountId?: string;
90
- foundationId: string;
91
- forInbound?: "TRUE" | "FALSE";
92
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCertificateResponse>;
93
- /**
94
- * Get a certificate by id
95
- */
96
- getCertificate: import("../network/types.js").QueryObject<Omit<{
97
- authorization: string;
98
- xAccountId?: string;
99
- foundationId: string;
100
- certificateId: string;
101
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
102
- /**
103
- * Create a certificate
104
- */
105
- createCertificate: import("../network/types.js").MutationObject<Omit<{
106
- authorization: string;
107
- xAccountId?: string;
108
- foundationId: string;
109
- body: import("../api/cloudPlatform.js").CreatePublicCertificateRequest | import("../api/cloudPlatform.js").ImportCertificateRequest;
110
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
111
- /**
112
- * Create a project
113
- */
114
- createProject: import("../network/types.js").MutationObject<Omit<{
115
- authorization: string;
116
- xAccountId?: string;
117
- foundationId: string;
118
- createProjectRequest: import("../api/cloudPlatform.js").CreateProjectRequest;
119
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
120
- /**
121
- * Get a project by id
122
- */
123
- getProjectById: import("../network/types.js").QueryObject<Omit<{
124
- authorization: string;
125
- xAccountId?: string;
126
- foundationId: string;
127
- projectId: string;
128
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
129
- /**
130
- * Get a list of dns records
8
+ * Update network tags V2
131
9
  */
132
- listDnsRecords: import("../network/types.js").QueryObject<Omit<{
133
- authorization: string;
134
- xAccountId?: string;
135
- foundationId: string;
136
- projectId?: string;
137
- dnsZoneId?: string;
138
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsRecordResponse>;
139
- /**
140
- * Create a dns record
141
- */
142
- createDnsRecord: import("../network/types.js").MutationObject<Omit<{
143
- authorization: string;
144
- xAccountId?: string;
145
- foundationId: string;
146
- createDnsRecordRequest: import("../api/cloudPlatform.js").CreateDnsRecordRequest;
147
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecordResponse>;
148
- /**
149
- * Get a list of networks
150
- */
151
- listNetworks: import("../network/types.js").QueryObject<Omit<{
152
- authorization: string;
153
- xAccountId?: string;
154
- foundationId: string;
155
- projectId?: string;
156
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkResponse>;
157
- /**
158
- * Create a network
159
- */
160
- createNetwork: import("../network/types.js").MutationObject<Omit<{
161
- authorization: string;
162
- xAccountId?: string;
163
- foundationId: string;
164
- createNetworkRequest: import("../api/cloudPlatform.js").CreateNetworkRequest;
165
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
166
- /**
167
- * Get a list of vpn's
168
- */
169
- listVpns: import("../network/types.js").QueryObject<Omit<{
170
- authorization: string;
171
- xAccountId?: string;
172
- foundationId: string;
173
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListVpnResponse>;
174
- /**
175
- * Get vpn configuration
176
- */
177
- getVpnConfiguration: import("../network/types.js").QueryObject<Omit<{
178
- authorization: string;
179
- xAccountId?: string;
180
- foundationId: string;
181
- vpnId: string;
182
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnConfigurationResponse>;
183
- /**
184
- * Create a vpn
185
- */
186
- createVpn: import("../network/types.js").MutationObject<Omit<{
187
- authorization: string;
188
- xAccountId?: string;
189
- foundationId: string;
190
- createVpnRequest: import("../api/cloudPlatform.js").CreateVpnRequest;
191
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
192
- /**
193
- * Get a network details
194
- */
195
- getNetworkById: import("../network/types.js").QueryObject<Omit<{
196
- authorization: string;
197
- xAccountId?: string;
198
- foundationId: string;
199
- networkId: string;
200
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
201
- /**
202
- * Get a list of tags in folder
203
- */
204
- getFolderTags: import("../network/types.js").QueryObject<Omit<{
205
- authorization: string;
206
- xAccountId?: string;
207
- foundationId: string;
208
- folderId: string;
209
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Tag[]>;
210
- /**
211
- * Update folder tags
212
- */
213
- updateFolderTags: import("../network/types.js").MutationObject<Omit<{
214
- authorization: string;
215
- xAccountId?: string;
216
- foundationId: string;
217
- folderId: string;
218
- body: import("../api/cloudPlatform.js").Tag[];
219
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
220
- /**
221
- * Update project tags
222
- */
223
- updateProjectTags: import("../network/types.js").MutationObject<Omit<{
224
- authorization: string;
225
- xAccountId?: string;
226
- foundationId: string;
227
- projectId: string;
228
- body: import("../api/cloudPlatform.js").Tag[];
229
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
230
- /**
231
- * Update network tags
232
- */
233
- updateNetworkTags: import("../network/types.js").MutationObject<Omit<{
234
- authorization: string;
235
- xAccountId?: string;
236
- foundationId: string;
237
- networkId: string;
238
- body: import("../api/cloudPlatform.js").Tag[];
239
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
240
- /**
241
- * Update cidr tags
242
- */
243
- updateCidrTags: import("../network/types.js").MutationObject<Omit<{
244
- authorization: string;
245
- xAccountId?: string;
246
- foundationId: string;
247
- cidrId: string;
248
- body: import("../api/cloudPlatform.js").Tag[];
249
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
250
- /**
251
- * Update dns zone tags
252
- */
253
- updateDnsZoneTags: import("../network/types.js").MutationObject<Omit<{
254
- authorization: string;
255
- xAccountId?: string;
256
- foundationId: string;
257
- dnsZoneId: string;
258
- body: import("../api/cloudPlatform.js").Tag[];
259
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
260
- /**
261
- * Update certificate tags
262
- */
263
- updateCertificateTags: import("../network/types.js").MutationObject<Omit<{
264
- authorization: string;
265
- xAccountId?: string;
266
- foundationId: string;
267
- certificateId: string;
268
- body: import("../api/cloudPlatform.js").Tag[];
269
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
270
- /**
271
- * Update vpn tags
272
- */
273
- updateVpnTags: import("../network/types.js").MutationObject<Omit<{
274
- authorization: string;
275
- xAccountId?: string;
276
- foundationId: string;
277
- vpnId: string;
10
+ updateNetworkTagsV2: import("../network/types.js").MutationObject<Omit<{
11
+ $namespace: string;
12
+ name: string;
278
13
  body: import("../api/cloudPlatform.js").Tag[];
279
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
280
- /**
281
- * Delete a folder
282
- */
283
- deleteFolder: import("../network/types.js").MutationObject<Omit<{
284
- authorization: string;
285
- xAccountId?: string;
286
- foundationId: string;
287
- folderId: string;
288
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
289
- /**
290
- * Delete a project
291
- */
292
- deleteProject: import("../network/types.js").MutationObject<Omit<{
293
- authorization: string;
294
- xAccountId?: string;
295
- foundationId: string;
296
- projectId: string;
297
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
298
- /**
299
- * Delete a network
300
- */
301
- deleteNetwork: import("../network/types.js").MutationObject<Omit<{
302
- authorization: string;
303
- xAccountId?: string;
304
- foundationId: string;
305
- networkId: string;
306
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
307
- /**
308
- * Delete a certificate
309
- */
310
- deleteCertificate: import("../network/types.js").MutationObject<Omit<{
311
- authorization: string;
312
- xAccountId?: string;
313
- foundationId: string;
314
- certificateId: string;
315
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
316
- /**
317
- * Delete a dns zone
318
- */
319
- deleteDnsZone: import("../network/types.js").MutationObject<Omit<{
320
- authorization: string;
321
- xAccountId?: string;
322
- foundationId: string;
323
- dnsZoneId: string;
324
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
325
- /**
326
- * Delete a dns record
327
- */
328
- deleteDnsRecord: import("../network/types.js").MutationObject<Omit<{
329
- authorization: string;
330
- xAccountId?: string;
331
- foundationId: string;
332
- dnsRecordId: string;
333
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
334
- /**
335
- * Delete a VPN
336
- */
337
- deleteVPN: import("../network/types.js").MutationObject<Omit<{
338
- authorization: string;
339
- xAccountId?: string;
340
- foundationId: string;
341
- vpnId: string;
342
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
343
- /**
344
- * Delete a CIDR
345
- */
346
- deleteCidr: import("../network/types.js").MutationObject<Omit<{
347
- authorization: string;
348
- xAccountId?: string;
349
- foundationId: string;
350
- cidrId: string;
351
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
352
- /**
353
- * Get a list of foundation boundaries
354
- */
355
- listBoundaries: import("../network/types.js").QueryObject<Omit<{
356
- foundationId: string;
357
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListBoundaryResponse>;
358
- /**
359
- * Get a list of foundation sso boundaries
360
- */
361
- listSSOBoundaries: import("../network/types.js").QueryObject<Omit<{
362
- foundationId: string;
363
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListBoundarySsoResponse>;
14
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
364
15
  /**
365
- * Create a boundary
366
- */
367
- createBoundary: import("../network/types.js").MutationObject<Omit<{
368
- foundationId: string;
369
- createBoundaryRequest: import("../api/cloudPlatform.js").CreateBoundaryRequest;
370
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundaryResponse>;
16
+ * Update network name V2
17
+ */
18
+ updateNetworkNameV2: import("../network/types.js").MutationObject<Omit<{
19
+ $namespace: string;
20
+ name: string;
21
+ body: string;
22
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
371
23
  /**
372
- * Create a sso boundary
373
- */
374
- createSSOBoundary: import("../network/types.js").MutationObject<Omit<{
375
- foundationId: string;
376
- createBoundarySsoRequest: import("../api/cloudPlatform.js").CreateBoundarySsoRequest;
377
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySsoResponse>;
24
+ * List networks V2
25
+ */
26
+ listNetworksV2: import("../network/types.js").QueryObject<Omit<{
27
+ $namespace: string;
28
+ projectName?: string;
29
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Network[]>;
378
30
  /**
379
- * Get details of a boundary
380
- */
381
- getBoundary: import("../network/types.js").QueryObject<Omit<{
382
- foundationId: string;
383
- boundaryId: string;
384
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundaryResponse>;
31
+ * Create network V2
32
+ */
33
+ createNetworkV2: import("../network/types.js").MutationObject<Omit<{
34
+ $namespace: string;
35
+ networkSpec: import("../api/cloudPlatform.js").NetworkSpec;
36
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
385
37
  /**
386
- * Get details of a sso boundary
387
- */
388
- getSSOBoundary: import("../network/types.js").QueryObject<Omit<{
389
- foundationId: string;
390
- boundarySsoId: string;
391
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySsoResponse>;
38
+ * Get network V2
39
+ */
40
+ getNetworkV2: import("../network/types.js").QueryObject<Omit<{
41
+ $namespace: string;
42
+ name: string;
43
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Network>;
392
44
  /**
393
- * Delete a boundary
394
- */
395
- deleteBoundary: import("../network/types.js").MutationObject<Omit<{
396
- foundationId: string;
397
- boundaryId: string;
45
+ * Delete network V2
46
+ */
47
+ deleteNetworkV2: import("../network/types.js").MutationObject<Omit<{
48
+ $namespace: string;
49
+ name: string;
398
50
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
399
51
  /**
400
- * Delete a sso boundary
401
- */
402
- deleteSSOBoundary: import("../network/types.js").MutationObject<Omit<{
403
- foundationId: string;
404
- boundarySsoId: string;
52
+ * Update project tags V2
53
+ */
54
+ updateProjectTagsV2: import("../network/types.js").MutationObject<Omit<{
55
+ $namespace: string;
56
+ name: string;
57
+ body: import("../api/cloudPlatform.js").Tag[];
405
58
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
406
59
  /**
407
- * Edit boundary tags
408
- */
409
- editBoundaryTags: import("../network/types.js").MutationObject<Omit<{
410
- foundationId: string;
411
- boundaryId: string;
412
- body: import("../api/cloudPlatform.js").Tag[];
413
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundaryResponse>;
60
+ * Update project name V2
61
+ */
62
+ updateProjectNameV2: import("../network/types.js").MutationObject<Omit<{
63
+ $namespace: string;
64
+ name: string;
65
+ body: string;
66
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
414
67
  /**
415
- * Edit sso boundary tags
416
- */
417
- editSSOBoundaryTags: import("../network/types.js").MutationObject<Omit<{
418
- foundationId: string;
419
- boundarySsoId: string;
68
+ * Update folder tags V2
69
+ */
70
+ updateFolderTagsV2: import("../network/types.js").MutationObject<Omit<{
71
+ $namespace: string;
72
+ name: string;
420
73
  body: import("../api/cloudPlatform.js").Tag[];
421
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySsoResponse>;
422
- /**
423
- * Edit boundary policy document
424
- */
425
- editBoundaryPolicyDocument: import("../network/types.js").MutationObject<Omit<{
426
- foundationId: string;
427
- boundaryId: string;
428
- body: string;
429
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundaryResponse>;
74
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
430
75
  /**
431
- * Edit sso boundary policy document
432
- */
433
- editSSOBoundaryPolicyDocument: import("../network/types.js").MutationObject<Omit<{
434
- foundationId: string;
435
- boundarySsoId: string;
76
+ * Update folder name V2
77
+ */
78
+ updateFolderNameV2: import("../network/types.js").MutationObject<Omit<{
79
+ $namespace: string;
80
+ name: string;
436
81
  body: string;
437
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySsoResponse>;
82
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
438
83
  /**
439
- * Edit boundary description
440
- */
441
- editBoundaryDescription: import("../network/types.js").MutationObject<Omit<{
442
- foundationId: string;
443
- boundaryId: string;
444
- body: string;
445
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundaryResponse>;
84
+ * Update DNS records TTL V2
85
+ */
86
+ updateDnsRecordsTtlV2: import("../network/types.js").MutationObject<Omit<{
87
+ $namespace: string;
88
+ name: string;
89
+ body: number;
90
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
446
91
  /**
447
- * Edit sso boundary description
448
- */
449
- editSSOBoundaryDescription: import("../network/types.js").MutationObject<Omit<{
450
- foundationId: string;
451
- boundarySsoId: string;
452
- body: string;
453
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySsoResponse>;
92
+ * Update DNS records V2
93
+ */
94
+ updateDnsRecordsV2: import("../network/types.js").MutationObject<Omit<{
95
+ $namespace: string;
96
+ name: string;
97
+ body: string[];
98
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
454
99
  /**
455
- * Edit foundation security tags
456
- */
457
- editFoundationSecurityTags: import("../network/types.js").MutationObject<Omit<{
458
- foundationId: string;
100
+ * Update certificate tags V2
101
+ */
102
+ updateCertificatesTagsV2: import("../network/types.js").MutationObject<Omit<{
103
+ $namespace: string;
104
+ name: string;
459
105
  body: import("../api/cloudPlatform.js").Tag[];
460
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
106
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
461
107
  /**
462
- * List service control policy
463
- */
464
- listServiceControlPolicy: import("../network/types.js").QueryObject<Omit<{
465
- foundationId: string;
466
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListServiceControlPolicy>;
108
+ * List Vpn's V2
109
+ */
110
+ listVpnV2: import("../network/types.js").QueryObject<Omit<{
111
+ $namespace: string;
112
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Vpn[]>;
467
113
  /**
468
- * Get a service control policy details
469
- */
470
- getServiceControlPolicy: import("../network/types.js").QueryObject<Omit<{
471
- foundationId: string;
472
- serviceControlPolicyId: string;
473
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
114
+ * Create Vpn V2
115
+ */
116
+ createVpnV2: import("../network/types.js").MutationObject<Omit<{
117
+ $namespace: string;
118
+ vpnSpec: import("../api/cloudPlatform.js").VpnSpec;
119
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
474
120
  /**
475
- * Edit service control policy
476
- */
477
- editServiceControlPolicy: import("../network/types.js").MutationObject<Omit<{
478
- foundationId: string;
479
- serviceControlPolicyId: string;
480
- serviceControlPolicy: import("../api/cloudPlatform.js").ServiceControlPolicy;
481
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
121
+ * Update Vpn tags V2
122
+ */
123
+ updateVpnTagsV2: import("../network/types.js").MutationObject<Omit<{
124
+ $namespace: string;
125
+ name: string;
126
+ body: import("../api/cloudPlatform.js").Tag[];
127
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
482
128
  /**
483
- * Create a service control policy
484
- */
485
- createServiceControlPolicy: import("../network/types.js").MutationObject<Omit<{
486
- foundationId: string;
487
- serviceControlPolicy: import("../api/cloudPlatform.js").ServiceControlPolicy;
488
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
129
+ * Get Vpn by name V2
130
+ */
131
+ getVpnSByNameV2: import("../network/types.js").QueryObject<Omit<{
132
+ $namespace: string;
133
+ name: string;
134
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Vpn>;
489
135
  /**
490
- * List projects from a foundation
491
- */
492
- listFoundationProjects: import("../network/types.js").QueryObject<Omit<{
493
- authorization: string;
494
- xAccountId?: string;
495
- foundationId: string;
496
- parentFolderId?: string;
497
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListProjectResponse>;
498
- /**
499
- * Get a list of dns records
500
- */
501
- listRoles: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListRole>;
136
+ * Delete Vpn V2
137
+ */
138
+ deleteVpnSV2: import("../network/types.js").MutationObject<Omit<{
139
+ $namespace: string;
140
+ name: string;
141
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
502
142
  /**
503
- * Create a role
504
- */
505
- createRole: import("../network/types.js").MutationObject<Omit<{
506
- role: import("../api/cloudPlatform.js").Role;
507
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
143
+ * List projects V2
144
+ */
145
+ listProjectsV2: import("../network/types.js").QueryObject<Omit<{
146
+ $namespace: string;
147
+ folderRef?: string;
148
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Project[]>;
508
149
  /**
509
- * Get a role by name
510
- */
511
- getRole: import("../network/types.js").QueryObject<Omit<{
512
- roleName: string;
513
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
150
+ * Create project V2
151
+ */
152
+ createProjectV2: import("../network/types.js").MutationObject<Omit<{
153
+ $namespace: string;
154
+ projectSpec: import("../api/cloudPlatform.js").ProjectSpec;
155
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
514
156
  /**
515
- * Edit a role
516
- */
517
- editRole: import("../network/types.js").MutationObject<Omit<{
518
- roleName: string;
519
- role: import("../api/cloudPlatform.js").Role;
520
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
157
+ * Get project by name V2
158
+ */
159
+ getProjectByNameV2: import("../network/types.js").QueryObject<Omit<{
160
+ $namespace: string;
161
+ name: string;
162
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Project>;
521
163
  /**
522
- * Delete a role
523
- */
524
- deleteRole: import("../network/types.js").MutationObject<Omit<{
525
- roleName: string;
164
+ * Delete project V2
165
+ */
166
+ deleteProjectV2: import("../network/types.js").MutationObject<Omit<{
167
+ $namespace: string;
168
+ name: string;
526
169
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
527
170
  /**
528
- * Get Firewall Manager Policies by Foundation
529
- */
530
- getFirewallManagerPolicyByName: import("../network/types.js").QueryObject<Omit<{
171
+ * List managed policy attachments V2
172
+ */
173
+ listManagedPolicyAttachmentsV2: import("../network/types.js").QueryObject<Omit<{
174
+ $namespace: string;
175
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ManagedPolicyAttachment[]>;
176
+ /**
177
+ * Create managed policy attachment V2
178
+ */
179
+ createManagedPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
180
+ $namespace: string;
181
+ managedPolicyAttachmentSpec: import("../api/cloudPlatform.js").ManagedPolicyAttachmentSpec;
182
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
183
+ /**
184
+ * Get managed policy attachment by name V2
185
+ */
186
+ getManagedPolicyAttachmentByNameV2: import("../network/types.js").QueryObject<Omit<{
531
187
  $namespace: string;
532
188
  name: string;
533
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsPolicy>;
189
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ManagedPolicyAttachment>;
534
190
  /**
535
- * Delete Firewall Manager Policy
536
- */
537
- deleteFirewallManagerPolicy: import("../network/types.js").MutationObject<Omit<{
191
+ * Delete managed policy attachment V2
192
+ */
193
+ deleteManagedPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
538
194
  $namespace: string;
539
195
  name: string;
540
196
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
541
197
  /**
542
- * Get Firewall Manager Policies by Foundation
543
- */
544
- listFirewallManagerPolicies: import("../network/types.js").QueryObject<Omit<{
198
+ * List identity store users V2
199
+ */
200
+ listIdentityStoreUsersV2: import("../network/types.js").QueryObject<Omit<{
545
201
  $namespace: string;
546
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsPolicy[]>;
202
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreUser[]>;
547
203
  /**
548
- * Create Firewall Manager Policy
549
- */
550
- createFirewallManagerPolicy: import("../network/types.js").MutationObject<Omit<{
204
+ * Create identity store user V2
205
+ */
206
+ createIdentityStoreUsersV2: import("../network/types.js").MutationObject<Omit<{
551
207
  $namespace: string;
552
- fmsPolicySpec: import("../api/cloudPlatform.js").FmsPolicySpec;
208
+ identityStoreUserSpec: import("../api/cloudPlatform.js").IdentityStoreUserSpec;
553
209
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
554
210
  /**
555
- * Get Firewall Manager Associate Admin Account by name
556
- */
557
- getFirewallManagerAssociateAdminAccountByName: import("../network/types.js").QueryObject<Omit<{
211
+ * Get identity store user by name V2
212
+ */
213
+ getIdentityStoreUserByNameV2: import("../network/types.js").QueryObject<Omit<{
558
214
  $namespace: string;
559
215
  name: string;
560
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsAssociateAdminAccount>;
216
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreUser>;
561
217
  /**
562
- * Delete Firewall Manager Associate Admin Account
563
- */
564
- deleteFirewallManagerAssociateAdminAccount: import("../network/types.js").MutationObject<Omit<{
218
+ * Delete identity store user V2
219
+ */
220
+ deleteIdentityStoreUserV2: import("../network/types.js").MutationObject<Omit<{
565
221
  $namespace: string;
566
222
  name: string;
567
223
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
568
224
  /**
569
- * Create Firewall Manager Associate Admin Account
570
- */
571
- createFirewallManagerAssociateAdminAccount: import("../network/types.js").MutationObject<Omit<{
225
+ * List identity store memberships V2
226
+ */
227
+ listIdentityStoreMembershipsV2: import("../network/types.js").QueryObject<Omit<{
572
228
  $namespace: string;
573
- fmsAssociateAdminAccountSpec: import("../api/cloudPlatform.js").FmsAssociateAdminAccountSpec;
229
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreMembership[]>;
230
+ /**
231
+ * Create identity store membership V2
232
+ */
233
+ createIdentityStoreMembershipsV2: import("../network/types.js").MutationObject<Omit<{
234
+ $namespace: string;
235
+ identityStoreMembershipSpec: import("../api/cloudPlatform.js").IdentityStoreMembershipSpec;
574
236
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
575
237
  /**
576
- * Get Firewall Manager Associate Admin Account by name
577
- */
578
- listFirewallManagerAssociateAdminAccount: import("../network/types.js").QueryObject<Omit<{
238
+ * Get identity store membership by name V2
239
+ */
240
+ getIdentityStoreMembershipByNameV2: import("../network/types.js").QueryObject<Omit<{
579
241
  $namespace: string;
580
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsAssociateAdminAccount[]>;
242
+ name: string;
243
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreMembership>;
581
244
  /**
582
- * Create a Identity Store Group
583
- */
584
- createIdentityStoreGroup: import("../network/types.js").MutationObject<Omit<{
245
+ * Delete identity store membership V2
246
+ */
247
+ deleteIdentityStoreMembershipV2: import("../network/types.js").MutationObject<Omit<{
585
248
  $namespace: string;
586
- identityStoreGroupSpec: import("../api/cloudPlatform.js").IdentityStoreGroupSpec;
249
+ name: string;
587
250
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
588
251
  /**
589
- * List Identity Store Groups by Foundation Namespace
590
- */
591
- listIdentityStoreGroup: import("../network/types.js").QueryObject<Omit<{
252
+ * List identity store groups V2
253
+ */
254
+ listIdentityStoreGroupsV2: import("../network/types.js").QueryObject<Omit<{
592
255
  $namespace: string;
593
256
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreGroup[]>;
594
257
  /**
595
- * Delete a Identity Store Group
596
- */
597
- deleteIdentityStoreGroup: import("../network/types.js").MutationObject<Omit<{
258
+ * Create identity store group V2
259
+ */
260
+ createIdentityStoreGroupV2: import("../network/types.js").MutationObject<Omit<{
261
+ $namespace: string;
262
+ identityStoreGroupSpec: import("../api/cloudPlatform.js").IdentityStoreGroupSpec;
263
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
264
+ /**
265
+ * Get identity store group by name V2
266
+ */
267
+ getIdentityStoreGroupsByNameV2: import("../network/types.js").QueryObject<Omit<{
268
+ $namespace: string;
269
+ name: string;
270
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreGroup>;
271
+ /**
272
+ * Delete identity store group V2
273
+ */
274
+ deleteIdentityStoreGroupV2: import("../network/types.js").MutationObject<Omit<{
598
275
  $namespace: string;
599
276
  name: string;
600
277
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
601
278
  /**
602
- * List Permission sets by Foundation Namespace
603
- */
604
- listPermissionSets: import("../network/types.js").QueryObject<Omit<{
279
+ * List identity centers V2
280
+ */
281
+ listIdentityCentersV2: import("../network/types.js").QueryObject<Omit<{
282
+ $namespace: string;
283
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityCenter[]>;
284
+ /**
285
+ * Create identity center V2
286
+ */
287
+ createIdentityCenterV2: import("../network/types.js").MutationObject<Omit<{
288
+ $namespace: string;
289
+ identityCenterSpec: import("../api/cloudPlatform.js").IdentityCenterSpec;
290
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
291
+ /**
292
+ * Get identity center by name V2
293
+ */
294
+ getIdentityCentersByNameV2: import("../network/types.js").QueryObject<Omit<{
295
+ $namespace: string;
296
+ name: string;
297
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityCenter>;
298
+ /**
299
+ * Delete identity center V2
300
+ */
301
+ deleteIdentityCentersV2: import("../network/types.js").MutationObject<Omit<{
302
+ $namespace: string;
303
+ name: string;
304
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
305
+ /**
306
+ * List permission sets V2
307
+ */
308
+ listPermissionSetsV2: import("../network/types.js").QueryObject<Omit<{
605
309
  $namespace: string;
606
310
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").PermissionSet[]>;
607
311
  /**
608
- * Create a Identity Store Group
609
- */
610
- createPermissionSet: import("../network/types.js").MutationObject<Omit<{
312
+ * Create permission set V2
313
+ */
314
+ createPermissionSetV2: import("../network/types.js").MutationObject<Omit<{
611
315
  $namespace: string;
612
316
  permissionSetSpec: import("../api/cloudPlatform.js").PermissionSetSpec;
613
317
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
614
318
  /**
615
- * Delete a Identity Store Group
616
- */
617
- deletePermissionSet: import("../network/types.js").MutationObject<Omit<{
319
+ * Get permission set by name V2
320
+ */
321
+ getPermissionSetByNameV2: import("../network/types.js").QueryObject<Omit<{
322
+ $namespace: string;
323
+ name: string;
324
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").PermissionSet>;
325
+ /**
326
+ * Delete permission set V2
327
+ */
328
+ deletePermissionSetV2: import("../network/types.js").MutationObject<Omit<{
618
329
  $namespace: string;
619
330
  name: string;
620
331
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
621
332
  /**
622
- * List Account assignment by Foundation Namespace
623
- */
624
- listAccountAssignments: import("../network/types.js").QueryObject<Omit<{
333
+ * List account assignments V2
334
+ */
335
+ listAccountAssignmentsV2: import("../network/types.js").QueryObject<Omit<{
625
336
  $namespace: string;
626
337
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").AccountAssignment[]>;
627
338
  /**
628
- * Create a Account Assignment
629
- */
630
- createAccountAssignment: import("../network/types.js").MutationObject<Omit<{
339
+ * Create account assignment V2
340
+ */
341
+ createAccountAssignmentV2: import("../network/types.js").MutationObject<Omit<{
631
342
  $namespace: string;
632
343
  accountAssignmentSpec: import("../api/cloudPlatform.js").AccountAssignmentSpec;
633
344
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
634
345
  /**
635
- * Delete a Account Assignment
636
- */
637
- deleteAccountAssignment: import("../network/types.js").MutationObject<Omit<{
346
+ * Get account assignment by name V2
347
+ */
348
+ getAccountAssignmentsByNameV2: import("../network/types.js").QueryObject<Omit<{
349
+ $namespace: string;
350
+ name: string;
351
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").AccountAssignment>;
352
+ /**
353
+ * Delete account assignment V2
354
+ */
355
+ deleteAccountAssignmentV2: import("../network/types.js").MutationObject<Omit<{
356
+ $namespace: string;
357
+ name: string;
358
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
359
+ /**
360
+ * List folders V2
361
+ */
362
+ listFoldersV2: import("../network/types.js").QueryObject<Omit<{
363
+ $namespace: string;
364
+ folderName?: string;
365
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Folder[]>;
366
+ /**
367
+ * Create folder V2
368
+ */
369
+ createFoldersV2: import("../network/types.js").MutationObject<Omit<{
370
+ $namespace: string;
371
+ folderSpec: import("../api/cloudPlatform.js").FolderSpec;
372
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
373
+ /**
374
+ * Get folder by name V2
375
+ */
376
+ getFolderByNameV2: import("../network/types.js").QueryObject<Omit<{
377
+ $namespace: string;
378
+ name: string;
379
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Folder>;
380
+ /**
381
+ * Delete folder V2
382
+ */
383
+ deleteFolderV2: import("../network/types.js").MutationObject<Omit<{
384
+ $namespace: string;
385
+ name: string;
386
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
387
+ /**
388
+ * List firewalls V2
389
+ */
390
+ listFirewallsV2: import("../network/types.js").QueryObject<Omit<{
391
+ $namespace: string;
392
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Firewall[]>;
393
+ /**
394
+ * Create firewall V2
395
+ */
396
+ createFirewallV2: import("../network/types.js").MutationObject<Omit<{
397
+ $namespace: string;
398
+ firewallSpec: import("../api/cloudPlatform.js").FirewallSpec;
399
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
400
+ /**
401
+ * Get firewall by name V2
402
+ */
403
+ getFirewallByNameV2: import("../network/types.js").QueryObject<Omit<{
404
+ $namespace: string;
405
+ name: string;
406
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Firewall>;
407
+ /**
408
+ * Delete firewall V2
409
+ */
410
+ deleteFirewallV2: import("../network/types.js").MutationObject<Omit<{
411
+ $namespace: string;
412
+ name: string;
413
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
414
+ /**
415
+ * List DNS zones V2
416
+ */
417
+ listDNSZonesV2: import("../network/types.js").QueryObject<Omit<{
638
418
  $namespace: string;
419
+ $type: "PUBLIC" | "PRIVATE";
420
+ projectName?: string;
421
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZone[]>;
422
+ /**
423
+ * Create DNS zone V2
424
+ */
425
+ createDNSZonesV2: import("../network/types.js").MutationObject<Omit<{
426
+ $namespace: string;
427
+ dnsZoneSpec: import("../api/cloudPlatform.js").DnsZoneSpec;
428
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
429
+ /**
430
+ * Get DNS zone by name V2
431
+ */
432
+ getDNSZoneByNameV2: import("../network/types.js").QueryObject<Omit<{
433
+ $namespace: string;
434
+ name: string;
435
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZone>;
436
+ /**
437
+ * Delete DNS zone V2
438
+ */
439
+ deleteDNSZoneV2: import("../network/types.js").MutationObject<Omit<{
440
+ $namespace: string;
441
+ name: string;
442
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
443
+ /**
444
+ * Update DNS zone tags V2
445
+ */
446
+ upsertDNSTagsV2: import("../network/types.js").MutationObject<Omit<{
447
+ $namespace: string;
448
+ name: string;
449
+ body: import("../api/cloudPlatform.js").Tag[];
450
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
451
+ /**
452
+ * List DNS records V2
453
+ */
454
+ listDNSRecordsV2: import("../network/types.js").QueryObject<Omit<{
455
+ $namespace: string;
456
+ dnsZoneName?: string;
457
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecord[]>;
458
+ /**
459
+ * Create DNS record V2
460
+ */
461
+ createDNSRecordsV2: import("../network/types.js").MutationObject<Omit<{
462
+ $namespace: string;
463
+ dnsRecordSpec: import("../api/cloudPlatform.js").DnsRecordSpec;
464
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
465
+ /**
466
+ * Get DNS record by name V2
467
+ */
468
+ getDNSRecordByNameV2: import("../network/types.js").QueryObject<Omit<{
469
+ $namespace: string;
470
+ name: string;
471
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecord>;
472
+ /**
473
+ * Delete DNS record V2
474
+ */
475
+ deleteDNSRecordV2: import("../network/types.js").MutationObject<Omit<{
476
+ $namespace: string;
477
+ name: string;
478
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
479
+ /**
480
+ * List customer policy attachments V2
481
+ */
482
+ listCustomerPolicyAttachmentsV2: import("../network/types.js").QueryObject<Omit<{
483
+ $namespace: string;
484
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CustomerPolicyAttachment[]>;
485
+ /**
486
+ * Create customer policy attachment V2
487
+ */
488
+ createCustomerPolicyAttachmentsV2: import("../network/types.js").MutationObject<Omit<{
489
+ $namespace: string;
490
+ customerPolicyAttachmentSpec: import("../api/cloudPlatform.js").CustomerPolicyAttachmentSpec;
491
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
492
+ /**
493
+ * Get customer policy attachment by name V2
494
+ */
495
+ getCustomerPolicyAttachmentV2: import("../network/types.js").QueryObject<Omit<{
496
+ $namespace: string;
497
+ name: string;
498
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CustomerPolicyAttachment>;
499
+ /**
500
+ * Delete customer policy attachment V2
501
+ */
502
+ deleteCustomerPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
503
+ $namespace: string;
504
+ name: string;
505
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
506
+ /**
507
+ * List CIDRs V2
508
+ */
509
+ listCIDRSV2: import("../network/types.js").QueryObject<Omit<{
510
+ $namespace: string;
511
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Cidr[]>;
512
+ /**
513
+ * Create CIDR V2
514
+ */
515
+ createCIDRSV2: import("../network/types.js").MutationObject<Omit<{
516
+ $namespace: string;
517
+ cidrSpec: import("../api/cloudPlatform.js").CidrSpec;
518
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
519
+ /**
520
+ * Get CIDR by name V2
521
+ */
522
+ getCIDRByNameV2: import("../network/types.js").QueryObject<Omit<{
523
+ $namespace: string;
524
+ name: string;
525
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Cidr>;
526
+ /**
527
+ * Delete CIDR V2
528
+ */
529
+ deleteCIDRV2: import("../network/types.js").MutationObject<Omit<{
530
+ $namespace: string;
531
+ name: string;
532
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
533
+ /**
534
+ * Update CIDR tags V2
535
+ */
536
+ upsertCIDRTagsV2: import("../network/types.js").MutationObject<Omit<{
537
+ $namespace: string;
538
+ name: string;
539
+ body: import("../api/cloudPlatform.js").Tag[];
540
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
541
+ /**
542
+ * List certificates V2
543
+ */
544
+ listCertificatesV2: import("../network/types.js").QueryObject<Omit<{
545
+ $namespace: string;
546
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Certificate[]>;
547
+ /**
548
+ * Create certificate V2
549
+ */
550
+ createCertificatesV2: import("../network/types.js").MutationObject<Omit<{
551
+ $namespace: string;
552
+ certificateSpec: import("../api/cloudPlatform.js").CertificateSpec;
553
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
554
+ /**
555
+ * Get certificate by name V2
556
+ */
557
+ getCertificateByNameV2: import("../network/types.js").QueryObject<Omit<{
558
+ $namespace: string;
559
+ name: string;
560
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Certificate>;
561
+ /**
562
+ * Delete certificate V2
563
+ */
564
+ deleteCertificateV2: import("../network/types.js").MutationObject<Omit<{
565
+ $namespace: string;
566
+ name: string;
567
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
568
+ /**
569
+ * Get OIDC V2
570
+ */
571
+ getOIDCV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string>;
572
+ /**
573
+ * List OIDC V2
574
+ */
575
+ listOIDCV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string>;
576
+ /**
577
+ * Get Finops V2
578
+ */
579
+ getFinopsV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, {
580
+ [key: string]: string;
581
+ }>;
582
+ /**
583
+ * Create foundation V2
584
+ */
585
+ createFoundationV2: import("../network/types.js").MutationObject<Omit<{
586
+ foundationSpec: import("../api/cloudPlatform.js").FoundationSpec;
587
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
588
+ /**
589
+ * List foundations V2
590
+ */
591
+ listFoundationsV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Foundation[]>;
592
+ /**
593
+ * Get foundation V2
594
+ */
595
+ getFoundationV2: import("../network/types.js").QueryObject<Omit<{
596
+ $namespace: string;
597
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Foundation>;
598
+ /**
599
+ * Update foundation security project tags V2
600
+ */
601
+ updateFoundationSecurityTagsV2: import("../network/types.js").MutationObject<Omit<{
602
+ $namespace: string;
603
+ body: import("../api/cloudPlatform.js").Tag[];
604
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
605
+ /**
606
+ * List boundaries V2
607
+ */
608
+ listBoundariesV2: import("../network/types.js").QueryObject<Omit<{
609
+ $namespace: string;
610
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Boundary[]>;
611
+ /**
612
+ * Create boundary V2
613
+ */
614
+ createBoundaryV2: import("../network/types.js").MutationObject<Omit<{
615
+ $namespace: string;
616
+ boundarySpec: import("../api/cloudPlatform.js").BoundarySpec;
617
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
618
+ /**
619
+ * Get boundary by name V2
620
+ */
621
+ getBoundaryByNameV2: import("../network/types.js").QueryObject<Omit<{
622
+ $namespace: string;
623
+ name: string;
624
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Boundary>;
625
+ /**
626
+ * Delete boundary V2
627
+ */
628
+ deleteBoundaryV2: import("../network/types.js").MutationObject<Omit<{
629
+ $namespace: string;
630
+ name: string;
631
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
632
+ /**
633
+ * Update boundary tags V2
634
+ */
635
+ updateBoundaryTagsV2: import("../network/types.js").MutationObject<Omit<{
636
+ $namespace: string;
637
+ name: string;
638
+ body: import("../api/cloudPlatform.js").Tag[];
639
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
640
+ /**
641
+ * Update boundary policy document V2
642
+ */
643
+ updateBoundaryPolicyDocumentV2: import("../network/types.js").MutationObject<Omit<{
644
+ $namespace: string;
645
+ name: string;
646
+ jsonNode: import("../api/cloudPlatform.js").JsonNode;
647
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
648
+ /**
649
+ * List boundary SSOs V2
650
+ */
651
+ listBoundarySsosV2: import("../network/types.js").QueryObject<Omit<{
652
+ $namespace: string;
653
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySso[]>;
654
+ /**
655
+ * Create boundary SSO V2
656
+ */
657
+ createBoundarySsoV2: import("../network/types.js").MutationObject<Omit<{
658
+ $namespace: string;
659
+ boundarySsoSpec: import("../api/cloudPlatform.js").BoundarySsoSpec;
660
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
661
+ /**
662
+ * Get boundary SSO by name V2
663
+ */
664
+ getBoundarySsoByNameV2: import("../network/types.js").QueryObject<Omit<{
665
+ $namespace: string;
666
+ name: string;
667
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySso>;
668
+ /**
669
+ * Delete boundary SSO V2
670
+ */
671
+ deleteBoundarySsoV2: import("../network/types.js").MutationObject<Omit<{
672
+ $namespace: string;
673
+ name: string;
674
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
675
+ /**
676
+ * Update boundary SSO tags V2
677
+ */
678
+ updateBoundarySsoTagsV2: import("../network/types.js").MutationObject<Omit<{
679
+ $namespace: string;
680
+ name: string;
681
+ body: import("../api/cloudPlatform.js").Tag[];
682
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
683
+ /**
684
+ * Update boundary SSO policy document V2
685
+ */
686
+ updateBoundarySsoPolicyDocumentV2: import("../network/types.js").MutationObject<Omit<{
687
+ $namespace: string;
688
+ name: string;
689
+ jsonNode: import("../api/cloudPlatform.js").JsonNode;
690
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
691
+ /**
692
+ * List service control policies V2
693
+ */
694
+ listServiceControlPoliciesV2: import("../network/types.js").QueryObject<Omit<{
695
+ $namespace: string;
696
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy[]>;
697
+ /**
698
+ * Create service control policy V2
699
+ */
700
+ createServiceControlPolicyV2: import("../network/types.js").MutationObject<Omit<{
701
+ $namespace: string;
702
+ serviceControlPolicySpec: import("../api/cloudPlatform.js").ServiceControlPolicySpec;
703
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
704
+ /**
705
+ * Get service control policy by name V2
706
+ */
707
+ getServiceControlPolicyByNameV2: import("../network/types.js").QueryObject<Omit<{
708
+ $namespace: string;
709
+ name: string;
710
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
711
+ /**
712
+ * Delete service control policy V2
713
+ */
714
+ deleteServiceControlPolicyV2: import("../network/types.js").MutationObject<Omit<{
715
+ $namespace: string;
716
+ name: string;
717
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
718
+ /**
719
+ * Update service control policy target V2
720
+ */
721
+ updateServiceControlPolicyTargetV2: import("../network/types.js").MutationObject<Omit<{
722
+ $namespace: string;
723
+ name: string;
724
+ target: import("../api/cloudPlatform.js").Target;
725
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
726
+ /**
727
+ * Update service control policy tags V2
728
+ */
729
+ updateServiceControlPolicyTagsV2: import("../network/types.js").MutationObject<Omit<{
730
+ $namespace: string;
731
+ name: string;
732
+ body: import("../api/cloudPlatform.js").Tag[];
733
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
734
+ /**
735
+ * Update service control policy name V2
736
+ */
737
+ updateServiceControlPolicyNameV2: import("../network/types.js").MutationObject<Omit<{
738
+ $namespace: string;
739
+ name: string;
740
+ body: string;
741
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
742
+ /**
743
+ * Update service control policy description V2
744
+ */
745
+ updateServiceControlPolicyDescriptionV2: import("../network/types.js").MutationObject<Omit<{
746
+ $namespace: string;
747
+ name: string;
748
+ body: string;
749
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
750
+ /**
751
+ * Update service control policy content V2
752
+ */
753
+ updateServiceControlPolicyContentV2: import("../network/types.js").MutationObject<Omit<{
754
+ $namespace: string;
755
+ name: string;
756
+ jsonNode: import("../api/cloudPlatform.js").JsonNode;
757
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
758
+ /**
759
+ * Get Firewall Manager Policy by name V2
760
+ */
761
+ getFirewallManagerPolicyByNameV2: import("../network/types.js").QueryObject<Omit<{
762
+ $namespace: string;
763
+ name: string;
764
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsPolicy>;
765
+ /**
766
+ * Delete Firewall Manager Policy V2
767
+ */
768
+ deleteFirewallManagerPolicyV2: import("../network/types.js").MutationObject<Omit<{
769
+ $namespace: string;
770
+ name: string;
771
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
772
+ /**
773
+ * List Firewall Manager Policies V2
774
+ */
775
+ listFirewallManagerPoliciesV2: import("../network/types.js").QueryObject<Omit<{
776
+ $namespace: string;
777
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsPolicy[]>;
778
+ /**
779
+ * Create Firewall Manager Policy V2
780
+ */
781
+ createFirewallManagerPolicyV2: import("../network/types.js").MutationObject<Omit<{
782
+ $namespace: string;
783
+ fmsPolicySpec: import("../api/cloudPlatform.js").FmsPolicySpec;
784
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
785
+ /**
786
+ * Get Firewall Manager Associate Admin Account by name V2
787
+ */
788
+ getFirewallManagerAssociateAdminAccountByNameV2: import("../network/types.js").QueryObject<Omit<{
789
+ $namespace: string;
790
+ name: string;
791
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsAssociateAdminAccount>;
792
+ /**
793
+ * Delete Firewall Manager Associate Admin Account V2
794
+ */
795
+ deleteFirewallManagerAssociateAdminAccountV2: import("../network/types.js").MutationObject<Omit<{
796
+ $namespace: string;
797
+ name: string;
798
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
799
+ /**
800
+ * Create Firewall Manager Associate Admin Account V2
801
+ */
802
+ createFirewallManagerAssociateAdminAccountV2: import("../network/types.js").MutationObject<Omit<{
803
+ $namespace: string;
804
+ fmsAssociateAdminAccountSpec: import("../api/cloudPlatform.js").FmsAssociateAdminAccountSpec;
805
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
806
+ /**
807
+ * List Firewall Manager Associate Admin Accounts V2
808
+ */
809
+ listFirewallManagerAssociateAdminAccountsV2: import("../network/types.js").QueryObject<Omit<{
810
+ $namespace: string;
811
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsAssociateAdminAccount[]>;
812
+ /**
813
+ * Get a list of dns records
814
+ */
815
+ listRoles: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role[]>;
816
+ /**
817
+ * Create a role
818
+ */
819
+ createRole: import("../network/types.js").MutationObject<Omit<{
820
+ roleSpec: import("../api/cloudPlatform.js").RoleSpec;
821
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
822
+ /**
823
+ * Get a role by name
824
+ */
825
+ getRole: import("../network/types.js").QueryObject<Omit<{
826
+ name: string;
827
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
828
+ /**
829
+ * Edit a role
830
+ */
831
+ editRole: import("../network/types.js").MutationObject<Omit<{
832
+ roleId: string;
833
+ updateAccountRoleRequest: import("../api/account.js").UpdateAccountRoleRequest;
834
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
835
+ /**
836
+ * Delete a role
837
+ */
838
+ deleteRole: import("../network/types.js").MutationObject<Omit<{
639
839
  name: string;
640
840
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
641
841
  }