@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.
@@ -1,5 +1,6 @@
1
1
  import { HttpError } from '@oazapfts/runtime'
2
2
  import { getApiAddresses } from '../api-addresses'
3
+ import { roleControllerUpdateAccountRole } from '../api/account'
3
4
  import {
4
5
  accountAssignmentControllerCreate,
5
6
  accountAssignmentControllerDelete,
@@ -9,11 +10,13 @@ import {
9
10
  boundaryControllerDelete,
10
11
  boundaryControllerGet,
11
12
  boundaryControllerList,
13
+ boundaryControllerPutPolicyDocument,
12
14
  boundaryControllerPutTags,
13
15
  boundarySsoControllerCreate,
14
16
  boundarySsoControllerDelete,
15
17
  boundarySsoControllerGet,
16
18
  boundarySsoControllerList,
19
+ boundarySsoControllerPutPolicyDocument,
17
20
  boundarySsoControllerPutTags,
18
21
  certificateControllerCreate,
19
22
  certificateControllerDelete,
@@ -25,36 +28,11 @@ import {
25
28
  cidrControllerGet,
26
29
  cidrControllerList,
27
30
  cidrControllerPutTags,
28
- createBoundary,
29
- createBoundarySso,
30
- createCertificate,
31
- createCidr,
32
- createDnsRecord,
33
- createDnsZone,
34
- createFolder,
35
- createFoundation,
36
- createNetwork,
37
- createProject,
38
- createRole,
39
- createServiceControlPolicy,
40
- createVpn,
41
31
  customerPolicyAttachmentControllerCreate,
42
32
  customerPolicyAttachmentControllerDelete,
43
33
  customerPolicyAttachmentControllerGet,
44
34
  customerPolicyAttachmentControllerList,
45
35
  defaults,
46
- deleteBoundary,
47
- deleteBoundarySso,
48
- deleteCertificate,
49
- deleteCidr,
50
- deleteDnsRecord,
51
- deleteDnsZone,
52
- deleteFolder,
53
- deleteNetwork,
54
- deleteProject,
55
- deleteRole,
56
- deleteServiceControlPolicy,
57
- deleteVpn,
58
36
  dnsRecordControllerCreate,
59
37
  dnsRecordControllerDelete,
60
38
  dnsRecordControllerGet,
@@ -88,18 +66,7 @@ import {
88
66
  foundationControllerCreate,
89
67
  foundationControllerGet,
90
68
  foundationControllerList,
91
- getBoundary,
92
- getBoundarySso,
93
- getCertificate,
94
- getFolder,
95
- getFolderTags,
96
- getFoundation,
97
- getNetwork,
98
- getOidc,
99
- getProject,
100
- getRole,
101
- getServiceControlPolicy,
102
- getVpnConfiguration,
69
+ foundationControllerPutSecProjectTags,
103
70
  identityCenterControllerCreate,
104
71
  identityCenterControllerDelete,
105
72
  identityCenterControllerGet,
@@ -116,18 +83,6 @@ import {
116
83
  identityStoreUserControllerDelete,
117
84
  identityStoreUserControllerGet,
118
85
  identityStoreUserControllerList,
119
- listBoundary,
120
- listBoundarySso,
121
- listCertificates,
122
- listCidr,
123
- listDnsRecord,
124
- listDnsZone,
125
- listFoundations,
126
- listNetwork,
127
- listProject,
128
- listRole,
129
- listServiceControlPolicy,
130
- listVpns,
131
86
  managedPolicyAttachmentControllerCreate,
132
87
  managedPolicyAttachmentControllerDelete,
133
88
  managedPolicyAttachmentControllerGet,
@@ -135,7 +90,7 @@ import {
135
90
  networkControllerCreate,
136
91
  networkControllerDelete,
137
92
  networkControllerGet,
138
- networkControllerList,
93
+ networkControllerListBy,
139
94
  networkControllerPutNetworkName,
140
95
  networkControllerPutTags,
141
96
  oidcControllerGet,
@@ -149,22 +104,10 @@ import {
149
104
  projectControllerListByFolderRef,
150
105
  projectControllerPutName,
151
106
  projectControllerPutTags,
152
- putBoundaryDescription,
153
- putBoundaryPolicyDocument,
154
- putBoundarySsoDescription,
155
- putBoundarySsoPolicyDocument,
156
- putBoundarySsoTags,
157
- putBoundaryTags,
158
- putCertificateTags,
159
- putCidrTags,
160
- putDnsZoneTags,
161
- putFolderTags,
162
- putFoundationSecProjectTags,
163
- putNetworkTags,
164
- putProjectTags,
165
- putRole,
166
- putServiceControlPolicy,
167
- putVpnTags,
107
+ roleControllerCreate,
108
+ roleControllerDelete,
109
+ roleControllerGet,
110
+ roleControllerList,
168
111
  serviceControlPolicyControllerCreate,
169
112
  serviceControlPolicyControllerDelete,
170
113
  serviceControlPolicyControllerGet,
@@ -194,828 +137,608 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
194
137
  protected buildStackSpotError(error: HttpError): StackspotAPIError {
195
138
  return new DefaultAPIError(error.data, error.status, scfDictionary, error.headers)
196
139
  }
140
+
197
141
  /**
198
- * List foundations
199
- */
200
- listFoundations = this.query(removeAuthorizationParam(listFoundations))
201
- /**
202
- * Get a foundation by id
203
- */
204
- foundation = this.query(removeAuthorizationParam(getFoundation))
205
- /**
206
- * Get list of foundations folders or folder by id
207
- */
208
- getFolder = this.query(removeAuthorizationParam(getFolder))
209
- /**
210
- * Create a foundation
211
- */
212
- createFoundation = this.mutation(removeAuthorizationParam(createFoundation))
213
- /**
214
- * Create a foundation folder
215
- */
216
- createFolder = this.mutation(removeAuthorizationParam(createFolder))
217
- /**
218
- * Get a list of dns zones
219
- */
220
- listDnsZones = this.query(removeAuthorizationParam(listDnsZone))
221
- /**
222
- * Create a dns zone
223
- */
224
- createDnsZone = this.mutation(removeAuthorizationParam(createDnsZone))
225
- /**
226
- * Get a list of cidrs
227
- */
228
- listCidrs = this.query(removeAuthorizationParam(listCidr))
229
- /**
230
- * Create a cidr
231
- */
232
- createCidr = this.mutation(removeAuthorizationParam(createCidr))
233
- /**
234
- * Get a list of certificates
235
- */
236
- listCertificates = this.query(removeAuthorizationParam(listCertificates))
237
- /**
238
- * Get a certificate by id
239
- */
240
- getCertificate = this.query(removeAuthorizationParam(getCertificate))
241
- /**
242
- * Create a certificate
243
- */
244
- createCertificate = this.mutation(removeAuthorizationParam(createCertificate))
245
- /**
246
- * Create a project
247
- */
248
- createProject = this.mutation(removeAuthorizationParam(createProject))
249
- /**
250
- * Get a project by id
251
- */
252
- getProjectById = this.query(removeAuthorizationParam(getProject))
253
- /**
254
- * Get a list of dns records
255
- */
256
- listDnsRecords = this.query(removeAuthorizationParam(listDnsRecord))
257
- /**
258
- * Create a dns record
259
- */
260
- createDnsRecord = this.mutation(removeAuthorizationParam(createDnsRecord))
261
- /**
262
- * Get a list of networks
263
- */
264
- listNetworks = this.query(removeAuthorizationParam(listNetwork))
265
- /**
266
- * Create a network
267
- */
268
- createNetwork = this.mutation(removeAuthorizationParam(createNetwork))
269
- /**
270
- * Get a list of vpn's
271
- */
272
- listVpns = this.query(removeAuthorizationParam(listVpns))
273
- /**
274
- * Get vpn configuration
275
- */
276
- getVpnConfiguration = this.query(removeAuthorizationParam(getVpnConfiguration))
277
- /**
278
- * Create a vpn
279
- */
280
- createVpn = this.mutation(removeAuthorizationParam(createVpn))
281
- /**
282
- * Get a network details
142
+ * Update network tags V2
283
143
  */
284
- getNetworkById = this.query(removeAuthorizationParam(getNetwork))
285
- /**
286
- * Get a list of tags in folder
287
- */
288
- getFolderTags = this.query(removeAuthorizationParam(getFolderTags))
289
- /**
290
- * Update folder tags
291
- */
292
- updateFolderTags = this.mutation(removeAuthorizationParam(putFolderTags))
293
- /**
294
- * Update project tags
295
- */
296
- updateProjectTags = this.mutation(removeAuthorizationParam(putProjectTags))
297
- /**
298
- * Update network tags
299
- */
300
- updateNetworkTags = this.mutation(removeAuthorizationParam(putNetworkTags))
301
- /**
302
- * Update cidr tags
303
- */
304
- updateCidrTags = this.mutation(removeAuthorizationParam(putCidrTags))
305
- /**
306
- * Update dns zone tags
307
- */
308
- updateDnsZoneTags = this.mutation(removeAuthorizationParam(putDnsZoneTags))
309
- /**
310
- * Update certificate tags
311
- */
312
- updateCertificateTags = this.mutation(removeAuthorizationParam(putCertificateTags))
313
- /**
314
- * Update vpn tags
315
- */
316
- updateVpnTags = this.mutation(removeAuthorizationParam(putVpnTags))
317
- /**
318
- * Delete a folder
319
- */
320
- deleteFolder = this.mutation(removeAuthorizationParam(deleteFolder))
321
- /**
322
- * Delete a project
323
- */
324
- deleteProject = this.mutation(removeAuthorizationParam(deleteProject))
325
- /**
326
- * Delete a network
327
- */
328
- deleteNetwork = this.mutation(removeAuthorizationParam(deleteNetwork))
329
- /**
330
- * Delete a certificate
331
- */
332
- deleteCertificate = this.mutation(removeAuthorizationParam(deleteCertificate))
333
- /**
334
- * Delete a dns zone
335
- */
336
- deleteDnsZone = this.mutation(removeAuthorizationParam(deleteDnsZone))
337
- /**
338
- * Delete a dns record
339
- */
340
- deleteDnsRecord = this.mutation(removeAuthorizationParam(deleteDnsRecord))
341
- /**
342
- * Delete a VPN
343
- */
344
- deleteVPN = this.mutation(removeAuthorizationParam(deleteVpn))
345
- /**
346
- * Delete a CIDR
347
- */
348
- deleteCidr = this.mutation(removeAuthorizationParam(deleteCidr))
349
- /**
350
- * Get a list of foundation boundaries
351
- */
352
- listBoundaries = this.query(removeAuthorizationParam(listBoundary))
353
- /**
354
- * Get a list of foundation sso boundaries
355
- */
356
- listSSOBoundaries = this.query(removeAuthorizationParam(listBoundarySso))
357
- /**
358
- * Create a boundary
359
- */
360
- createBoundary = this.mutation(removeAuthorizationParam(createBoundary))
361
- /**
362
- * Create a sso boundary
363
- */
364
- createSSOBoundary = this.mutation(removeAuthorizationParam(createBoundarySso))
365
- /**
366
- * Get details of a boundary
367
- */
368
- getBoundary = this.query(removeAuthorizationParam(getBoundary))
369
- /**
370
- * Get details of a sso boundary
371
- */
372
- getSSOBoundary = this.query(removeAuthorizationParam(getBoundarySso))
373
- /**
374
- * Delete a boundary
375
- */
376
- deleteBoundary = this.mutation(removeAuthorizationParam(deleteBoundary))
377
- /**
378
- * Delete a sso boundary
379
- */
380
- deleteSSOBoundary = this.mutation(removeAuthorizationParam(deleteBoundarySso))
381
- /**
382
- * Edit boundary tags
383
- */
384
- editBoundaryTags = this.mutation(removeAuthorizationParam(putBoundaryTags))
385
- /**
386
- * Edit sso boundary tags
387
- */
388
- editSSOBoundaryTags = this.mutation(removeAuthorizationParam(putBoundarySsoTags))
389
- /**
390
- * Edit boundary policy document
391
- */
392
- editBoundaryPolicyDocument = this.mutation(removeAuthorizationParam(putBoundaryPolicyDocument))
393
- /**
394
- * Edit sso boundary policy document
395
- */
396
- editSSOBoundaryPolicyDocument = this.mutation(removeAuthorizationParam(putBoundarySsoPolicyDocument))
397
- /**
398
- * Edit boundary description
399
- */
400
- editBoundaryDescription = this.mutation(removeAuthorizationParam(putBoundaryDescription))
401
- /**
402
- * Edit sso boundary description
403
- */
404
- editSSOBoundaryDescription = this.mutation(removeAuthorizationParam(putBoundarySsoDescription))
405
- /**
406
- * Edit foundation security tags
407
- */
408
- editFoundationSecurityTags = this.mutation(removeAuthorizationParam(putFoundationSecProjectTags))
409
- /**
410
- * List service control policy
411
- */
412
- listServiceControlPolicy = this.query(removeAuthorizationParam(listServiceControlPolicy))
413
- /**
414
- * Get a service control policy details
415
- */
416
- getServiceControlPolicy = this.query(removeAuthorizationParam(getServiceControlPolicy))
417
- /**
418
- * Edit service control policy
419
- */
420
- editServiceControlPolicy = this.mutation(removeAuthorizationParam(putServiceControlPolicy))
421
- /**
422
- * Delete service control policy
423
- */
424
- deleteServiceControlPolicy = this.mutation(removeAuthorizationParam(deleteServiceControlPolicy))
425
- /**
426
- * Create a service control policy
427
- */
428
- createServiceControlPolicy = this.mutation(removeAuthorizationParam(createServiceControlPolicy))
429
- /**
430
- * List projects from a foundation
431
- */
432
- listFoundationProjects = this.query(removeAuthorizationParam(listProject))
433
- /**
434
- * Get a list of dns records
435
- */
436
- listRoles = this.query(removeAuthorizationParam(listRole))
437
- /**
438
- * Create a role
439
- */
440
- createRole = this.mutation(removeAuthorizationParam(createRole))
441
- /**
442
- * Get a role by name
443
- */
444
- getRole = this.query(removeAuthorizationParam(getRole))
445
- /**
446
- * Edit a role
447
- */
448
- editRole = this.mutation(removeAuthorizationParam(putRole))
449
- /**
450
- * Delete a role
451
- */
452
- deleteRole = this.mutation(removeAuthorizationParam(deleteRole))
453
- /**
454
- * Get Firewall Manager Policies by Foundation V2
455
- */
456
- getFirewallManagerPolicyByName =
457
- this.query(removeAuthorizationParam(fmsPolicyControllerGet))
458
- /**
459
- * Delete Firewall Manager Policy V2
460
- */
461
- deleteFirewallManagerPolicy =
462
- this.mutation(removeAuthorizationParam(fmsPolicyControllerDelete))
463
- /**
464
- * Get Firewall Manager Policies by Foundation V2
465
- */
466
- listFirewallManagerPolicies =
467
- this.query(removeAuthorizationParam(fmsPolicyControllerList))
468
- /**
469
- * Create Firewall Manager Policy V2
470
- */
471
- createFirewallManagerPolicy =
472
- this.mutation(removeAuthorizationParam(fmsPolicyControllerCreate))
473
- /**
474
- * Get Firewall Manager Associate Admin Account by name V2
475
- */
476
- getFirewallManagerAssociateAdminAccountByName =
477
- this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerGet))
478
- /**
479
- * Delete Firewall Manager Associate Admin Account V2
480
- */
481
- deleteFirewallManagerAssociateAdminAccount =
482
- this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerDelete))
483
- /**
484
- * Create Firewall Manager Associate Admin Account V2
485
- */
486
- createFirewallManagerAssociateAdminAccount =
487
- this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerCreate))
488
- /**
489
- * Get Firewall Manager Associate Admin Account by name V2
490
- */
491
- listFirewallManagerAssociateAdminAccount =
492
- this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerList))
493
- /**
494
- * Create a Identity Store Group V2
495
- */
496
- createIdentityStoreGroup =
497
- this.mutation(removeAuthorizationParam(identityStoreGroupControllerCreate))
498
- /**
499
- * List Identity Store Groups by Foundation Namespace V2
500
- */
501
- listIdentityStoreGroup =
502
- this.query(removeAuthorizationParam(identityStoreGroupControllerList))
503
- /**
504
- * Delete a Identity Store Group
505
- */
506
- deleteIdentityStoreGroup =
507
- this.mutation(removeAuthorizationParam(identityStoreGroupControllerDelete))
508
- /**
509
- * List Permission sets by Foundation Namespace
510
- */
511
- listPermissionSets =
512
- this.query(removeAuthorizationParam(permissionSetControllerList))
513
- /**
514
- * Create a Identity Store Group
515
- */
516
- createPermissionSet =
517
- this.mutation(removeAuthorizationParam(permissionSetControllerCreate))
518
- /**
519
- * Delete a Identity Store Group
520
- */
521
- deletePermissionSet =
522
- this.mutation(removeAuthorizationParam(permissionSetControllerDelete))
523
- /**
524
- * List Account assignment by Foundation Namespace V2
525
- */
526
- listAccountAssignments =
527
- this.query(removeAuthorizationParam(accountAssignmentControllerList))
528
- /**
529
- * Create a Account Assignment V2
530
- */
531
- createAccountAssignment =
532
- this.mutation(removeAuthorizationParam(accountAssignmentControllerCreate))
533
- /**
534
- * Delete a Account Assignment
535
- */
536
- deleteAccountAssignment =
537
- this.mutation(removeAuthorizationParam(accountAssignmentControllerDelete))
538
- /**
539
- * Update a network tags V2
540
- */
541
144
  updateNetworkTagsV2 =
