@stack-spot/portal-network 0.235.3 → 0.236.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.
- package/CHANGELOG.md +7 -0
- package/dist/api/cloudPlatform.d.ts +300 -14
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +214 -10
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/apis.json +7 -3
- package/dist/client/cloud-platform.d.ts +684 -12
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +888 -15
- package/dist/client/cloud-platform.js.map +1 -1
- package/package.json +2 -2
- package/scripts/generate-apis.ts +4 -3
- package/src/api/cloudPlatform.ts +511 -20
- package/src/api-docs/cloud-platform-docs-prd.json +12139 -0
- package/src/api-docs/cloud-platform-docs-stg.json +12139 -0
- package/src/apis.json +7 -3
- package/src/client/cloud-platform.ts +596 -14
|
@@ -1,8 +1,30 @@
|
|
|
1
1
|
import { HttpError } from '@oazapfts/runtime'
|
|
2
|
+
import { getApiAddresses } from '../api-addresses'
|
|
2
3
|
import {
|
|
3
4
|
accountAssignmentControllerCreate,
|
|
4
5
|
accountAssignmentControllerDelete,
|
|
6
|
+
accountAssignmentControllerGet,
|
|
5
7
|
accountAssignmentControllerList,
|
|
8
|
+
boundaryControllerCreate,
|
|
9
|
+
boundaryControllerDelete,
|
|
10
|
+
boundaryControllerGet,
|
|
11
|
+
boundaryControllerList,
|
|
12
|
+
boundaryControllerPutTags,
|
|
13
|
+
boundarySsoControllerCreate,
|
|
14
|
+
boundarySsoControllerDelete,
|
|
15
|
+
boundarySsoControllerGet,
|
|
16
|
+
boundarySsoControllerList,
|
|
17
|
+
boundarySsoControllerPutTags,
|
|
18
|
+
certificateControllerCreate,
|
|
19
|
+
certificateControllerDelete,
|
|
20
|
+
certificateControllerGet,
|
|
21
|
+
certificateControllerList,
|
|
22
|
+
certificateControllerPutTags,
|
|
23
|
+
cidrControllerCreate,
|
|
24
|
+
cidrControllerDelete,
|
|
25
|
+
cidrControllerGet,
|
|
26
|
+
cidrControllerList,
|
|
27
|
+
cidrControllerPutTags,
|
|
6
28
|
createBoundary,
|
|
7
29
|
createBoundarySso,
|
|
8
30
|
createCertificate,
|
|
@@ -16,6 +38,10 @@ import {
|
|
|
16
38
|
createRole,
|
|
17
39
|
createServiceControlPolicy,
|
|
18
40
|
createVpn,
|
|
41
|
+
customerPolicyAttachmentControllerCreate,
|
|
42
|
+
customerPolicyAttachmentControllerDelete,
|
|
43
|
+
customerPolicyAttachmentControllerGet,
|
|
44
|
+
customerPolicyAttachmentControllerList,
|
|
19
45
|
defaults,
|
|
20
46
|
deleteBoundary,
|
|
21
47
|
deleteBoundarySso,
|
|
@@ -27,7 +53,24 @@ import {
|
|
|
27
53
|
deleteNetwork,
|
|
28
54
|
deleteProject,
|
|
29
55
|
deleteRole,
|
|
56
|
+
deleteServiceControlPolicy,
|
|
30
57
|
deleteVpn,
|
|
58
|
+
dnsRecordControllerCreate,
|
|
59
|
+
dnsRecordControllerDelete,
|
|
60
|
+
dnsRecordControllerGet,
|
|
61
|
+
dnsRecordControllerListBy,
|
|
62
|
+
dnsRecordControllerPutRecords,
|
|
63
|
+
dnsRecordControllerPutTtl,
|
|
64
|
+
dnsZoneControllerCreate,
|
|
65
|
+
dnsZoneControllerDelete,
|
|
66
|
+
dnsZoneControllerGet,
|
|
67
|
+
dnsZoneControllerListBy,
|
|
68
|
+
dnsZoneControllerPutTags,
|
|
69
|
+
finOpsControllerGet,
|
|
70
|
+
firewallControllerCreate,
|
|
71
|
+
firewallControllerDelete,
|
|
72
|
+
firewallControllerGet,
|
|
73
|
+
firewallControllerList,
|
|
31
74
|
fmsAssociateAdminAccountControllerCreate,
|
|
32
75
|
fmsAssociateAdminAccountControllerDelete,
|
|
33
76
|
fmsAssociateAdminAccountControllerGet,
|
|
@@ -36,6 +79,15 @@ import {
|
|
|
36
79
|
fmsPolicyControllerDelete,
|
|
37
80
|
fmsPolicyControllerGet,
|
|
38
81
|
fmsPolicyControllerList,
|
|
82
|
+
folderControllerCreate,
|
|
83
|
+
folderControllerDelete,
|
|
84
|
+
folderControllerGet,
|
|
85
|
+
folderControllerListByFolderRef,
|
|
86
|
+
folderControllerPutName,
|
|
87
|
+
folderControllerPutTags,
|
|
88
|
+
foundationControllerCreate,
|
|
89
|
+
foundationControllerGet,
|
|
90
|
+
foundationControllerList,
|
|
39
91
|
getBoundary,
|
|
40
92
|
getBoundarySso,
|
|
41
93
|
getCertificate,
|
|
@@ -43,13 +95,27 @@ import {
|
|
|
43
95
|
getFolderTags,
|
|
44
96
|
getFoundation,
|
|
45
97
|
getNetwork,
|
|
98
|
+
getOidc,
|
|
46
99
|
getProject,
|
|
47
100
|
getRole,
|
|
48
101
|
getServiceControlPolicy,
|
|
49
102
|
getVpnConfiguration,
|
|
103
|
+
identityCenterControllerCreate,
|
|
104
|
+
identityCenterControllerDelete,
|
|
105
|
+
identityCenterControllerGet,
|
|
106
|
+
identityCenterControllerList,
|
|
50
107
|
identityStoreGroupControllerCreate,
|
|
51
108
|
identityStoreGroupControllerDelete,
|
|
109
|
+
identityStoreGroupControllerGet,
|
|
52
110
|
identityStoreGroupControllerList,
|
|
111
|
+
identityStoreMembershipControllerCreate,
|
|
112
|
+
identityStoreMembershipControllerDelete,
|
|
113
|
+
identityStoreMembershipControllerGet,
|
|
114
|
+
identityStoreMembershipControllerList,
|
|
115
|
+
identityStoreUserControllerCreate,
|
|
116
|
+
identityStoreUserControllerDelete,
|
|
117
|
+
identityStoreUserControllerGet,
|
|
118
|
+
identityStoreUserControllerList,
|
|
53
119
|
listBoundary,
|
|
54
120
|
listBoundarySso,
|
|
55
121
|
listCertificates,
|
|
@@ -62,9 +128,27 @@ import {
|
|
|
62
128
|
listRole,
|
|
63
129
|
listServiceControlPolicy,
|
|
64
130
|
listVpns,
|
|
131
|
+
managedPolicyAttachmentControllerCreate,
|
|
132
|
+
managedPolicyAttachmentControllerDelete,
|
|
133
|
+
managedPolicyAttachmentControllerGet,
|
|
134
|
+
managedPolicyAttachmentControllerList,
|
|
135
|
+
networkControllerCreate,
|
|
136
|
+
networkControllerDelete,
|
|
137
|
+
networkControllerGet,
|
|
138
|
+
networkControllerList,
|
|
139
|
+
networkControllerPutNetworkName,
|
|
140
|
+
networkControllerPutTags,
|
|
141
|
+
oidcControllerGet,
|
|
65
142
|
permissionSetControllerCreate,
|
|
66
143
|
permissionSetControllerDelete,
|
|
144
|
+
permissionSetControllerGet,
|
|
67
145
|
permissionSetControllerList,
|
|
146
|
+
projectControllerCreate,
|
|
147
|
+
projectControllerDelete,
|
|
148
|
+
projectControllerGet,
|
|
149
|
+
projectControllerListByFolderRef,
|
|
150
|
+
projectControllerPutName,
|
|
151
|
+
projectControllerPutTags,
|
|
68
152
|
putBoundaryDescription,
|
|
69
153
|
putBoundaryPolicyDocument,
|
|
70
154
|
putBoundarySsoDescription,
|
|
@@ -81,13 +165,26 @@ import {
|
|
|
81
165
|
putRole,
|
|
82
166
|
putServiceControlPolicy,
|
|
83
167
|
putVpnTags,
|
|
168
|
+
serviceControlPolicyControllerCreate,
|
|
169
|
+
serviceControlPolicyControllerDelete,
|
|
170
|
+
serviceControlPolicyControllerGet,
|
|
171
|
+
serviceControlPolicyControllerList,
|
|
172
|
+
serviceControlPolicyControllerPutContent,
|
|
173
|
+
serviceControlPolicyControllerPutDescription,
|
|
174
|
+
serviceControlPolicyControllerPutName,
|
|
175
|
+
serviceControlPolicyControllerPutTags,
|
|
176
|
+
serviceControlPolicyControllerPutTarget,
|
|
177
|
+
vpnControllerCreate,
|
|
178
|
+
vpnControllerDelete,
|
|
179
|
+
vpnControllerGet,
|
|
180
|
+
vpnControllerList,
|
|
181
|
+
vpnControllerPutTags,
|
|
84
182
|
} from '../api/cloudPlatform'
|
|
85
183
|
import { DefaultAPIError } from '../error/DefaultAPIError'
|
|
184
|
+
import { scfDictionary } from '../error/dictionary/cloud-platform'
|
|
86
185
|
import { StackspotAPIError } from '../error/StackspotAPIError'
|
|
87
186
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient'
|
|
88
187
|
import { removeAuthorizationParam } from '../utils/remove-authorization-param'
|
|
89
|
-
import { scfDictionary } from '../error/dictionary/cloud-platform'
|
|
90
|
-
import { getApiAddresses } from '../api-addresses'
|
|
91
188
|
|
|
92
189
|
class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
93
190
|
constructor() {
|
|
@@ -322,6 +419,10 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
322
419
|
*/
|
|
323
420
|
editServiceControlPolicy = this.mutation(removeAuthorizationParam(putServiceControlPolicy))
|
|
324
421
|
/**
|
|
422
|
+
* Delete service control policy
|
|
423
|
+
*/
|
|
424
|
+
deleteServiceControlPolicy = this.mutation(removeAuthorizationParam(deleteServiceControlPolicy))
|
|
425
|
+
/**
|
|
325
426
|
* Create a service control policy
|
|
326
427
|
*/
|
|
327
428
|
createServiceControlPolicy = this.mutation(removeAuthorizationParam(createServiceControlPolicy))
|
|
@@ -350,52 +451,52 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
350
451
|
*/
|
|
351
452
|
deleteRole = this.mutation(removeAuthorizationParam(deleteRole))
|
|
352
453
|
/**
|
|
353
|
-
* Get Firewall Manager Policies by Foundation
|
|
454
|
+
* Get Firewall Manager Policies by Foundation V2
|
|
354
455
|
*/
|
|
355
456
|
getFirewallManagerPolicyByName =
|
|
356
457
|
this.query(removeAuthorizationParam(fmsPolicyControllerGet))
|
|
357
458
|
/**
|
|
358
|
-
* Delete Firewall Manager Policy
|
|
459
|
+
* Delete Firewall Manager Policy V2
|
|
359
460
|
*/
|
|
360
461
|
deleteFirewallManagerPolicy =
|
|
361
462
|
this.mutation(removeAuthorizationParam(fmsPolicyControllerDelete))
|
|
362
463
|
/**
|
|
363
|
-
* Get Firewall Manager Policies by Foundation
|
|
464
|
+
* Get Firewall Manager Policies by Foundation V2
|
|
364
465
|
*/
|
|
365
466
|
listFirewallManagerPolicies =
|
|
366
467
|
this.query(removeAuthorizationParam(fmsPolicyControllerList))
|
|
367
468
|
/**
|
|
368
|
-
* Create Firewall Manager Policy
|
|
469
|
+
* Create Firewall Manager Policy V2
|
|
369
470
|
*/
|
|
370
471
|
createFirewallManagerPolicy =
|
|
371
472
|
this.mutation(removeAuthorizationParam(fmsPolicyControllerCreate))
|
|
372
473
|
/**
|
|
373
|
-
* Get Firewall Manager Associate Admin Account by name
|
|
474
|
+
* Get Firewall Manager Associate Admin Account by name V2
|
|
374
475
|
*/
|
|
375
476
|
getFirewallManagerAssociateAdminAccountByName =
|
|
376
477
|
this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerGet))
|
|
377
478
|
/**
|
|
378
|
-
* Delete Firewall Manager Associate Admin Account
|
|
479
|
+
* Delete Firewall Manager Associate Admin Account V2
|
|
379
480
|
*/
|
|
380
481
|
deleteFirewallManagerAssociateAdminAccount =
|
|
381
482
|
this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerDelete))
|
|
382
483
|
/**
|
|
383
|
-
* Create Firewall Manager Associate Admin Account
|
|
484
|
+
* Create Firewall Manager Associate Admin Account V2
|
|
384
485
|
*/
|
|
385
486
|
createFirewallManagerAssociateAdminAccount =
|
|
386
487
|
this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerCreate))
|
|
387
488
|
/**
|
|
388
|
-
* Get Firewall Manager Associate Admin Account by name
|
|
489
|
+
* Get Firewall Manager Associate Admin Account by name V2
|
|
389
490
|
*/
|
|
390
491
|
listFirewallManagerAssociateAdminAccount =
|
|
391
492
|
this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerList))
|
|
392
493
|
/**
|
|
393
|
-
* Create a Identity Store Group
|
|
494
|
+
* Create a Identity Store Group V2
|
|
394
495
|
*/
|
|
395
496
|
createIdentityStoreGroup =
|
|
396
497
|
this.mutation(removeAuthorizationParam(identityStoreGroupControllerCreate))
|
|
397
498
|
/**
|
|
398
|
-
* List Identity Store Groups by Foundation Namespace
|
|
499
|
+
* List Identity Store Groups by Foundation Namespace V2
|
|
399
500
|
*/
|
|
400
501
|
listIdentityStoreGroup =
|
|
401
502
|
this.query(removeAuthorizationParam(identityStoreGroupControllerList))
|
|
@@ -420,12 +521,12 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
420
521
|
deletePermissionSet =
|
|
421
522
|
this.mutation(removeAuthorizationParam(permissionSetControllerDelete))
|
|
422
523
|
/**
|
|
423
|
-
* List Account assignment by Foundation Namespace
|
|
524
|
+
* List Account assignment by Foundation Namespace V2
|
|
424
525
|
*/
|
|
425
526
|
listAccountAssignments =
|
|
426
527
|
this.query(removeAuthorizationParam(accountAssignmentControllerList))
|
|
427
528
|
/**
|
|
428
|
-
* Create a Account Assignment
|
|
529
|
+
* Create a Account Assignment V2
|
|
429
530
|
*/
|
|
430
531
|
createAccountAssignment =
|
|
431
532
|
this.mutation(removeAuthorizationParam(accountAssignmentControllerCreate))
|
|
@@ -434,6 +535,487 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
434
535
|
*/
|
|
435
536
|
deleteAccountAssignment =
|
|
436
537
|
this.mutation(removeAuthorizationParam(accountAssignmentControllerDelete))
|
|
538
|
+
/**
|
|
539
|
+
* Update a network tags V2
|
|
540
|
+
*/
|
|
541
|
+
updateNetworkTagsV2 =
|
|
542
|
+
this.mutation(removeAuthorizationParam(networkControllerPutTags))
|
|
543
|
+
/**
|
|
544
|
+
* Update network name
|
|
545
|
+
*/
|
|
546
|
+
updateNetworkNameV2 =
|
|
547
|
+
this.mutation(removeAuthorizationParam(networkControllerPutNetworkName))
|
|
548
|
+
/**
|
|
549
|
+
* List networks V2
|
|
550
|
+
*/
|
|
551
|
+
listNetworksV2 =
|
|
552
|
+
this.query(removeAuthorizationParam(networkControllerList))
|
|
553
|
+
/**
|
|
554
|
+
* Update network name
|
|
555
|
+
*/
|
|
556
|
+
createNetworkV2 =
|
|
557
|
+
this.mutation(removeAuthorizationParam(networkControllerCreate))
|
|
558
|
+
/**
|
|
559
|
+
* List networks V2
|
|
560
|
+
*/
|
|
561
|
+
getNetworkV2 =
|
|
562
|
+
this.query(removeAuthorizationParam(networkControllerGet))
|
|
563
|
+
/**
|
|
564
|
+
* Delete a Network V2
|
|
565
|
+
*/
|
|
566
|
+
deleteNetworkV2 =
|
|
567
|
+
this.mutation(removeAuthorizationParam(networkControllerDelete))
|
|
568
|
+
/**
|
|
569
|
+
* Update project tags V2
|
|
570
|
+
*/
|
|
571
|
+
updateProjectTagsV2 =
|
|
572
|
+
this.mutation(removeAuthorizationParam(projectControllerPutTags))
|
|
573
|
+
/**
|
|
574
|
+
* Update project name V2
|
|
575
|
+
*/
|
|
576
|
+
updateProjectNameV2 =
|
|
577
|
+
this.mutation(removeAuthorizationParam(projectControllerPutName))
|
|
578
|
+
/**
|
|
579
|
+
* Update folder tags V2
|
|
580
|
+
*/
|
|
581
|
+
updateFolderTagsV2 =
|
|
582
|
+
this.mutation(removeAuthorizationParam(folderControllerPutTags))
|
|
583
|
+
/**
|
|
584
|
+
* Update folder name V2
|
|
585
|
+
*/
|
|
586
|
+
updateFolderNameV2 =
|
|
587
|
+
this.mutation(removeAuthorizationParam(folderControllerPutName))
|
|
588
|
+
/**
|
|
589
|
+
* Update dns records ttl V2
|
|
590
|
+
*/
|
|
591
|
+
updateDNSRecordsTTLV2 =
|
|
592
|
+
this.mutation(removeAuthorizationParam(dnsRecordControllerPutTtl))
|
|
593
|
+
/**
|
|
594
|
+
* Update dns records V2
|
|
595
|
+
*/
|
|
596
|
+
updateDNSRecordsV2 =
|
|
597
|
+
this.mutation(removeAuthorizationParam(dnsRecordControllerPutRecords))
|
|
598
|
+
/**
|
|
599
|
+
* Update certificates tags V2
|
|
600
|
+
*/
|
|
601
|
+
updateCertificatesTagsV2 =
|
|
602
|
+
this.mutation(removeAuthorizationParam(certificateControllerPutTags))
|
|
603
|
+
/**
|
|
604
|
+
* List vpns V2
|
|
605
|
+
*/
|
|
606
|
+
listVPNSV2 =
|
|
607
|
+
this.query(removeAuthorizationParam(vpnControllerList))
|
|
608
|
+
/**
|
|
609
|
+
* Create VPN V2
|
|
610
|
+
*/
|
|
611
|
+
createVPNV2 =
|
|
612
|
+
this.mutation(removeAuthorizationParam(vpnControllerCreate))
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Update VPN tags V2
|
|
616
|
+
*/
|
|
617
|
+
updateVPNSTagsV2 =
|
|
618
|
+
this.mutation(removeAuthorizationParam(vpnControllerPutTags))
|
|
619
|
+
/**
|
|
620
|
+
* List projects V2
|
|
621
|
+
*/
|
|
622
|
+
listProjectsV2 =
|
|
623
|
+
this.query(removeAuthorizationParam(projectControllerListByFolderRef))
|
|
624
|
+
/**
|
|
625
|
+
* Create project V2
|
|
626
|
+
*/
|
|
627
|
+
createProjectV2 =
|
|
628
|
+
this.mutation(removeAuthorizationParam(projectControllerCreate))
|
|
629
|
+
/**
|
|
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
|
+
*/
|
|
767
|
+
getProjectByNameV2 =
|
|
768
|
+
this.query(removeAuthorizationParam(projectControllerGet))
|
|
769
|
+
/**
|
|
770
|
+
* Delete Project V2
|
|
771
|
+
*/
|
|
772
|
+
deleteProjectV2 =
|
|
773
|
+
this.mutation(removeAuthorizationParam(projectControllerDelete))
|
|
774
|
+
/**
|
|
775
|
+
* GET Permission set by name V2
|
|
776
|
+
*/
|
|
777
|
+
getPermissionSetByNameV2 =
|
|
778
|
+
this.query(removeAuthorizationParam(permissionSetControllerGet))
|
|
779
|
+
/**
|
|
780
|
+
* Get managed policy attachment by name V2
|
|
781
|
+
*/
|
|
782
|
+
getManagedPolicyAttachmentByNameV2 =
|
|
783
|
+
this.query(removeAuthorizationParam(managedPolicyAttachmentControllerGet))
|
|
784
|
+
/**
|
|
785
|
+
* Delete managed policy attachment V2
|
|
786
|
+
*/
|
|
787
|
+
deleteManagedPolicyAttachmentV2 =
|
|
788
|
+
this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerDelete))
|
|
789
|
+
/**
|
|
790
|
+
* Get identity store user by name V2
|
|
791
|
+
*/
|
|
792
|
+
getIdentityStoreUserByNameV2 =
|
|
793
|
+
this.query(removeAuthorizationParam(identityStoreUserControllerGet))
|
|
794
|
+
/**
|
|
795
|
+
* Delete identity store user V2
|
|
796
|
+
*/
|
|
797
|
+
deleteIdentityStoreUserV2 =
|
|
798
|
+
this.mutation(removeAuthorizationParam(identityStoreUserControllerDelete))
|
|
799
|
+
/**
|
|
800
|
+
* Get identity store membership by name V2
|
|
801
|
+
*/
|
|
802
|
+
getIdentityStoreMembershipByNameV2 =
|
|
803
|
+
this.query(removeAuthorizationParam(identityStoreMembershipControllerGet))
|
|
804
|
+
/**
|
|
805
|
+
* Delete identity store membership V2
|
|
806
|
+
*/
|
|
807
|
+
deleteIdentityStoreMembershipV2 =
|
|
808
|
+
this.mutation(removeAuthorizationParam(identityStoreMembershipControllerDelete))
|
|
809
|
+
/**
|
|
810
|
+
* Get identity store groups by name V2
|
|
811
|
+
*/
|
|
812
|
+
getIdentityStoreGroupsByNameV2 =
|
|
813
|
+
this.query(removeAuthorizationParam(identityStoreGroupControllerGet))
|
|
814
|
+
/**
|
|
815
|
+
* Get identity centers by name V2
|
|
816
|
+
*/
|
|
817
|
+
getIdentityCentersByNameV2 =
|
|
818
|
+
this.query(removeAuthorizationParam(identityCenterControllerGet))
|
|
819
|
+
/**
|
|
820
|
+
* Delete identity centers V2
|
|
821
|
+
*/
|
|
822
|
+
deleteIdentityCentersV2 =
|
|
823
|
+
this.mutation(removeAuthorizationParam(identityCenterControllerDelete))
|
|
824
|
+
/**
|
|
825
|
+
* Get folder by name V2
|
|
826
|
+
*/
|
|
827
|
+
getFolderByNameV2 =
|
|
828
|
+
this.query(removeAuthorizationParam(folderControllerGet))
|
|
829
|
+
/**
|
|
830
|
+
* Delete folder V2
|
|
831
|
+
*/
|
|
832
|
+
deleteFolderV2 =
|
|
833
|
+
this.mutation(removeAuthorizationParam(folderControllerDelete))
|
|
834
|
+
/**
|
|
835
|
+
* Get firewall by name V2
|
|
836
|
+
*/
|
|
837
|
+
getFirewallByNameV2 =
|
|
838
|
+
this.query(removeAuthorizationParam(firewallControllerGet))
|
|
839
|
+
/**
|
|
840
|
+
* Delete firewall V2
|
|
841
|
+
*/
|
|
842
|
+
deleteFirewallV2 =
|
|
843
|
+
this.mutation(removeAuthorizationParam(firewallControllerDelete))
|
|
844
|
+
/**
|
|
845
|
+
* Get DNS zone by name V2
|
|
846
|
+
*/
|
|
847
|
+
getDNSZoneByNameV2 =
|
|
848
|
+
this.query(removeAuthorizationParam(dnsZoneControllerGet))
|
|
849
|
+
/**
|
|
850
|
+
* Delete DNS zone V2
|
|
851
|
+
*/
|
|
852
|
+
deleteDNSZoneV2 =
|
|
853
|
+
this.mutation(removeAuthorizationParam(dnsZoneControllerDelete))
|
|
854
|
+
/**
|
|
855
|
+
* Get DNS record by name V2
|
|
856
|
+
*/
|
|
857
|
+
getDNSRecordByNameV2 =
|
|
858
|
+
this.query(removeAuthorizationParam(dnsRecordControllerGet))
|
|
859
|
+
/**
|
|
860
|
+
* Delete DNS record V2
|
|
861
|
+
*/
|
|
862
|
+
deleteDNSRecordV2 =
|
|
863
|
+
this.mutation(removeAuthorizationParam(dnsRecordControllerDelete))
|
|
864
|
+
/**
|
|
865
|
+
* Get Customer Policy Attachment by name V2
|
|
866
|
+
*/
|
|
867
|
+
getCustomerPolicyAttachmentV2 =
|
|
868
|
+
this.query(removeAuthorizationParam(customerPolicyAttachmentControllerGet))
|
|
869
|
+
/**
|
|
870
|
+
* Delete Customer Policy attachment V2
|
|
871
|
+
*/
|
|
872
|
+
deleteCustomerPolicyAttachmentV2 =
|
|
873
|
+
this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerDelete))
|
|
874
|
+
/**
|
|
875
|
+
* Get CIDR by name V2
|
|
876
|
+
*/
|
|
877
|
+
getCIDRByNameV2 =
|
|
878
|
+
this.query(removeAuthorizationParam(cidrControllerGet))
|
|
879
|
+
/**
|
|
880
|
+
* Delete CIDR V2
|
|
881
|
+
*/
|
|
882
|
+
deleteCIDRV2 =
|
|
883
|
+
this.mutation(removeAuthorizationParam(cidrControllerDelete))
|
|
884
|
+
/**
|
|
885
|
+
* Get Certificate by name V2
|
|
886
|
+
*/
|
|
887
|
+
getCertificateByNameV2 =
|
|
888
|
+
this.query(removeAuthorizationParam(certificateControllerGet))
|
|
889
|
+
/**
|
|
890
|
+
* Delete Certificate V2
|
|
891
|
+
*/
|
|
892
|
+
deleteCertificateV2 =
|
|
893
|
+
this.mutation(removeAuthorizationParam(certificateControllerDelete))
|
|
894
|
+
/**
|
|
895
|
+
* Get Account Assignments by name V2
|
|
896
|
+
*/
|
|
897
|
+
getAccountAssignmentsByNameV2 =
|
|
898
|
+
this.query(removeAuthorizationParam(accountAssignmentControllerGet))
|
|
899
|
+
/**
|
|
900
|
+
* Get OIDC
|
|
901
|
+
*/
|
|
902
|
+
getOIDCV2 =
|
|
903
|
+
this.query(removeAuthorizationParam(getOidc))
|
|
904
|
+
/**
|
|
905
|
+
* Get Finops
|
|
906
|
+
*/
|
|
907
|
+
getFinopsV2 =
|
|
908
|
+
this.query(removeAuthorizationParam(finOpsControllerGet))
|
|
909
|
+
/**
|
|
910
|
+
* Create Foundation V2
|
|
911
|
+
*/
|
|
912
|
+
createFoundationV2 =
|
|
913
|
+
this.mutation(removeAuthorizationParam(foundationControllerCreate))
|
|
914
|
+
/**
|
|
915
|
+
* List Foundations V2
|
|
916
|
+
*/
|
|
917
|
+
listFoundationsV2 =
|
|
918
|
+
this.query(removeAuthorizationParam(foundationControllerList))
|
|
919
|
+
/**
|
|
920
|
+
* Get Foundation V2
|
|
921
|
+
*/
|
|
922
|
+
getFoundationV2 =
|
|
923
|
+
this.query(removeAuthorizationParam(foundationControllerGet))
|
|
924
|
+
/**
|
|
925
|
+
* List Boundaries V2
|
|
926
|
+
*/
|
|
927
|
+
listBoundariesV2 =
|
|
928
|
+
this.query(removeAuthorizationParam(boundaryControllerList))
|
|
929
|
+
/**
|
|
930
|
+
* Create Boundary V2
|
|
931
|
+
*/
|
|
932
|
+
createBoundaryV2 =
|
|
933
|
+
this.mutation(removeAuthorizationParam(boundaryControllerCreate))
|
|
934
|
+
/**
|
|
935
|
+
* Get Boundary by name V2
|
|
936
|
+
*/
|
|
937
|
+
getBoundaryByNameV2 =
|
|
938
|
+
this.query(removeAuthorizationParam(boundaryControllerGet))
|
|
939
|
+
/**
|
|
940
|
+
* Delete Boundary V2
|
|
941
|
+
*/
|
|
942
|
+
deleteBoundaryV2 =
|
|
943
|
+
this.mutation(removeAuthorizationParam(boundaryControllerDelete))
|
|
944
|
+
/**
|
|
945
|
+
* Update Boundary tags V2
|
|
946
|
+
*/
|
|
947
|
+
updateBoundaryTagsV2 =
|
|
948
|
+
this.mutation(removeAuthorizationParam(boundaryControllerPutTags))
|
|
949
|
+
/**
|
|
950
|
+
* List Boundary SSOs V2
|
|
951
|
+
*/
|
|
952
|
+
listBoundarySsosV2 =
|
|
953
|
+
this.query(removeAuthorizationParam(boundarySsoControllerList))
|
|
954
|
+
/**
|
|
955
|
+
* Create Boundary SSO V2
|
|
956
|
+
*/
|
|
957
|
+
createBoundarySsoV2 =
|
|
958
|
+
this.mutation(removeAuthorizationParam(boundarySsoControllerCreate))
|
|
959
|
+
/**
|
|
960
|
+
* Get Boundary SSO by name V2
|
|
961
|
+
*/
|
|
962
|
+
getBoundarySsoByNameV2 =
|
|
963
|
+
this.query(removeAuthorizationParam(boundarySsoControllerGet))
|
|
964
|
+
/**
|
|
965
|
+
* Delete Boundary SSO V2
|
|
966
|
+
*/
|
|
967
|
+
deleteBoundarySsoV2 =
|
|
968
|
+
this.mutation(removeAuthorizationParam(boundarySsoControllerDelete))
|
|
969
|
+
/**
|
|
970
|
+
* Update Boundary SSO tags V2
|
|
971
|
+
*/
|
|
972
|
+
updateBoundarySsoTagsV2 =
|
|
973
|
+
this.mutation(removeAuthorizationParam(boundarySsoControllerPutTags))
|
|
974
|
+
/**
|
|
975
|
+
* List Service Control Policies V2
|
|
976
|
+
*/
|
|
977
|
+
listServiceControlPoliciesV2 =
|
|
978
|
+
this.query(removeAuthorizationParam(serviceControlPolicyControllerList))
|
|
979
|
+
/**
|
|
980
|
+
* Create Service Control Policy V2
|
|
981
|
+
*/
|
|
982
|
+
createServiceControlPolicyV2 =
|
|
983
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerCreate))
|
|
984
|
+
/**
|
|
985
|
+
* Get Service Control Policy by name V2
|
|
986
|
+
*/
|
|
987
|
+
getServiceControlPolicyByNameV2 =
|
|
988
|
+
this.query(removeAuthorizationParam(serviceControlPolicyControllerGet))
|
|
989
|
+
/**
|
|
990
|
+
* Delete Service Control Policy V2
|
|
991
|
+
*/
|
|
992
|
+
deleteServiceControlPolicyV2 =
|
|
993
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerDelete))
|
|
994
|
+
/**
|
|
995
|
+
* Update Service Control Policy target V2
|
|
996
|
+
*/
|
|
997
|
+
updateServiceControlPolicyTargetV2 =
|
|
998
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTarget))
|
|
999
|
+
/**
|
|
1000
|
+
* Update Service Control Policy tags V2
|
|
1001
|
+
*/
|
|
1002
|
+
updateServiceControlPolicyTagsV2 =
|
|
1003
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTags))
|
|
1004
|
+
/**
|
|
1005
|
+
* Update Service Control Policy name V2
|
|
1006
|
+
*/
|
|
1007
|
+
updateServiceControlPolicyNameV2 =
|
|
1008
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutName))
|
|
1009
|
+
/**
|
|
1010
|
+
* Update Service Control Policy description V2
|
|
1011
|
+
*/
|
|
1012
|
+
updateServiceControlPolicyDescriptionV2 =
|
|
1013
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutDescription))
|
|
1014
|
+
/**
|
|
1015
|
+
* Update Service Control Policy content V2
|
|
1016
|
+
*/
|
|
1017
|
+
updateServiceControlPolicyContentV2 =
|
|
1018
|
+
this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutContent))
|
|
437
1019
|
}
|
|
438
1020
|
|
|
439
1021
|
export const cloudPlatformClient = new CloudPlatformClient()
|