@stack-spot/portal-network 0.236.0 → 0.238.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,1311 +5,839 @@ 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;
278
- 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>;
364
- /**
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>;
371
- /**
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>;
378
- /**
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>;
385
- /**
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>;
392
- /**
393
- * Delete a boundary
394
- */
395
- deleteBoundary: import("../network/types.js").MutationObject<Omit<{
396
- foundationId: string;
397
- boundaryId: string;
398
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
399
- /**
400
- * Delete a sso boundary
401
- */
402
- deleteSSOBoundary: import("../network/types.js").MutationObject<Omit<{
403
- foundationId: string;
404
- boundarySsoId: string;
405
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
406
- /**
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>;
414
- /**
415
- * Edit sso boundary tags
416
- */
417
- editSSOBoundaryTags: import("../network/types.js").MutationObject<Omit<{
418
- foundationId: string;
419
- boundarySsoId: string;
420
- 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>;
430
- /**
431
- * Edit sso boundary policy document
432
- */
433
- editSSOBoundaryPolicyDocument: import("../network/types.js").MutationObject<Omit<{
434
- foundationId: string;
435
- boundarySsoId: string;
436
- body: string;
437
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySsoResponse>;
438
- /**
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>;
446
- /**
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>;
454
- /**
455
- * Edit foundation security tags
456
- */
457
- editFoundationSecurityTags: import("../network/types.js").MutationObject<Omit<{
458
- foundationId: string;
459
- body: import("../api/cloudPlatform.js").Tag[];
460
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
461
- /**
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>;
467
- /**
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>;
474
- /**
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>;
482
- /**
483
- * Delete service control policy
484
- */
485
- deleteServiceControlPolicy: import("../network/types.js").MutationObject<Omit<{
486
- foundationId: string;
487
- serviceControlPolicyId: string;
488
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
489
- /**
490
- * Create a service control policy
491
- */
492
- createServiceControlPolicy: import("../network/types.js").MutationObject<Omit<{
493
- foundationId: string;
494
- serviceControlPolicy: import("../api/cloudPlatform.js").ServiceControlPolicy;
495
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
496
- /**
497
- * List projects from a foundation
498
- */
499
- listFoundationProjects: import("../network/types.js").QueryObject<Omit<{
500
- authorization: string;
501
- xAccountId?: string;
502
- foundationId: string;
503
- parentFolderId?: string;
504
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListProjectResponse>;
505
- /**
506
- * Get a list of dns records
507
- */
508
- listRoles: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListRole>;
509
- /**
510
- * Create a role
511
- */
512
- createRole: import("../network/types.js").MutationObject<Omit<{
513
- role: import("../api/cloudPlatform.js").Role;
514
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
515
- /**
516
- * Get a role by name
517
- */
518
- getRole: import("../network/types.js").QueryObject<Omit<{
519
- roleName: string;
520
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
521
- /**
522
- * Edit a role
523
- */
524
- editRole: import("../network/types.js").MutationObject<Omit<{
525
- roleName: string;
526
- role: import("../api/cloudPlatform.js").Role;
527
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Role>;
528
- /**
529
- * Delete a role
530
- */
531
- deleteRole: import("../network/types.js").MutationObject<Omit<{
532
- roleName: string;
533
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
534
- /**
535
- * Get Firewall Manager Policies by Foundation V2
536
- */
537
- getFirewallManagerPolicyByName: import("../network/types.js").QueryObject<Omit<{
538
- $namespace: string;
539
- name: string;
540
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsPolicy>;
541
- /**
542
- * Delete Firewall Manager Policy V2
543
- */
544
- deleteFirewallManagerPolicy: import("../network/types.js").MutationObject<Omit<{
545
- $namespace: string;
546
- name: string;
547
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
548
- /**
549
- * Get Firewall Manager Policies by Foundation V2
550
- */
551
- listFirewallManagerPolicies: import("../network/types.js").QueryObject<Omit<{
552
- $namespace: string;
553
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsPolicy[]>;
554
- /**
555
- * Create Firewall Manager Policy V2
556
- */
557
- createFirewallManagerPolicy: import("../network/types.js").MutationObject<Omit<{
558
- $namespace: string;
559
- fmsPolicySpec: import("../api/cloudPlatform.js").FmsPolicySpec;
560
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
561
- /**
562
- * Get Firewall Manager Associate Admin Account by name V2
563
- */
564
- getFirewallManagerAssociateAdminAccountByName: import("../network/types.js").QueryObject<Omit<{
565
- $namespace: string;
566
- name: string;
567
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsAssociateAdminAccount>;
568
- /**
569
- * Delete Firewall Manager Associate Admin Account V2
570
- */
571
- deleteFirewallManagerAssociateAdminAccount: import("../network/types.js").MutationObject<Omit<{
572
- $namespace: string;
573
- name: string;
574
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
575
- /**
576
- * Create Firewall Manager Associate Admin Account V2
577
- */
578
- createFirewallManagerAssociateAdminAccount: import("../network/types.js").MutationObject<Omit<{
579
- $namespace: string;
580
- fmsAssociateAdminAccountSpec: import("../api/cloudPlatform.js").FmsAssociateAdminAccountSpec;
581
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
582
- /**
583
- * Get Firewall Manager Associate Admin Account by name V2
584
- */
585
- listFirewallManagerAssociateAdminAccount: import("../network/types.js").QueryObject<Omit<{
586
- $namespace: string;
587
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FmsAssociateAdminAccount[]>;
588
- /**
589
- * Create a Identity Store Group V2
590
- */
591
- createIdentityStoreGroup: import("../network/types.js").MutationObject<Omit<{
592
- $namespace: string;
593
- identityStoreGroupSpec: import("../api/cloudPlatform.js").IdentityStoreGroupSpec;
594
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
595
- /**
596
- * List Identity Store Groups by Foundation Namespace V2
597
- */
598
- listIdentityStoreGroup: import("../network/types.js").QueryObject<Omit<{
599
- $namespace: string;
600
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreGroup[]>;
601
- /**
602
- * Delete a Identity Store Group
603
- */
604
- deleteIdentityStoreGroup: import("../network/types.js").MutationObject<Omit<{
605
- $namespace: string;
606
- name: string;
607
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
608
- /**
609
- * List Permission sets by Foundation Namespace
610
- */
611
- listPermissionSets: import("../network/types.js").QueryObject<Omit<{
612
- $namespace: string;
613
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").PermissionSet[]>;
614
- /**
615
- * Create a Identity Store Group
616
- */
617
- createPermissionSet: import("../network/types.js").MutationObject<Omit<{
618
- $namespace: string;
619
- permissionSetSpec: import("../api/cloudPlatform.js").PermissionSetSpec;
620
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
621
- /**
622
- * Delete a Identity Store Group
623
- */
624
- deletePermissionSet: import("../network/types.js").MutationObject<Omit<{
625
- $namespace: string;
626
- name: string;
627
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
628
- /**
629
- * List Account assignment by Foundation Namespace V2
630
- */
631
- listAccountAssignments: import("../network/types.js").QueryObject<Omit<{
632
- $namespace: string;
633
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").AccountAssignment[]>;
634
- /**
635
- * Create a Account Assignment V2
636
- */
637
- createAccountAssignment: import("../network/types.js").MutationObject<Omit<{
638
- $namespace: string;
639
- accountAssignmentSpec: import("../api/cloudPlatform.js").AccountAssignmentSpec;
640
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
641
- /**
642
- * Delete a Account Assignment
643
- */
644
- deleteAccountAssignment: import("../network/types.js").MutationObject<Omit<{
645
- $namespace: string;
646
- name: string;
647
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
648
- /**
649
- * Update a network tags V2
650
- */
651
10
  updateNetworkTagsV2: import("../network/types.js").MutationObject<Omit<{
652
11
  $namespace: string;
653
12
  name: string;
654
13
  body: import("../api/cloudPlatform.js").Tag[];
655
14
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
656
15
  /**
657
- * Update network name
658
- */
16
+ * Update network name V2
17
+ */
659
18
  updateNetworkNameV2: import("../network/types.js").MutationObject<Omit<{
660
19
  $namespace: string;
661
20
  name: string;
662
21
  body: string;
663
22
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
664
23
  /**
665
- * List networks V2
666
- */
24
+ * List networks V2
25
+ */
667
26
  listNetworksV2: import("../network/types.js").QueryObject<Omit<{
668
27
  $namespace: string;
28
+ projectName?: string;
669
29
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Network[]>;
670
30
  /**
671
- * Update network name
672
- */
31
+ * Create network V2
32
+ */
673
33
  createNetworkV2: import("../network/types.js").MutationObject<Omit<{
674
34
  $namespace: string;
675
35
  networkSpec: import("../api/cloudPlatform.js").NetworkSpec;
676
36
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
677
37
  /**
678
- * List networks V2
679
- */
38
+ * Get network V2
39
+ */
680
40
  getNetworkV2: import("../network/types.js").QueryObject<Omit<{
681
41
  $namespace: string;
682
42
  name: string;
683
43
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Network>;
684
44
  /**
685
- * Delete a Network V2
686
- */
45
+ * Delete network V2
46
+ */
687
47
  deleteNetworkV2: import("../network/types.js").MutationObject<Omit<{
688
48
  $namespace: string;
689
49
  name: string;
690
50
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
691
51
  /**
692
- * Update project tags V2
693
- */
52
+ * Update project tags V2
53
+ */
694
54
  updateProjectTagsV2: import("../network/types.js").MutationObject<Omit<{
695
55
  $namespace: string;
696
56
  name: string;
697
57
  body: import("../api/cloudPlatform.js").Tag[];
698
58
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
699
59
  /**
700
- * Update project name V2
701
- */
60
+ * Update project name V2
61
+ */
702
62
  updateProjectNameV2: import("../network/types.js").MutationObject<Omit<{
703
63
  $namespace: string;
704
64
  name: string;
705
65
  body: string;
706
66
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
707
67
  /**
708
- * Update folder tags V2
709
- */
68
+ * Update folder tags V2
69
+ */
710
70
  updateFolderTagsV2: import("../network/types.js").MutationObject<Omit<{
711
71
  $namespace: string;
712
72
  name: string;
713
73
  body: import("../api/cloudPlatform.js").Tag[];
714
74
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
715
75
  /**
716
- * Update folder name V2
717
- */
76
+ * Update folder name V2
77
+ */
718
78
  updateFolderNameV2: import("../network/types.js").MutationObject<Omit<{
719
79
  $namespace: string;
720
80
  name: string;
721
81
  body: string;
722
82
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
723
83
  /**
724
- * Update dns records ttl V2
725
- */
726
- updateDNSRecordsTTLV2: import("../network/types.js").MutationObject<Omit<{
84
+ * Update DNS records TTL V2
85
+ */
86
+ updateDnsRecordsTtlV2: import("../network/types.js").MutationObject<Omit<{
727
87
  $namespace: string;
728
88
  name: string;
729
89
  body: number;
730
90
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
731
91
  /**
732
- * Update dns records V2
733
- */
734
- updateDNSRecordsV2: import("../network/types.js").MutationObject<Omit<{
92
+ * Update DNS records V2
93
+ */
94
+ updateDnsRecordsV2: import("../network/types.js").MutationObject<Omit<{
735
95
  $namespace: string;
736
96
  name: string;
737
97
  body: string[];
738
98
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
739
99
  /**
740
- * Update certificates tags V2
741
- */
100
+ * Update certificate tags V2
101
+ */
742
102
  updateCertificatesTagsV2: import("../network/types.js").MutationObject<Omit<{
743
103
  $namespace: string;
744
104
  name: string;
745
105
  body: import("../api/cloudPlatform.js").Tag[];
746
106
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
747
107
  /**
748
- * List vpns V2
749
- */
750
- listVPNSV2: import("../network/types.js").QueryObject<Omit<{
108
+ * List Vpn's V2
109
+ */
110
+ listVpnV2: import("../network/types.js").QueryObject<Omit<{
751
111
  $namespace: string;
752
112
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Vpn[]>;
753
113
  /**
754
- * Create VPN V2
755
- */
756
- createVPNV2: import("../network/types.js").MutationObject<Omit<{
114
+ * Create Vpn V2
115
+ */
116
+ createVpnV2: import("../network/types.js").MutationObject<Omit<{
757
117
  $namespace: string;
758
118
  vpnSpec: import("../api/cloudPlatform.js").VpnSpec;
759
119
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
760
120
  /**
761
- * Update VPN tags V2
762
- */
763
- updateVPNSTagsV2: import("../network/types.js").MutationObject<Omit<{
121
+ * Update Vpn tags V2
122
+ */
123
+ updateVpnTagsV2: import("../network/types.js").MutationObject<Omit<{
764
124
  $namespace: string;
765
125
  name: string;
766
126
  body: import("../api/cloudPlatform.js").Tag[];
767
127
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
768
128
  /**
769
- * List projects V2
770
- */
771
- listProjectsV2: import("../network/types.js").QueryObject<Omit<{
129
+ * Get Vpn by name V2
130
+ */
131
+ getVpnSByNameV2: import("../network/types.js").QueryObject<Omit<{
772
132
  $namespace: string;
773
- folderRef?: string;
774
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Project[]>;
133
+ name: string;
134
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Vpn>;
775
135
  /**
776
- * Create project V2
777
- */
778
- createProjectV2: import("../network/types.js").MutationObject<Omit<{
136
+ * Delete Vpn V2
137
+ */
138
+ deleteVpnSV2: import("../network/types.js").MutationObject<Omit<{
779
139
  $namespace: string;
780
- projectSpec: import("../api/cloudPlatform.js").ProjectSpec;
140
+ name: string;
781
141
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
782
142
  /**
783
- * List managed policy attachments V2
784
- */
785
- listManagedPolicyAttachmentsV2: import("../network/types.js").QueryObject<Omit<{
143
+ * List projects V2
144
+ */
145
+ listProjectsV2: import("../network/types.js").QueryObject<Omit<{
786
146
  $namespace: string;
787
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ManagedPolicyAttachment[]>;
147
+ folderRef?: string;
148
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Project[]>;
788
149
  /**
789
- * Create managed policy attachment V2
790
- */
791
- createManagedPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
150
+ * Create project V2
151
+ */
152
+ createProjectV2: import("../network/types.js").MutationObject<Omit<{
792
153
  $namespace: string;
793
- managedPolicyAttachmentSpec: import("../api/cloudPlatform.js").ManagedPolicyAttachmentSpec;
154
+ projectSpec: import("../api/cloudPlatform.js").ProjectSpec;
794
155
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
795
156
  /**
796
- * List identity store users V2
797
- */
798
- listIdentityStoreUsersV2: import("../network/types.js").QueryObject<Omit<{
157
+ * Get project by name V2
158
+ */
159
+ getProjectByNameV2: import("../network/types.js").QueryObject<Omit<{
799
160
  $namespace: string;
800
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreUser[]>;
161
+ name: string;
162
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Project>;
801
163
  /**
802
- * Create identity store users V2
803
- */
804
- createIdentityStoreUsersV2: import("../network/types.js").MutationObject<Omit<{
164
+ * Delete project V2
165
+ */
166
+ deleteProjectV2: import("../network/types.js").MutationObject<Omit<{
805
167
  $namespace: string;
806
- identityStoreUserSpec: import("../api/cloudPlatform.js").IdentityStoreUserSpec;
168
+ name: string;
807
169
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
808
170
  /**
809
- * List identity store memberships V2
810
- */
811
- listIdentityStoreMembershipsV2: import("../network/types.js").QueryObject<Omit<{
171
+ * List managed policy attachments V2
172
+ */
173
+ listManagedPolicyAttachmentsV2: import("../network/types.js").QueryObject<Omit<{
812
174
  $namespace: string;
813
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreMembership[]>;
175
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ManagedPolicyAttachment[]>;
814
176
  /**
815
- * Create identity store memberships V2
816
- */
817
- createIdentityStoreMembershipsV2: import("../network/types.js").MutationObject<Omit<{
177
+ * Create managed policy attachment V2
178
+ */
179
+ createManagedPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
818
180
  $namespace: string;
819
- identityStoreMembershipSpec: import("../api/cloudPlatform.js").IdentityStoreMembershipSpec;
181
+ managedPolicyAttachmentSpec: import("../api/cloudPlatform.js").ManagedPolicyAttachmentSpec;
820
182
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
821
183
  /**
822
- * List identity centers V2
823
- */
824
- listIdentityCentersV2: import("../network/types.js").QueryObject<Omit<{
184
+ * Get managed policy attachment by name V2
185
+ */
186
+ getManagedPolicyAttachmentByNameV2: import("../network/types.js").QueryObject<Omit<{
825
187
  $namespace: string;
826
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityCenter[]>;
188
+ name: string;
189
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ManagedPolicyAttachment>;
827
190
  /**
828
- * Create identity center V2
829
- */
830
- createIdentityCenterV2: import("../network/types.js").MutationObject<Omit<{
191
+ * Delete managed policy attachment V2
192
+ */
193
+ deleteManagedPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
831
194
  $namespace: string;
832
- identityCenterSpec: import("../api/cloudPlatform.js").IdentityCenterSpec;
195
+ name: string;
833
196
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
834
197
  /**
835
- * List folders V2
836
- */
837
- listFoldersV2: import("../network/types.js").QueryObject<Omit<{
198
+ * List identity store users V2
199
+ */
200
+ listIdentityStoreUsersV2: import("../network/types.js").QueryObject<Omit<{
838
201
  $namespace: string;
839
- folderName?: string;
840
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Folder[]>;
202
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreUser[]>;
841
203
  /**
842
- * Create folders V2
843
- */
844
- createFoldersV2: import("../network/types.js").MutationObject<Omit<{
204
+ * Create identity store user V2
205
+ */
206
+ createIdentityStoreUsersV2: import("../network/types.js").MutationObject<Omit<{
845
207
  $namespace: string;
846
- folderSpec: import("../api/cloudPlatform.js").FolderSpec;
208
+ identityStoreUserSpec: import("../api/cloudPlatform.js").IdentityStoreUserSpec;
847
209
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
848
210
  /**
849
- * List firewalls V2
850
- */
851
- listFirewallsV2: import("../network/types.js").QueryObject<Omit<{
211
+ * Get identity store user by name V2
212
+ */
213
+ getIdentityStoreUserByNameV2: import("../network/types.js").QueryObject<Omit<{
852
214
  $namespace: string;
853
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Firewall[]>;
215
+ name: string;
216
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreUser>;
854
217
  /**
855
- * Create firewall V2
856
- */
857
- createFirewallV2: import("../network/types.js").MutationObject<Omit<{
218
+ * Delete identity store user V2
219
+ */
220
+ deleteIdentityStoreUserV2: import("../network/types.js").MutationObject<Omit<{
858
221
  $namespace: string;
859
- firewallSpec: import("../api/cloudPlatform.js").FirewallSpec;
222
+ name: string;
860
223
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
861
224
  /**
862
- * List DNS zones V2
863
- */
864
- listDNSZonesV2: import("../network/types.js").QueryObject<Omit<{
225
+ * List identity store memberships V2
226
+ */
227
+ listIdentityStoreMembershipsV2: import("../network/types.js").QueryObject<Omit<{
865
228
  $namespace: string;
866
- $type: "PUBLIC" | "PRIVATE";
867
- projectName?: string;
868
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZone[]>;
229
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreMembership[]>;
869
230
  /**
870
- * Create DNS zones V2
871
- */
872
- createDNSZonesV2: import("../network/types.js").MutationObject<Omit<{
231
+ * Create identity store membership V2
232
+ */
233
+ createIdentityStoreMembershipsV2: import("../network/types.js").MutationObject<Omit<{
873
234
  $namespace: string;
874
- dnsZoneSpec: import("../api/cloudPlatform.js").DnsZoneSpec;
235
+ identityStoreMembershipSpec: import("../api/cloudPlatform.js").IdentityStoreMembershipSpec;
875
236
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
876
237
  /**
877
- * List DNS records V2
878
- */
879
- listDNSRecordsV2: import("../network/types.js").QueryObject<Omit<{
238
+ * Get identity store membership by name V2
239
+ */
240
+ getIdentityStoreMembershipByNameV2: import("../network/types.js").QueryObject<Omit<{
880
241
  $namespace: string;
881
- dnsZoneName?: string;
882
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecord[]>;
242
+ name: string;
243
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreMembership>;
883
244
  /**
884
- * Create DNS records V2
885
- */
886
- createDNSRecordsV2: import("../network/types.js").MutationObject<Omit<{
245
+ * Delete identity store membership V2
246
+ */
247
+ deleteIdentityStoreMembershipV2: import("../network/types.js").MutationObject<Omit<{
887
248
  $namespace: string;
888
- dnsRecordSpec: import("../api/cloudPlatform.js").DnsRecordSpec;
249
+ name: string;
889
250
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
890
251
  /**
891
- * List Customer Policy Attachments V2
892
- */
893
- listCustomerPolicyAttachmentsV2: import("../network/types.js").QueryObject<Omit<{
252
+ * List identity store groups V2
253
+ */
254
+ listIdentityStoreGroupsV2: import("../network/types.js").QueryObject<Omit<{
894
255
  $namespace: string;
895
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CustomerPolicyAttachment[]>;
256
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreGroup[]>;
896
257
  /**
897
- * Create Customer Policy Attachments V2
898
- */
899
- createCustomerPolicyAttachmentsV2: import("../network/types.js").MutationObject<Omit<{
258
+ * Create identity store group V2
259
+ */
260
+ createIdentityStoreGroupV2: import("../network/types.js").MutationObject<Omit<{
900
261
  $namespace: string;
901
- customerPolicyAttachmentSpec: import("../api/cloudPlatform.js").CustomerPolicyAttachmentSpec;
262
+ identityStoreGroupSpec: import("../api/cloudPlatform.js").IdentityStoreGroupSpec;
902
263
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
903
264
  /**
904
- * List CIDRS V2
905
- */
906
- listCIDRSV2: import("../network/types.js").QueryObject<Omit<{
907
- $namespace: string;
908
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Cidr[]>;
909
- /**
910
- * Create CIDRS V2
911
- */
912
- createCIDRSV2: import("../network/types.js").MutationObject<Omit<{
265
+ * Get identity store group by name V2
266
+ */
267
+ getIdentityStoreGroupsByNameV2: import("../network/types.js").QueryObject<Omit<{
913
268
  $namespace: string;
914
- cidrSpec: import("../api/cloudPlatform.js").CidrSpec;
915
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
269
+ name: string;
270
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreGroup>;
916
271
  /**
917
- * Update CIDRS tags V2
918
- */
919
- upsertCIDRTagsV2: import("../network/types.js").MutationObject<Omit<{
272
+ * Delete identity store group V2
273
+ */
274
+ deleteIdentityStoreGroupV2: import("../network/types.js").MutationObject<Omit<{
920
275
  $namespace: string;
921
276
  name: string;
922
- body: import("../api/cloudPlatform.js").Tag[];
923
277
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
924
278
  /**
925
- * List certificates V2
926
- */
927
- listCertificatesV2: import("../network/types.js").QueryObject<Omit<{
928
- $namespace: string;
929
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Certificate[]>;
930
- /**
931
- * Create certificates V2
932
- */
933
- createCertificatesV2: import("../network/types.js").MutationObject<Omit<{
279
+ * List identity centers V2
280
+ */
281
+ listIdentityCentersV2: import("../network/types.js").QueryObject<Omit<{
934
282
  $namespace: string;
935
- certificateSpec: import("../api/cloudPlatform.js").CertificateSpec;
936
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
937
- /**
938
- * List OIDC V2
939
- */
940
- listOIDCV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string>;
283
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityCenter[]>;
941
284
  /**
942
- * Update DNS tags V2
943
- */
944
- upsertDNSTagsV2: import("../network/types.js").MutationObject<Omit<{
285
+ * Create identity center V2
286
+ */
287
+ createIdentityCenterV2: import("../network/types.js").MutationObject<Omit<{
945
288
  $namespace: string;
946
- name: string;
947
- body: import("../api/cloudPlatform.js").Tag[];
289
+ identityCenterSpec: import("../api/cloudPlatform.js").IdentityCenterSpec;
948
290
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
949
291
  /**
950
- * GET VPNS by name V2
951
- */
952
- getVPNSByNameV2: import("../network/types.js").QueryObject<Omit<{
292
+ * Get identity center by name V2
293
+ */
294
+ getIdentityCentersByNameV2: import("../network/types.js").QueryObject<Omit<{
953
295
  $namespace: string;
954
296
  name: string;
955
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Vpn>;
297
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityCenter>;
956
298
  /**
957
- * Delete VPNS V2
958
- */
959
- deleteVPNSV2: import("../network/types.js").MutationObject<Omit<{
299
+ * Delete identity center V2
300
+ */
301
+ deleteIdentityCentersV2: import("../network/types.js").MutationObject<Omit<{
960
302
  $namespace: string;
961
303
  name: string;
962
304
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
963
305
  /**
964
- * GET Project by name V2
965
- */
966
- getProjectByNameV2: import("../network/types.js").QueryObject<Omit<{
306
+ * List permission sets V2
307
+ */
308
+ listPermissionSetsV2: import("../network/types.js").QueryObject<Omit<{
967
309
  $namespace: string;
968
- name: string;
969
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Project>;
310
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").PermissionSet[]>;
970
311
  /**
971
- * Delete Project V2
972
- */
973
- deleteProjectV2: import("../network/types.js").MutationObject<Omit<{
312
+ * Create permission set V2
313
+ */
314
+ createPermissionSetV2: import("../network/types.js").MutationObject<Omit<{
974
315
  $namespace: string;
975
- name: string;
316
+ permissionSetSpec: import("../api/cloudPlatform.js").PermissionSetSpec;
976
317
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
977
318
  /**
978
- * GET Permission set by name V2
979
- */
319
+ * Get permission set by name V2
320
+ */
980
321
  getPermissionSetByNameV2: import("../network/types.js").QueryObject<Omit<{
981
322
  $namespace: string;
982
323
  name: string;
983
324
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").PermissionSet>;
984
325
  /**
985
- * Get managed policy attachment by name V2
986
- */
987
- getManagedPolicyAttachmentByNameV2: import("../network/types.js").QueryObject<Omit<{
988
- $namespace: string;
989
- name: string;
990
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ManagedPolicyAttachment>;
991
- /**
992
- * Delete managed policy attachment V2
993
- */
994
- deleteManagedPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
326
+ * Delete permission set V2
327
+ */
328
+ deletePermissionSetV2: import("../network/types.js").MutationObject<Omit<{
995
329
  $namespace: string;
996
330
  name: string;
997
331
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
998
332
  /**
999
- * Get identity store user by name V2
1000
- */
1001
- getIdentityStoreUserByNameV2: import("../network/types.js").QueryObject<Omit<{
333
+ * List account assignments V2
334
+ */
335
+ listAccountAssignmentsV2: import("../network/types.js").QueryObject<Omit<{
1002
336
  $namespace: string;
1003
- name: string;
1004
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreUser>;
337
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").AccountAssignment[]>;
1005
338
  /**
1006
- * Delete identity store user V2
1007
- */
1008
- deleteIdentityStoreUserV2: import("../network/types.js").MutationObject<Omit<{
339
+ * Create account assignment V2
340
+ */
341
+ createAccountAssignmentV2: import("../network/types.js").MutationObject<Omit<{
1009
342
  $namespace: string;
1010
- name: string;
343
+ accountAssignmentSpec: import("../api/cloudPlatform.js").AccountAssignmentSpec;
1011
344
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1012
345
  /**
1013
- * Get identity store membership by name V2
1014
- */
1015
- getIdentityStoreMembershipByNameV2: import("../network/types.js").QueryObject<Omit<{
346
+ * Get account assignment by name V2
347
+ */
348
+ getAccountAssignmentsByNameV2: import("../network/types.js").QueryObject<Omit<{
1016
349
  $namespace: string;
1017
350
  name: string;
1018
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreMembership>;
351
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").AccountAssignment>;
1019
352
  /**
1020
- * Delete identity store membership V2
1021
- */
1022
- deleteIdentityStoreMembershipV2: import("../network/types.js").MutationObject<Omit<{
353
+ * Delete account assignment V2
354
+ */
355
+ deleteAccountAssignmentV2: import("../network/types.js").MutationObject<Omit<{
1023
356
  $namespace: string;
1024
357
  name: string;
1025
358
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1026
359
  /**
1027
- * Get identity store groups by name V2
1028
- */
1029
- getIdentityStoreGroupsByNameV2: import("../network/types.js").QueryObject<Omit<{
1030
- $namespace: string;
1031
- name: string;
1032
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityStoreGroup>;
1033
- /**
1034
- * Get identity centers by name V2
1035
- */
1036
- getIdentityCentersByNameV2: import("../network/types.js").QueryObject<Omit<{
1037
- $namespace: string;
1038
- name: string;
1039
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").IdentityCenter>;
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[]>;
1040
366
  /**
1041
- * Delete identity centers V2
1042
- */
1043
- deleteIdentityCentersV2: import("../network/types.js").MutationObject<Omit<{
367
+ * Create folder V2
368
+ */
369
+ createFoldersV2: import("../network/types.js").MutationObject<Omit<{
1044
370
  $namespace: string;
1045
- name: string;
371
+ folderSpec: import("../api/cloudPlatform.js").FolderSpec;
1046
372
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1047
373
  /**
1048
- * Get folder by name V2
1049
- */
374
+ * Get folder by name V2
375
+ */
1050
376
  getFolderByNameV2: import("../network/types.js").QueryObject<Omit<{
1051
377
  $namespace: string;
1052
378
  name: string;
1053
379
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Folder>;
1054
380
  /**
1055
- * Delete folder V2
1056
- */
381
+ * Delete folder V2
382
+ */
1057
383
  deleteFolderV2: import("../network/types.js").MutationObject<Omit<{
1058
384
  $namespace: string;
1059
385
  name: string;
1060
386
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1061
387
  /**
1062
- * Get firewall by name V2
1063
- */
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
+ */
1064
403
  getFirewallByNameV2: import("../network/types.js").QueryObject<Omit<{
1065
404
  $namespace: string;
1066
405
  name: string;
1067
406
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Firewall>;
1068
407
  /**
1069
- * Delete firewall V2
1070
- */
408
+ * Delete firewall V2
409
+ */
1071
410
  deleteFirewallV2: import("../network/types.js").MutationObject<Omit<{
1072
411
  $namespace: string;
1073
412
  name: string;
1074
413
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1075
414
  /**
1076
- * Get DNS zone by name V2
1077
- */
415
+ * List DNS zones V2
416
+ */
417
+ listDNSZonesV2: import("../network/types.js").QueryObject<Omit<{
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
+ */
1078
432
  getDNSZoneByNameV2: import("../network/types.js").QueryObject<Omit<{
1079
433
  $namespace: string;
1080
434
  name: string;
1081
435
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZone>;
1082
436
  /**
1083
- * Delete DNS zone V2
1084
- */
437
+ * Delete DNS zone V2
438
+ */
1085
439
  deleteDNSZoneV2: import("../network/types.js").MutationObject<Omit<{
1086
440
  $namespace: string;
1087
441
  name: string;
1088
442
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1089
443
  /**
1090
- * Get DNS record by name V2
1091
- */
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
+ */
1092
468
  getDNSRecordByNameV2: import("../network/types.js").QueryObject<Omit<{
1093
469
  $namespace: string;
1094
470
  name: string;
1095
471
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecord>;
1096
472
  /**
1097
- * Delete DNS record V2
1098
- */
473
+ * Delete DNS record V2
474
+ */
1099
475
  deleteDNSRecordV2: import("../network/types.js").MutationObject<Omit<{
1100
476
  $namespace: string;
1101
477
  name: string;
1102
478
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1103
479
  /**
1104
- * Get Customer Policy Attachment by name V2
1105
- */
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
+ */
1106
495
  getCustomerPolicyAttachmentV2: import("../network/types.js").QueryObject<Omit<{
1107
496
  $namespace: string;
1108
497
  name: string;
1109
498
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CustomerPolicyAttachment>;
1110
499
  /**
1111
- * Delete Customer Policy attachment V2
1112
- */
500
+ * Delete customer policy attachment V2
501
+ */
1113
502
  deleteCustomerPolicyAttachmentV2: import("../network/types.js").MutationObject<Omit<{
1114
503
  $namespace: string;
1115
504
  name: string;
1116
505
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1117
506
  /**
1118
- * Get CIDR by name V2
1119
- */
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
+ */
1120
522
  getCIDRByNameV2: import("../network/types.js").QueryObject<Omit<{
1121
523
  $namespace: string;
1122
524
  name: string;
1123
525
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Cidr>;
1124
526
  /**
1125
- * Delete CIDR V2
1126
- */
527
+ * Delete CIDR V2
528
+ */
1127
529
  deleteCIDRV2: import("../network/types.js").MutationObject<Omit<{
1128
530
  $namespace: string;
1129
531
  name: string;
1130
532
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1131
533
  /**
1132
- * Get Certificate by name V2
1133
- */
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
+ */
1134
557
  getCertificateByNameV2: import("../network/types.js").QueryObject<Omit<{
1135
558
  $namespace: string;
1136
559
  name: string;
1137
560
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Certificate>;
1138
561
  /**
1139
- * Delete Certificate V2
1140
- */
562
+ * Delete certificate V2
563
+ */
1141
564
  deleteCertificateV2: import("../network/types.js").MutationObject<Omit<{
1142
565
  $namespace: string;
1143
566
  name: string;
1144
567
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1145
568
  /**
1146
- * Get Account Assignments by name V2
1147
- */
1148
- getAccountAssignmentsByNameV2: import("../network/types.js").QueryObject<Omit<{
1149
- $namespace: string;
1150
- name: string;
1151
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").AccountAssignment>;
1152
- /**
1153
- * Get OIDC
1154
- */
569
+ * Get OIDC V2
570
+ */
1155
571
  getOIDCV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string>;
1156
572
  /**
1157
- * Get Finops
1158
- */
1159
- getFinopsV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string>;
573
+ * List OIDC V2
574
+ */
575
+ listOIDCV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string>;
1160
576
  /**
1161
- * Create Foundation V2
1162
- */
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
+ */
1163
585
  createFoundationV2: import("../network/types.js").MutationObject<Omit<{
1164
586
  foundationSpec: import("../api/cloudPlatform.js").FoundationSpec;
1165
587
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1166
588
  /**
1167
- * List Foundations V2
1168
- */
589
+ * List foundations V2
590
+ */
1169
591
  listFoundationsV2: import("../network/types.js").QueryObject<Omit<import("@oazapfts/runtime").RequestOpts | undefined, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Foundation[]>;
1170
592
  /**
1171
- * Get Foundation V2
1172
- */
593
+ * Get foundation V2
594
+ */
1173
595
  getFoundationV2: import("../network/types.js").QueryObject<Omit<{
1174
596
  $namespace: string;
1175
597
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Foundation>;
1176
598
  /**
1177
- * List Boundaries V2
1178
- */
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
+ */
1179
608
  listBoundariesV2: import("../network/types.js").QueryObject<Omit<{
1180
609
  $namespace: string;
1181
610
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Boundary[]>;
1182
611
  /**
1183
- * Create Boundary V2
1184
- */
612
+ * Create boundary V2
613
+ */
1185
614
  createBoundaryV2: import("../network/types.js").MutationObject<Omit<{
1186
615
  $namespace: string;
1187
616
  boundarySpec: import("../api/cloudPlatform.js").BoundarySpec;
1188
617
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1189
618
  /**
1190
- * Get Boundary by name V2
1191
- */
619
+ * Get boundary by name V2
620
+ */
1192
621
  getBoundaryByNameV2: import("../network/types.js").QueryObject<Omit<{
1193
622
  $namespace: string;
1194
623
  name: string;
1195
624
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Boundary>;
1196
625
  /**
1197
- * Delete Boundary V2
1198
- */
626
+ * Delete boundary V2
627
+ */
1199
628
  deleteBoundaryV2: import("../network/types.js").MutationObject<Omit<{
1200
629
  $namespace: string;
1201
630
  name: string;
1202
631
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1203
632
  /**
1204
- * Update Boundary tags V2
1205
- */
633
+ * Update boundary tags V2
634
+ */
1206
635
  updateBoundaryTagsV2: import("../network/types.js").MutationObject<Omit<{
1207
636
  $namespace: string;
1208
637
  name: string;
1209
638
  body: import("../api/cloudPlatform.js").Tag[];
1210
639
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1211
640
  /**
1212
- * List Boundary SSOs V2
1213
- */
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
+ */
1214
651
  listBoundarySsosV2: import("../network/types.js").QueryObject<Omit<{
1215
652
  $namespace: string;
1216
653
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySso[]>;
1217
654
  /**
1218
- * Create Boundary SSO V2
1219
- */
655
+ * Create boundary SSO V2
656
+ */
1220
657
  createBoundarySsoV2: import("../network/types.js").MutationObject<Omit<{
1221
658
  $namespace: string;
1222
659
  boundarySsoSpec: import("../api/cloudPlatform.js").BoundarySsoSpec;
1223
660
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1224
661
  /**
1225
- * Get Boundary SSO by name V2
1226
- */
662
+ * Get boundary SSO by name V2
663
+ */
1227
664
  getBoundarySsoByNameV2: import("../network/types.js").QueryObject<Omit<{
1228
665
  $namespace: string;
1229
666
  name: string;
1230
667
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").BoundarySso>;
1231
668
  /**
1232
- * Delete Boundary SSO V2
1233
- */
669
+ * Delete boundary SSO V2
670
+ */
1234
671
  deleteBoundarySsoV2: import("../network/types.js").MutationObject<Omit<{
1235
672
  $namespace: string;
1236
673
  name: string;
1237
674
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1238
675
  /**
1239
- * Update Boundary SSO tags V2
1240
- */
676
+ * Update boundary SSO tags V2
677
+ */
1241
678
  updateBoundarySsoTagsV2: import("../network/types.js").MutationObject<Omit<{
1242
679
  $namespace: string;
1243
680
  name: string;
1244
681
  body: import("../api/cloudPlatform.js").Tag[];
1245
682
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1246
683
  /**
1247
- * List Service Control Policies V2
1248
- */
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
+ */
1249
694
  listServiceControlPoliciesV2: import("../network/types.js").QueryObject<Omit<{
1250
695
  $namespace: string;
1251
696
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy[]>;
1252
697
  /**
1253
- * Create Service Control Policy V2
1254
- */
698
+ * Create service control policy V2
699
+ */
1255
700
  createServiceControlPolicyV2: import("../network/types.js").MutationObject<Omit<{
1256
701
  $namespace: string;
1257
702
  serviceControlPolicySpec: import("../api/cloudPlatform.js").ServiceControlPolicySpec;
1258
703
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1259
704
  /**
1260
- * Get Service Control Policy by name V2
1261
- */
705
+ * Get service control policy by name V2
706
+ */
1262
707
  getServiceControlPolicyByNameV2: import("../network/types.js").QueryObject<Omit<{
1263
708
  $namespace: string;
1264
709
  name: string;
1265
710
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ServiceControlPolicy>;
1266
711
  /**
1267
- * Delete Service Control Policy V2
1268
- */
712
+ * Delete service control policy V2
713
+ */
1269
714
  deleteServiceControlPolicyV2: import("../network/types.js").MutationObject<Omit<{
1270
715
  $namespace: string;
1271
716
  name: string;
1272
717
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1273
718
  /**
1274
- * Update Service Control Policy target V2
1275
- */
719
+ * Update service control policy target V2
720
+ */
1276
721
  updateServiceControlPolicyTargetV2: import("../network/types.js").MutationObject<Omit<{
1277
722
  $namespace: string;
1278
723
  name: string;
1279
724
  target: import("../api/cloudPlatform.js").Target;
1280
725
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1281
726
  /**
1282
- * Update Service Control Policy tags V2
1283
- */
727
+ * Update service control policy tags V2
728
+ */
1284
729
  updateServiceControlPolicyTagsV2: import("../network/types.js").MutationObject<Omit<{
1285
730
  $namespace: string;
1286
731
  name: string;
1287
732
  body: import("../api/cloudPlatform.js").Tag[];
1288
733
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1289
734
  /**
1290
- * Update Service Control Policy name V2
1291
- */
735
+ * Update service control policy name V2
736
+ */
1292
737
  updateServiceControlPolicyNameV2: import("../network/types.js").MutationObject<Omit<{
1293
738
  $namespace: string;
1294
739
  name: string;
1295
740
  body: string;
1296
741
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1297
742
  /**
1298
- * Update Service Control Policy description V2
1299
- */
743
+ * Update service control policy description V2
744
+ */
1300
745
  updateServiceControlPolicyDescriptionV2: import("../network/types.js").MutationObject<Omit<{
1301
746
  $namespace: string;
1302
747
  name: string;
1303
748
  body: string;
1304
749
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1305
750
  /**
1306
- * Update Service Control Policy content V2
1307
- */
751
+ * Update service control policy content V2
752
+ */
1308
753
  updateServiceControlPolicyContentV2: import("../network/types.js").MutationObject<Omit<{
1309
754
  $namespace: string;
1310
755
  name: string;
1311
756
  jsonNode: import("../api/cloudPlatform.js").JsonNode;
1312
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<{
839
+ name: string;
840
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
1313
841
  }
1314
842
  export declare const cloudPlatformClient: CloudPlatformClient;
1315
843
  export {};