542
145
  this.mutation(removeAuthorizationParam(networkControllerPutTags))
543
146
  /**
544
- * Update network name
545
- */
147
+ * Update network name V2
148
+ */
546
149
  updateNetworkNameV2 =
547
150
  this.mutation(removeAuthorizationParam(networkControllerPutNetworkName))
548
151
  /**
549
- * List networks V2
550
- */
152
+ * List networks V2
153
+ */
551
154
  listNetworksV2 =
552
- this.query(removeAuthorizationParam(networkControllerList))
155
+ this.query(removeAuthorizationParam(networkControllerListBy))
553
156
  /**
554
- * Update network name
555
- */
157
+ * Create network V2
158
+ */
556
159
  createNetworkV2 =
557
160
  this.mutation(removeAuthorizationParam(networkControllerCreate))
558
161
  /**
559
- * List networks V2
560
- */
162
+ * Get network V2
163
+ */
561
164
  getNetworkV2 =
562
165
  this.query(removeAuthorizationParam(networkControllerGet))
563
166
  /**
564
- * Delete a Network V2
565
- */
167
+ * Delete network V2
168
+ */
566
169
  deleteNetworkV2 =
567
170
  this.mutation(removeAuthorizationParam(networkControllerDelete))
568
171
  /**
569
- * Update project tags V2
570
- */
172
+ * Update project tags V2
173
+ */
571
174
  updateProjectTagsV2 =
572
175
  this.mutation(removeAuthorizationParam(projectControllerPutTags))
573
176
  /**
574
- * Update project name V2
575
- */
177
+ * Update project name V2
178
+ */
576
179
  updateProjectNameV2 =
577
180
  this.mutation(removeAuthorizationParam(projectControllerPutName))
578
181
  /**
579
- * Update folder tags V2
580
- */
182
+ * Update folder tags V2
183
+ */
581
184
  updateFolderTagsV2 =
582
185
  this.mutation(removeAuthorizationParam(folderControllerPutTags))
583
186
  /**
584
- * Update folder name V2
585
- */
187
+ * Update folder name V2
188
+ */
586
189
  updateFolderNameV2 =
587
190
  this.mutation(removeAuthorizationParam(folderControllerPutName))
588
191
  /**
589
- * Update dns records ttl V2
590
- */
591
- updateDNSRecordsTTLV2 =
192
+ * Update DNS records TTL V2
193
+ */
194
+ updateDnsRecordsTtlV2 =
592
195
  this.mutation(removeAuthorizationParam(dnsRecordControllerPutTtl))
593
196
  /**
594
- * Update dns records V2
595
- */
596
- updateDNSRecordsV2 =
197
+ * Update DNS records V2
198
+ */
199
+ updateDnsRecordsV2 =
597
200
  this.mutation(removeAuthorizationParam(dnsRecordControllerPutRecords))
598
201
  /**
599
- * Update certificates tags V2
600
- */
202
+ * Update certificate tags V2
203
+ */
601
204
  updateCertificatesTagsV2 =
602
205
  this.mutation(removeAuthorizationParam(certificateControllerPutTags))
603
206
  /**
604
- * List vpns V2
605
- */
606
- listVPNSV2 =
207
+ * List Vpn's V2
208
+ */
209
+ listVpnV2 =
607
210
  this.query(removeAuthorizationParam(vpnControllerList))
608
211
  /**
609
- * Create VPN V2
610
- */
611
- createVPNV2 =
212
+ * Create Vpn V2
213
+ */
214
+ createVpnV2 =
612
215
  this.mutation(removeAuthorizationParam(vpnControllerCreate))
613
-
614
216
  /**
615
- * Update VPN tags V2
616
- */
617
- updateVPNSTagsV2 =
217
+ * Update Vpn tags V2
218
+ */
219
+ updateVpnTagsV2 =
618
220
  this.mutation(removeAuthorizationParam(vpnControllerPutTags))
619
221
  /**
620
- * List projects V2
621
- */
222
+ * Get Vpn by name V2
223
+ */
224
+ getVpnSByNameV2 =
225
+ this.query(removeAuthorizationParam(vpnControllerGet))
226
+ /**
227
+ * Delete Vpn V2
228
+ */
229
+ deleteVpnSV2 =
230
+ this.mutation(removeAuthorizationParam(vpnControllerDelete))
231
+ /**
232
+ * List projects V2
233
+ */
622
234
  listProjectsV2 =
623
235
  this.query(removeAuthorizationParam(projectControllerListByFolderRef))
624
236
  /**
625
- * Create project V2
626
- */
237
+ * Create project V2
238
+ */
627
239
  createProjectV2 =
628
240
  this.mutation(removeAuthorizationParam(projectControllerCreate))
629
241
  /**
630
- * List managed policy attachments V2
631
- */
632
- listManagedPolicyAttachmentsV2 =
633
- this.query(removeAuthorizationParam(managedPolicyAttachmentControllerList))
634
- /**
635
- * Create managed policy attachment V2
636
- */
637
- createManagedPolicyAttachmentV2 =
638
- this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerCreate))
639
- /**
640
- * List identity store users V2
641
- */
642
- listIdentityStoreUsersV2 =
643
- this.query(removeAuthorizationParam(identityStoreUserControllerList))
644
- /**
645
- * Create identity store users V2
646
- */
647
- createIdentityStoreUsersV2 =
648
- this.mutation(removeAuthorizationParam(identityStoreUserControllerCreate))
649
- /**
650
- * List identity store memberships V2
651
- */
652
- listIdentityStoreMembershipsV2 =
653
- this.query(removeAuthorizationParam(identityStoreMembershipControllerList))
654
- /**
655
- * Create identity store memberships V2
656
- */
657
- createIdentityStoreMembershipsV2 =
658
- this.mutation(removeAuthorizationParam(identityStoreMembershipControllerCreate))
659
- /**
660
- * List identity centers V2
661
- */
662
- listIdentityCentersV2 =
663
- this.query(removeAuthorizationParam(identityCenterControllerList))
664
- /**
665
- * Create identity center V2
666
- */
667
- createIdentityCenterV2 =
668
- this.mutation(removeAuthorizationParam(identityCenterControllerCreate))
669
- /**
670
- * List folders V2
671
- */
672
- listFoldersV2 =
673
- this.query(removeAuthorizationParam(folderControllerListByFolderRef))
674
- /**
675
- * Create folders V2
676
- */
677
- createFoldersV2 =
678
- this.mutation(removeAuthorizationParam(folderControllerCreate))
679
- /**
680
- * List firewalls V2
681
- */
682
- listFirewallsV2 =
683
- this.query(removeAuthorizationParam(firewallControllerList))
684
- /**
685
- * Create firewall V2
686
- */
687
- createFirewallV2 =
688
- this.mutation(removeAuthorizationParam(firewallControllerCreate))
689
- /**
690
- * List DNS zones V2
691
- */
692
- listDNSZonesV2 =
693
- this.query(removeAuthorizationParam(dnsZoneControllerListBy))
694
- /**
695
- * Create DNS zones V2
696
- */
697
- createDNSZonesV2 =
698
- this.mutation(removeAuthorizationParam(dnsZoneControllerCreate))
699
- /**
700
- * List DNS records V2
701
- */
702
- listDNSRecordsV2 =
703
- this.query(removeAuthorizationParam(dnsRecordControllerListBy))
704
- /**
705
- * Create DNS records V2
706
- */
707
- createDNSRecordsV2 =
708
- this.mutation(removeAuthorizationParam(dnsRecordControllerCreate))
709
- /**
710
- * List Customer Policy Attachments V2
711
- */
712
- listCustomerPolicyAttachmentsV2 =
713
- this.query(removeAuthorizationParam(customerPolicyAttachmentControllerList))
714
- /**
715
- * Create Customer Policy Attachments V2
716
- */
717
- createCustomerPolicyAttachmentsV2 =
718
- this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerCreate))
719
- /**
720
- * List CIDRS V2
721
- */
722
- listCIDRSV2 =
723
- this.query(removeAuthorizationParam(cidrControllerList))
724
- /**
725
- * Create CIDRS V2
726
- */
727
- createCIDRSV2 =
728
- this.mutation(removeAuthorizationParam(cidrControllerCreate))
729
- /**
730
- * Update CIDRS tags V2
731
- */
732
- upsertCIDRTagsV2 =
733
- this.mutation(removeAuthorizationParam(cidrControllerPutTags))
734
- /**
735
- * List certificates V2
736
- */
737
- listCertificatesV2 =
738
- this.query(removeAuthorizationParam(certificateControllerList))
739
- /**
740
- * Create certificates V2
741
- */
742
- createCertificatesV2 =
743
- this.mutation(removeAuthorizationParam(certificateControllerCreate))
744
- /**
745
- * List OIDC V2
746
- */
747
- listOIDCV2 =
748
- this.query(removeAuthorizationParam(oidcControllerGet))
749
- /**
750
- * Update DNS tags V2
751
- */
752
- upsertDNSTagsV2 =
753
- this.mutation(removeAuthorizationParam(dnsZoneControllerPutTags))
754
- /**
755
- * GET VPNS by name V2
756
- */
757
- getVPNSByNameV2 =
758
- this.query(removeAuthorizationParam(vpnControllerGet))
759
- /**
760
- * Delete VPNS V2
761
- */
762
- deleteVPNSV2 =
763
- this.mutation(removeAuthorizationParam(vpnControllerDelete))
764
- /**
765
- * GET Project by name V2
766
- */
242
+ * Get project by name V2
243
+ */
767
244
  getProjectByNameV2 =
768
245
  this.query(removeAuthorizationParam(projectControllerGet))
769
246
  /**
770
- * Delete Project V2
771
- */
247
+ * Delete project V2
248
+ */
772
249
  deleteProjectV2 =
773
250
  this.mutation(removeAuthorizationParam(projectControllerDelete))
774
251
  /**
775
- * GET Permission set by name V2
776
- */
777
- getPermissionSetByNameV2 =
778
- this.query(removeAuthorizationParam(permissionSetControllerGet))
252
+ * List managed policy attachments V2
253
+ */
254
+ listManagedPolicyAttachmentsV2 =
255
+ this.query(removeAuthorizationParam(managedPolicyAttachmentControllerList))
779
256
  /**
780
- * Get managed policy attachment by name V2
781
- */
257
+ * Create managed policy attachment V2
258
+ */
259
+ createManagedPolicyAttachmentV2 =
260
+ this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerCreate))
261
+ /**
262
+ * Get managed policy attachment by name V2
263
+ */
782
264
  getManagedPolicyAttachmentByNameV2 =
783
265
  this.query(removeAuthorizationParam(managedPolicyAttachmentControllerGet))
784
266
  /**
785
- * Delete managed policy attachment V2
786
- */
267
+ * Delete managed policy attachment V2
268
+ */
787
269
  deleteManagedPolicyAttachmentV2 =
788
270
  this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerDelete))
789
271
  /**
790
- * Get identity store user by name V2
791
- */
272
+ * List identity store users V2
273
+ */
274
+ listIdentityStoreUsersV2 =
275
+ this.query(removeAuthorizationParam(identityStoreUserControllerList))
276
+ /**
277
+ * Create identity store user V2
278
+ */
279
+ createIdentityStoreUsersV2 =
280
+ this.mutation(removeAuthorizationParam(identityStoreUserControllerCreate))
281
+ /**
282
+ * Get identity store user by name V2
283
+ */
792
284
  getIdentityStoreUserByNameV2 =
793
285
  this.query(removeAuthorizationParam(identityStoreUserControllerGet))
794
286
  /**
795
- * Delete identity store user V2
796
- */
797
- deleteIdentityStoreUserV2 =
798
- this.mutation(removeAuthorizationParam(identityStoreUserControllerDelete))
287
+ * Delete identity store user V2
288
+ */
289
+ deleteIdentityStoreUserV2 =
290
+ this.mutation(removeAuthorizationParam(identityStoreUserControllerDelete))
291
+ /**
292
+ * List identity store memberships V2
293
+ */
294
+ listIdentityStoreMembershipsV2 =
295
+ this.query(removeAuthorizationParam(identityStoreMembershipControllerList))
296
+ /**
297
+ * Create identity store membership V2
298
+ */
299
+ createIdentityStoreMembershipsV2 =
300
+ this.mutation(removeAuthorizationParam(identityStoreMembershipControllerCreate))
799
301
  /**
800
- * Get identity store membership by name V2
801
- */
302
+ * Get identity store membership by name V2
303
+ */
802
304
  getIdentityStoreMembershipByNameV2 =
803
305
  this.query(removeAuthorizationParam(identityStoreMembershipControllerGet))
804
306
  /**
805
- * Delete identity store membership V2
806
- */
307
+ * Delete identity store membership V2
308
+ */
807
309
  deleteIdentityStoreMembershipV2 =
808
310
  this.mutation(removeAuthorizationParam(identityStoreMembershipControllerDelete))
809
311
  /**
810
- * Get identity store groups by name V2
811
- */
312
+ * List identity store groups V2
313
+ */
314
+ listIdentityStoreGroupsV2 =
315
+ this.query(removeAuthorizationParam(identityStoreGroupControllerList))
316
+ /**
317
+ * Create identity store group V2
318
+ */
319
+ createIdentityStoreGroupV2 =
320
+ this.mutation(removeAuthorizationParam(identityStoreGroupControllerCreate))
321
+ /**
322
+ * Get identity store group by name V2
323
+ */
812
324
  getIdentityStoreGroupsByNameV2 =
813
325
  this.query(removeAuthorizationParam(identityStoreGroupControllerGet))
814
326
  /**
815
- * Get identity centers by name V2
816
- */
327
+ * Delete identity store group V2
328
+ */
329
+ deleteIdentityStoreGroupV2 =
330
+ this.mutation(removeAuthorizationParam(identityStoreGroupControllerDelete))
331
+ /**
332
+ * List identity centers V2
333
+ */
334
+ listIdentityCentersV2 =
335
+ this.query(removeAuthorizationParam(identityCenterControllerList))
336
+ /**
337
+ * Create identity center V2
338
+ */
339
+ createIdentityCenterV2 =
340
+ this.mutation(removeAuthorizationParam(identityCenterControllerCreate))
341
+ /**
342
+ * Get identity center by name V2
343
+ */
817
344
  getIdentityCentersByNameV2 =
818
345
  this.query(removeAuthorizationParam(identityCenterControllerGet))
819
346
  /**
820
- * Delete identity centers V2
821
- */
347
+ * Delete identity center V2
348
+ */
822
349
  deleteIdentityCentersV2 =
823
350
  this.mutation(removeAuthorizationParam(identityCenterControllerDelete))
824
351
  /**
825
- * Get folder by name V2
826
- */
352
+ * List permission sets V2
353
+ */
354
+ listPermissionSetsV2 =
355
+ this.query(removeAuthorizationParam(permissionSetControllerList))
356
+ /**
357
+ * Create permission set V2
358
+ */
359
+ createPermissionSetV2 =
360
+ this.mutation(removeAuthorizationParam(permissionSetControllerCreate))
361
+ /**
362
+ * Get permission set by name V2
363
+ */
364
+ getPermissionSetByNameV2 =
365
+ this.query(removeAuthorizationParam(permissionSetControllerGet))
366
+ /**
367
+ * Delete permission set V2
368
+ */
369
+ deletePermissionSetV2 =
370
+ this.mutation(removeAuthorizationParam(permissionSetControllerDelete))
371
+ /**
372
+ * List account assignments V2
373
+ */
374
+ listAccountAssignmentsV2 =
375
+ this.query(removeAuthorizationParam(accountAssignmentControllerList))
376
+ /**
377
+ * Create account assignment V2
378
+ */
379
+ createAccountAssignmentV2 =
380
+ this.mutation(removeAuthorizationParam(accountAssignmentControllerCreate))
381
+ /**
382
+ * Get account assignment by name V2
383
+ */
384
+ getAccountAssignmentsByNameV2 =
385
+ this.query(removeAuthorizationParam(accountAssignmentControllerGet))
386
+ /**
387
+ * Delete account assignment V2
388
+ */
389
+ deleteAccountAssignmentV2 =
390
+ this.mutation(removeAuthorizationParam(accountAssignmentControllerDelete))
391
+ /**
392
+ * List folders V2
393
+ */
394
+ listFoldersV2 =
395
+ this.query(removeAuthorizationParam(folderControllerListByFolderRef))
396
+ /**
397
+ * Create folder V2
398
+ */
399
+ createFoldersV2 =
400
+ this.mutation(removeAuthorizationParam(folderControllerCreate))
401
+ /**
402
+ * Get folder by name V2
403
+ */
827
404
  getFolderByNameV2 =
828
405
  this.query(removeAuthorizationParam(folderControllerGet))
829
406
  /**
830
- * Delete folder V2
831
- */
407
+ * Delete folder V2
408
+ */
832
409
  deleteFolderV2 =
833
410
  this.mutation(removeAuthorizationParam(folderControllerDelete))
834
411
  /**
835
- * Get firewall by name V2
836
- */
412
+ * List firewalls V2
413
+ */
414
+ listFirewallsV2 =
415
+ this.query(removeAuthorizationParam(firewallControllerList))
416
+ /**
417
+ * Create firewall V2
418
+ */
419
+ createFirewallV2 =
420
+ this.mutation(removeAuthorizationParam(firewallControllerCreate))
421
+ /**
422
+ * Get firewall by name V2
423
+ */
837
424
  getFirewallByNameV2 =
838
425
  this.query(removeAuthorizationParam(firewallControllerGet))
839
426
  /**
840
- * Delete firewall V2
841
- */
427
+ * Delete firewall V2
428
+ */
842
429
  deleteFirewallV2 =
843
430
  this.mutation(removeAuthorizationParam(firewallControllerDelete))
844
431
  /**
845
- * Get DNS zone by name V2
846
- */
432
+ * List DNS zones V2
433
+ */
434
+ listDNSZonesV2 =
435
+ this.query(removeAuthorizationParam(dnsZoneControllerListBy))
436
+ /**
437
+ * Create DNS zone V2
438
+ */
439
+ createDNSZonesV2 =
440
+ this.mutation(removeAuthorizationParam(dnsZoneControllerCreate))
441
+ /**
442
+ * Get DNS zone by name V2
443
+ */
847
444
  getDNSZoneByNameV2 =
848
445
  this.query(removeAuthorizationParam(dnsZoneControllerGet))
849
446
  /**
850
- * Delete DNS zone V2
851
- */
447
+ * Delete DNS zone V2
448
+ */
852
449
  deleteDNSZoneV2 =
853
450
  this.mutation(removeAuthorizationParam(dnsZoneControllerDelete))
854
451
  /**
855
- * Get DNS record by name V2
856
- */
452
+ * Update DNS zone tags V2
453
+ */
454
+ upsertDNSTagsV2 =
455
+ this.mutation(removeAuthorizationParam(dnsZoneControllerPutTags))
456
+ /**
457
+ * List DNS records V2
458
+ */
459
+ listDNSRecordsV2 =
460
+ this.query(removeAuthorizationParam(dnsRecordControllerListBy))
461
+ /**
462
+ * Create DNS record V2
463
+ */
464
+ createDNSRecordsV2 =
465
+ this.mutation(removeAuthorizationParam(dnsRecordControllerCreate))
466
+ /**
467
+ * Get DNS record by name V2
468
+ */
857
469
  getDNSRecordByNameV2 =
858
470
  this.query(removeAuthorizationParam(dnsRecordControllerGet))
859
471
  /**
860
- * Delete DNS record V2
861
- */
472
+ * Delete DNS record V2
473
+ */
862
474
  deleteDNSRecordV2 =
863
475
  this.mutation(removeAuthorizationParam(dnsRecordControllerDelete))
864
476
  /**
865
- * Get Customer Policy Attachment by name V2
866
- */
477
+ * List customer policy attachments V2
478
+ */
479
+ listCustomerPolicyAttachmentsV2 =
480
+ this.query(removeAuthorizationParam(customerPolicyAttachmentControllerList))
481
+ /**
482
+ * Create customer policy attachment V2
483
+ */
484
+ createCustomerPolicyAttachmentsV2 =
485
+ this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerCreate))
486
+ /**
487
+ * Get customer policy attachment by name V2
488
+ */
867
489
  getCustomerPolicyAttachmentV2 =
868
490
  this.query(removeAuthorizationParam(customerPolicyAttachmentControllerGet))
869
491
  /**
870
- * Delete Customer Policy attachment V2
871
- */
492
+ * Delete customer policy attachment V2
493
+ */
872
494
  deleteCustomerPolicyAttachmentV2 =
873
495
  this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerDelete))
874
496
  /**
875
- * Get CIDR by name V2
876
- */
497
+ * List CIDRs V2
498
+ */
499
+ listCIDRSV2 =
500
+ this.query(removeAuthorizationParam(cidrControllerList))
501
+ /**
502
+ * Create CIDR V2
503
+ */
504
+ createCIDRSV2 =
505
+ this.mutation(removeAuthorizationParam(cidrControllerCreate))
506
+ /**
507
+ * Get CIDR by name V2
508
+ */
877
509
  getCIDRByNameV2 =
878
510
  this.query(removeAuthorizationParam(cidrControllerGet))
879
511
  /**
880
- * Delete CIDR V2
881
- */
512
+ * Delete CIDR V2
513
+ */
882
514
  deleteCIDRV2 =
883
515
  this.mutation(removeAuthorizationParam(cidrControllerDelete))
884
516
  /**
885
- * Get Certificate by name V2
886
- */
517
+ * Update CIDR tags V2
518
+ */
519
+ upsertCIDRTagsV2 =
520
+ this.mutation(removeAuthorizationParam(cidrControllerPutTags))
521
+ /**
522
+ * List certificates V2
523
+ */
524
+ listCertificatesV2 =
525
+ this.query(removeAuthorizationParam(certificateControllerList))
526
+ /**
527
+ * Create certificate V2
528
+ */
529
+ createCertificatesV2 =
530
+ this.mutation(removeAuthorizationParam(certificateControllerCreate))
531
+ /**
532
+ * Get certificate by name V2
533
+ */
887
534
  getCertificateByNameV2 =
888
535
  this.query(removeAuthorizationParam(certificateControllerGet))
889
536
  /**
890
- * Delete Certificate V2
891
- */
537
+ * Delete certificate V2
538
+ */
892
539
  deleteCertificateV2 =
893
540
  this.mutation(removeAuthorizationParam(certificateControllerDelete))
894
541
  /**
895
- * Get Account Assignments by name V2
896
- */
897
- getAccountAssignmentsByNameV2 =
898
- this.query(removeAuthorizationParam(accountAssignmentControllerGet))
899
- /**
900
- * Get OIDC
901
- */
542
+ * Get OIDC V2
543
+ */
902
544
  getOIDCV2 =
903
- this.query(removeAuthorizationParam(getOidc))
545
+ this.query(removeAuthorizationParam(oidcControllerGet))
904
546
  /**
905
- * Get Finops
906
- */
547
+ * List OIDC V2
548
+ */
549
+ listOIDCV2 =
550
+ this.query(removeAuthorizationParam(oidcControllerGet))
551
+ /**
552
+ * Get Finops V2
553
+ */
907
554
  getFinopsV2 =
908
555
  this.query(removeAuthorizationParam(finOpsControllerGet))
909
556
  /**
910
- * Create Foundation V2
911
- */
557
+ * Create foundation V2
558
+ */
912
559
  createFoundationV2 =
913
560
  this.mutation(removeAuthorizationParam(foundationControllerCreate))
914
561
  /**
915
- * List Foundations V2
916
- */
562
+ * List foundations V2
563
+ */
917
564
  listFoundationsV2 =
918
565
  this.query(removeAuthorizationParam(foundationControllerList))
919
566
  /**
920
- * Get Foundation V2
921
- */
567
+ * Get foundation V2
568
+ */
922
569
  getFoundationV2 =
923
570
  this.query(removeAuthorizationParam(foundationControllerGet))
571
+
924
572
  /**
925
- * List Boundaries V2
926
- */
573
+ * Update foundation security project tags V2
574
+ */
575
+ updateFoundationSecurityTagsV2 = this.mutation(removeAuthorizationParam(foundationControllerPutSecProjectTags))
576
+ /**
577
+ * List boundaries V2
578
+ */
927
579
  listBoundariesV2 =
928
580
  this.query(removeAuthorizationParam(boundaryControllerList))
929
581
  /**
930
- * Create Boundary V2
931
- */
582
+ * Create boundary V2
583
+ */
932
584
  createBoundaryV2 =
933
585
  this.mutation(removeAuthorizationParam(boundaryControllerCreate))
934
586
  /**
935
- * Get Boundary by name V2
936
- */
587
+ * Get boundary by name V2
588
+ */
937
589
  getBoundaryByNameV2 =
938
590
  this.query(removeAuthorizationParam(boundaryControllerGet))
939
591
  /**
940
- * Delete Boundary V2
941
- */
592
+ * Delete boundary V2
593
+ */
942
594
  deleteBoundaryV2 =
943
595
  this.mutation(removeAuthorizationParam(boundaryControllerDelete))
944
596
  /**
945
- * Update Boundary tags V2
946
- */
597
+ * Update boundary tags V2
598
+ */
947
599
  updateBoundaryTagsV2 =
948
600
  this.mutation(removeAuthorizationParam(boundaryControllerPutTags))
949
601
  /**
950
- * List Boundary SSOs V2
951
- */
602
+ * Update boundary policy document V2
603
+ */
604
+ updateBoundaryPolicyDocumentV2 =
605
+ this.mutation(removeAuthorizationParam(boundaryControllerPutPolicyDocument))
606
+ /**
607
+ * List boundary SSOs V2
608
+ */
952
609
  listBoundarySsosV2 =
953
610
  this.query(removeAuthorizationParam(boundarySsoControllerList))
954
611
  /**
955
- * Create Boundary SSO V2
956
- */
612
+ * Create boundary SSO V2
613
+ */
957
614
  createBoundarySsoV2 =
958
615
  this.mutation(removeAuthorizationParam(boundarySsoControllerCreate))
959
616
  /**
960
- * Get Boundary SSO by name V2
961
- */
617
+ * Get boundary SSO by name V2
618
+ */
962
619
  getBoundarySsoByNameV2 =
963
620
  this.query(removeAuthorizationParam(boundarySsoControllerGet))
964
621
  /**
965
- * Delete Boundary SSO V2
966
- */
622
+ * Delete boundary SSO V2
623
+ */
967
624
  deleteBoundarySsoV2 =
968
625
  this.mutation(removeAuthorizationParam(boundarySsoControllerDelete))
969
626
  /**
970
- * Update Boundary SSO tags V2
971
- */
627
+ * Update boundary SSO tags V2
628
+ */
972
629
  updateBoundarySsoTagsV2 =
973
630
  this.mutation(removeAuthorizationParam(boundarySsoControllerPutTags))
974
631
  /**
975
- * List Service Control Policies V2
976
- */
632
+ * Update boundary SSO policy document V2
633
+ */
634
+ updateBoundarySsoPolicyDocumentV2 =
635
+ this.mutation(removeAuthorizationParam(boundarySsoControllerPutPolicyDocument))
636
+ /**
637
+ * List service control policies V2
638
+ */
977
639
  listServiceControlPoliciesV2 =
978
640
  this.query(removeAuthorizationParam(serviceControlPolicyControllerList))
979
641
  /**
980
- * Create Service Control Policy V2
981
- */
642
+ * Create service control policy V2
643
+ */
982
644
  createServiceControlPolicyV2 =
983
645
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerCreate))
984
646
  /**
985
- * Get Service Control Policy by name V2
986
- */
647
+ * Get service control policy by name V2
648
+ */
987
649
  getServiceControlPolicyByNameV2 =
988
650
  this.query(removeAuthorizationParam(serviceControlPolicyControllerGet))
989
651
  /**
990
- * Delete Service Control Policy V2
991
- */
652
+ * Delete service control policy V2
653
+ */
992
654
  deleteServiceControlPolicyV2 =
993
655
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerDelete))
994
656
  /**
995
- * Update Service Control Policy target V2
996
- */
657
+ * Update service control policy target V2
658
+ */
997
659
  updateServiceControlPolicyTargetV2 =
998
660
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTarget))
999
661
  /**
1000
- * Update Service Control Policy tags V2
1001
- */
662
+ * Update service control policy tags V2
663
+ */
1002
664
  updateServiceControlPolicyTagsV2 =
1003
665
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTags))
1004
666
  /**
1005
- * Update Service Control Policy name V2
1006
- */
667
+ * Update service control policy name V2
668
+ */
1007
669
  updateServiceControlPolicyNameV2 =
1008
670
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutName))
1009
671
  /**
1010
- * Update Service Control Policy description V2
1011
- */
672
+ * Update service control policy description V2
673
+ */
1012
674
  updateServiceControlPolicyDescriptionV2 =
1013
675
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutDescription))
1014
676
  /**
1015
- * Update Service Control Policy content V2
1016
- */
677
+ * Update service control policy content V2
678
+ */
1017
679
  updateServiceControlPolicyContentV2 =
1018
680
  this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutContent))
681
+ /**
682
+ * Get Firewall Manager Policy by name V2
683
+ */
684
+ getFirewallManagerPolicyByNameV2 =
685
+ this.query(removeAuthorizationParam(fmsPolicyControllerGet))
686
+ /**
687
+ * Delete Firewall Manager Policy V2
688
+ */
689
+ deleteFirewallManagerPolicyV2 =
690
+ this.mutation(removeAuthorizationParam(fmsPolicyControllerDelete))
691
+ /**
692
+ * List Firewall Manager Policies V2
693
+ */
694
+ listFirewallManagerPoliciesV2 =
695
+ this.query(removeAuthorizationParam(fmsPolicyControllerList))
696
+ /**
697
+ * Create Firewall Manager Policy V2
698
+ */
699
+ createFirewallManagerPolicyV2 =
700
+ this.mutation(removeAuthorizationParam(fmsPolicyControllerCreate))
701
+ /**
702
+ * Get Firewall Manager Associate Admin Account by name V2
703
+ */
704
+ getFirewallManagerAssociateAdminAccountByNameV2 =
705
+ this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerGet))
706
+ /**
707
+ * Delete Firewall Manager Associate Admin Account V2
708
+ */
709
+ deleteFirewallManagerAssociateAdminAccountV2 =
710
+ this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerDelete))
711
+ /**
712
+ * Create Firewall Manager Associate Admin Account V2
713
+ */
714
+ createFirewallManagerAssociateAdminAccountV2 =
715
+ this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerCreate))
716
+ /**
717
+ * List Firewall Manager Associate Admin Accounts V2
718
+ */
719
+ listFirewallManagerAssociateAdminAccountsV2 =
720
+ this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerList))
721
+
722
+ /**
723
+ * Get a list of dns records
724
+ */
725
+ listRoles = this.query(removeAuthorizationParam(roleControllerList))
726
+ /**
727
+ * Create a role
728
+ */
729
+ createRole = this.mutation(removeAuthorizationParam(roleControllerCreate))
730
+ /**
731
+ * Get a role by name
732
+ */
733
+ getRole = this.query(removeAuthorizationParam(roleControllerGet))
734
+ /**
735
+ * Edit a role
736
+ */
737
+ editRole = this.mutation(removeAuthorizationParam(roleControllerUpdateAccountRole))
738
+ /**
739
+ * Delete a role
740
+ */
741
+ deleteRole = this.mutation(removeAuthorizationParam(roleControllerDelete))
1019
742
  }
1020
743
 
1021
744
  export const cloudPlatformClient = new CloudPlatformClient()