@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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.236.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.235.3...portal-network@v0.236.0) (2026-06-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* cloud platform v2 ([#2162](https://github.com/stack-spot/portal-commons/issues/2162)) ([9079232](https://github.com/stack-spot/portal-commons/commit/9079232daf6464cc1cc5d3dec0846bd599006e56))
|
|
9
|
+
|
|
3
10
|
## [0.235.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.235.2...portal-network@v0.235.3) (2026-05-22)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -13,6 +13,11 @@ export type Tag = {
|
|
|
13
13
|
key: string;
|
|
14
14
|
value?: string;
|
|
15
15
|
};
|
|
16
|
+
export type Target = {
|
|
17
|
+
folderIds: string[];
|
|
18
|
+
projectIds: string[];
|
|
19
|
+
};
|
|
20
|
+
export type JsonNode = any;
|
|
16
21
|
export type RoleMetadata = {
|
|
17
22
|
creationTimestamp?: string;
|
|
18
23
|
deletionTimestamp?: string;
|
|
@@ -307,6 +312,80 @@ export type ResourceMetadata = {
|
|
|
307
312
|
deletionTimestamp?: string;
|
|
308
313
|
uid?: string;
|
|
309
314
|
};
|
|
315
|
+
export type FoundationSpec = {
|
|
316
|
+
region: string;
|
|
317
|
+
masterAccountId: string;
|
|
318
|
+
auditAccountId: string;
|
|
319
|
+
logArchiveAccountId: string;
|
|
320
|
+
orgId: string;
|
|
321
|
+
portfolioId: string;
|
|
322
|
+
prefix: string;
|
|
323
|
+
tags: Tag[];
|
|
324
|
+
secAccountTags: Tag[];
|
|
325
|
+
};
|
|
326
|
+
export type ResourceCondition = {
|
|
327
|
+
state: "READY" | "PENDING" | "ERROR" | "UNKNOWN" | "DELETING";
|
|
328
|
+
lastUpdateTimestamp: string;
|
|
329
|
+
message?: string;
|
|
330
|
+
};
|
|
331
|
+
export type Pool = {
|
|
332
|
+
arn?: string;
|
|
333
|
+
id?: string;
|
|
334
|
+
};
|
|
335
|
+
export type Pools = {
|
|
336
|
+
core?: Pool;
|
|
337
|
+
workload?: Pool;
|
|
338
|
+
};
|
|
339
|
+
export type Scopes = {
|
|
340
|
+
privateId?: string;
|
|
341
|
+
publicId?: string;
|
|
342
|
+
};
|
|
343
|
+
export type Ipam = {
|
|
344
|
+
arn?: string;
|
|
345
|
+
id?: string;
|
|
346
|
+
pools?: Pools;
|
|
347
|
+
scopes?: Scopes;
|
|
348
|
+
};
|
|
349
|
+
export type RouteTables = {
|
|
350
|
+
devopsId?: string;
|
|
351
|
+
spokeId?: string;
|
|
352
|
+
};
|
|
353
|
+
export type TransitGateway = {
|
|
354
|
+
id?: string;
|
|
355
|
+
routeTables?: RouteTables;
|
|
356
|
+
};
|
|
357
|
+
export type CoreAccount = {
|
|
358
|
+
accountId?: string;
|
|
359
|
+
attachmentId?: string;
|
|
360
|
+
firewallSubnetIds?: string[];
|
|
361
|
+
ipam?: Ipam;
|
|
362
|
+
privateRouteTableIds?: string[];
|
|
363
|
+
privateSubnetIds?: string[];
|
|
364
|
+
publicSubnetIds?: string[];
|
|
365
|
+
transitGateway?: TransitGateway;
|
|
366
|
+
vpcCidrs?: string[];
|
|
367
|
+
vpcId?: string;
|
|
368
|
+
};
|
|
369
|
+
export type CoreAccounts = {
|
|
370
|
+
audit?: CoreAccount;
|
|
371
|
+
logArchive?: CoreAccount;
|
|
372
|
+
secInbound?: CoreAccount;
|
|
373
|
+
secOutbound?: CoreAccount;
|
|
374
|
+
secSecurity?: CoreAccount;
|
|
375
|
+
secSharedServices?: CoreAccount;
|
|
376
|
+
secTransit?: CoreAccount;
|
|
377
|
+
};
|
|
378
|
+
export type FoundationStatus = {
|
|
379
|
+
condition: ResourceCondition;
|
|
380
|
+
coreAccounts?: CoreAccounts;
|
|
381
|
+
orgRootId?: string;
|
|
382
|
+
secTools?: SecTools;
|
|
383
|
+
};
|
|
384
|
+
export type Foundation = {
|
|
385
|
+
metadata: ResourceMetadata;
|
|
386
|
+
spec: FoundationSpec;
|
|
387
|
+
status?: FoundationStatus;
|
|
388
|
+
};
|
|
310
389
|
export type FoundationRef = {
|
|
311
390
|
name: string;
|
|
312
391
|
};
|
|
@@ -314,11 +393,7 @@ export type VpnSpec = {
|
|
|
314
393
|
foundationRef: FoundationRef;
|
|
315
394
|
destinationCidrBlock: string;
|
|
316
395
|
peerCustomerGatewayIp: string;
|
|
317
|
-
|
|
318
|
-
export type ResourceCondition = {
|
|
319
|
-
state: "READY" | "PENDING" | "ERROR" | "UNKNOWN" | "DELETING";
|
|
320
|
-
lastUpdateTimestamp: string;
|
|
321
|
-
message?: string;
|
|
396
|
+
tags: Tag[];
|
|
322
397
|
};
|
|
323
398
|
export type VpnStatus = {
|
|
324
399
|
condition: ResourceCondition;
|
|
@@ -370,6 +445,34 @@ export type PermissionSet = {
|
|
|
370
445
|
spec: PermissionSetSpec;
|
|
371
446
|
status?: PermissionSetStatus;
|
|
372
447
|
};
|
|
448
|
+
export type ProjectRef = {
|
|
449
|
+
name: string;
|
|
450
|
+
};
|
|
451
|
+
export type NetworkSpec = {
|
|
452
|
+
foundationRef: FoundationRef;
|
|
453
|
+
projectRef: ProjectRef;
|
|
454
|
+
prefixLength: number;
|
|
455
|
+
networkName: string;
|
|
456
|
+
networkType: "WORKLOAD" | "OUTBOUND" | "CORE";
|
|
457
|
+
tags: Tag[];
|
|
458
|
+
};
|
|
459
|
+
export type NetworkSubnet = {
|
|
460
|
+
az?: string;
|
|
461
|
+
cidr?: string;
|
|
462
|
+
id?: string;
|
|
463
|
+
"type": "NAT" | "PRIVATE" | "PUBLIC";
|
|
464
|
+
};
|
|
465
|
+
export type NetworkStatus = {
|
|
466
|
+
condition: ResourceCondition;
|
|
467
|
+
id?: string;
|
|
468
|
+
cidrs?: string[];
|
|
469
|
+
subnets: NetworkSubnet[];
|
|
470
|
+
};
|
|
471
|
+
export type Network = {
|
|
472
|
+
metadata: ResourceMetadata;
|
|
473
|
+
spec: NetworkSpec;
|
|
474
|
+
status?: NetworkStatus;
|
|
475
|
+
};
|
|
373
476
|
export type PermissionSetRef = {
|
|
374
477
|
name: string;
|
|
375
478
|
};
|
|
@@ -457,6 +560,7 @@ export type FolderSpec = {
|
|
|
457
560
|
foundationRef: FoundationRef;
|
|
458
561
|
folderRef?: FolderRef;
|
|
459
562
|
name: string;
|
|
563
|
+
tags: Tag[];
|
|
460
564
|
};
|
|
461
565
|
export type FolderStatus = {
|
|
462
566
|
condition: ResourceCondition;
|
|
@@ -573,13 +677,11 @@ export type Firewall = {
|
|
|
573
677
|
spec: FirewallSpec;
|
|
574
678
|
status?: FirewallStatus;
|
|
575
679
|
};
|
|
576
|
-
export type ProjectRef = {
|
|
577
|
-
name: string;
|
|
578
|
-
};
|
|
579
680
|
export type DnsZoneSpec = {
|
|
580
681
|
foundationRef: FoundationRef;
|
|
581
682
|
projectRef?: ProjectRef;
|
|
582
683
|
domain: string;
|
|
684
|
+
tags: Tag[];
|
|
583
685
|
};
|
|
584
686
|
export type DnsZoneStatus = {
|
|
585
687
|
condition: ResourceCondition;
|
|
@@ -631,6 +733,7 @@ export type CustomerPolicyAttachment = {
|
|
|
631
733
|
export type CidrSpec = {
|
|
632
734
|
foundationRef: FoundationRef;
|
|
633
735
|
cidr: string;
|
|
736
|
+
tags: Tag[];
|
|
634
737
|
};
|
|
635
738
|
export type CidrStatus = {
|
|
636
739
|
condition: ResourceCondition;
|
|
@@ -646,14 +749,67 @@ export type CertificateSpec = {
|
|
|
646
749
|
tags: Tag[];
|
|
647
750
|
domainName: string;
|
|
648
751
|
};
|
|
752
|
+
export type DomainValidationOption = {
|
|
753
|
+
domainName?: string;
|
|
754
|
+
resourceRecordName?: string;
|
|
755
|
+
resourceRecordType?: string;
|
|
756
|
+
resourceRecordValue?: string;
|
|
757
|
+
};
|
|
649
758
|
export type CertificateStatus = {
|
|
650
759
|
condition: ResourceCondition;
|
|
760
|
+
domainName?: string;
|
|
761
|
+
domainValidationOptions?: DomainValidationOption[];
|
|
762
|
+
keyAlgorithm?: string;
|
|
763
|
+
notAfter?: string;
|
|
764
|
+
notBefore?: string;
|
|
765
|
+
subjectAlternativeNames?: string[];
|
|
766
|
+
"type"?: string;
|
|
767
|
+
validationEmails?: string[];
|
|
768
|
+
validationMethod?: string;
|
|
651
769
|
};
|
|
652
770
|
export type Certificate = {
|
|
653
771
|
metadata: ResourceMetadata;
|
|
654
772
|
spec: CertificateSpec;
|
|
655
773
|
status?: CertificateStatus;
|
|
656
774
|
};
|
|
775
|
+
export type BoundarySsoSpec = {
|
|
776
|
+
foundationRef: FoundationRef;
|
|
777
|
+
policyDocument: JsonNode;
|
|
778
|
+
tags: Tag[];
|
|
779
|
+
};
|
|
780
|
+
export type BoundarySsoStatus = {
|
|
781
|
+
condition: ResourceCondition;
|
|
782
|
+
stackSetName?: string;
|
|
783
|
+
stackSetId?: string;
|
|
784
|
+
stackSetArn?: string;
|
|
785
|
+
policyArn?: string;
|
|
786
|
+
ready?: boolean;
|
|
787
|
+
message?: string;
|
|
788
|
+
};
|
|
789
|
+
export type BoundarySso = {
|
|
790
|
+
metadata: ResourceMetadata;
|
|
791
|
+
spec: BoundarySsoSpec;
|
|
792
|
+
status?: BoundarySsoStatus;
|
|
793
|
+
};
|
|
794
|
+
export type BoundarySpec = {
|
|
795
|
+
foundationRef: FoundationRef;
|
|
796
|
+
policyDocument: JsonNode;
|
|
797
|
+
tags: Tag[];
|
|
798
|
+
};
|
|
799
|
+
export type BoundaryStatus = {
|
|
800
|
+
condition: ResourceCondition;
|
|
801
|
+
stackSetName?: string;
|
|
802
|
+
stackSetId?: string;
|
|
803
|
+
stackSetArn?: string;
|
|
804
|
+
policyArn?: string;
|
|
805
|
+
ready?: boolean;
|
|
806
|
+
message?: string;
|
|
807
|
+
};
|
|
808
|
+
export type Boundary = {
|
|
809
|
+
metadata: ResourceMetadata;
|
|
810
|
+
spec: BoundarySpec;
|
|
811
|
+
status?: BoundaryStatus;
|
|
812
|
+
};
|
|
657
813
|
export type AccountAssignmentSpec = {
|
|
658
814
|
foundationRef: FoundationRef;
|
|
659
815
|
permissionSetRef: PermissionSetRef;
|
|
@@ -805,7 +961,6 @@ export type ListBoundaryResponse = {
|
|
|
805
961
|
pendingResources: boolean;
|
|
806
962
|
content: BoundaryResponse[];
|
|
807
963
|
};
|
|
808
|
-
export type JsonNode = any;
|
|
809
964
|
export type CreateBoundaryRequest = {
|
|
810
965
|
name: string;
|
|
811
966
|
description: string;
|
|
@@ -832,6 +987,36 @@ export type VpnConfigurationResponse = {
|
|
|
832
987
|
foundationId: string;
|
|
833
988
|
configuration: Configuration;
|
|
834
989
|
};
|
|
990
|
+
export declare function vpnControllerPutTags({ $namespace, name, body }: {
|
|
991
|
+
$namespace: string;
|
|
992
|
+
name: string;
|
|
993
|
+
body: Tag[];
|
|
994
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
995
|
+
export declare function serviceControlPolicyControllerPutTarget({ $namespace, name, target }: {
|
|
996
|
+
$namespace: string;
|
|
997
|
+
name: string;
|
|
998
|
+
target: Target;
|
|
999
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1000
|
+
export declare function serviceControlPolicyControllerPutTags({ $namespace, name, body }: {
|
|
1001
|
+
$namespace: string;
|
|
1002
|
+
name: string;
|
|
1003
|
+
body: Tag[];
|
|
1004
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1005
|
+
export declare function serviceControlPolicyControllerPutName({ $namespace, name, body }: {
|
|
1006
|
+
$namespace: string;
|
|
1007
|
+
name: string;
|
|
1008
|
+
body: string;
|
|
1009
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1010
|
+
export declare function serviceControlPolicyControllerPutDescription({ $namespace, name, body }: {
|
|
1011
|
+
$namespace: string;
|
|
1012
|
+
name: string;
|
|
1013
|
+
body: string;
|
|
1014
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1015
|
+
export declare function serviceControlPolicyControllerPutContent({ $namespace, name, jsonNode }: {
|
|
1016
|
+
$namespace: string;
|
|
1017
|
+
name: string;
|
|
1018
|
+
jsonNode: JsonNode;
|
|
1019
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
835
1020
|
export declare function projectControllerPutTags({ $namespace, name, body }: {
|
|
836
1021
|
$namespace: string;
|
|
837
1022
|
name: string;
|
|
@@ -842,6 +1027,16 @@ export declare function projectControllerPutName({ $namespace, name, body }: {
|
|
|
842
1027
|
name: string;
|
|
843
1028
|
body: string;
|
|
844
1029
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1030
|
+
export declare function networkControllerPutTags({ $namespace, name, body }: {
|
|
1031
|
+
$namespace: string;
|
|
1032
|
+
name: string;
|
|
1033
|
+
body: Tag[];
|
|
1034
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1035
|
+
export declare function networkControllerPutNetworkName({ $namespace, name, body }: {
|
|
1036
|
+
$namespace: string;
|
|
1037
|
+
name: string;
|
|
1038
|
+
body: string;
|
|
1039
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
845
1040
|
export declare function folderControllerPutTags({ $namespace, name, body }: {
|
|
846
1041
|
$namespace: string;
|
|
847
1042
|
name: string;
|
|
@@ -852,6 +1047,11 @@ export declare function folderControllerPutName({ $namespace, name, body }: {
|
|
|
852
1047
|
name: string;
|
|
853
1048
|
body: string;
|
|
854
1049
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1050
|
+
export declare function dnsZoneControllerPutTags({ $namespace, name, body }: {
|
|
1051
|
+
$namespace: string;
|
|
1052
|
+
name: string;
|
|
1053
|
+
body: Tag[];
|
|
1054
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
855
1055
|
export declare function dnsRecordControllerPutTtl({ $namespace, name, body }: {
|
|
856
1056
|
$namespace: string;
|
|
857
1057
|
name: string;
|
|
@@ -862,11 +1062,26 @@ export declare function dnsRecordControllerPutRecords({ $namespace, name, body }
|
|
|
862
1062
|
name: string;
|
|
863
1063
|
body: string[];
|
|
864
1064
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1065
|
+
export declare function cidrControllerPutTags({ $namespace, name, body }: {
|
|
1066
|
+
$namespace: string;
|
|
1067
|
+
name: string;
|
|
1068
|
+
body: Tag[];
|
|
1069
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
865
1070
|
export declare function certificateControllerPutTags({ $namespace, name, body }: {
|
|
866
1071
|
$namespace: string;
|
|
867
1072
|
name: string;
|
|
868
1073
|
body: Tag[];
|
|
869
1074
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1075
|
+
export declare function boundarySsoControllerPutTags({ $namespace, name, body }: {
|
|
1076
|
+
$namespace: string;
|
|
1077
|
+
name: string;
|
|
1078
|
+
body: Tag[];
|
|
1079
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1080
|
+
export declare function boundaryControllerPutTags({ $namespace, name, body }: {
|
|
1081
|
+
$namespace: string;
|
|
1082
|
+
name: string;
|
|
1083
|
+
body: Tag[];
|
|
1084
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
870
1085
|
export declare function getRole({ roleName }: {
|
|
871
1086
|
roleName: string;
|
|
872
1087
|
}, opts?: Oazapfts.RequestOpts): Promise<Role>;
|
|
@@ -986,6 +1201,10 @@ export declare function putBoundarySsoDescription({ foundationId, boundarySsoId,
|
|
|
986
1201
|
boundarySsoId: string;
|
|
987
1202
|
body: string;
|
|
988
1203
|
}, opts?: Oazapfts.RequestOpts): Promise<BoundarySsoResponse>;
|
|
1204
|
+
export declare function foundationControllerList(opts?: Oazapfts.RequestOpts): Promise<Foundation[]>;
|
|
1205
|
+
export declare function foundationControllerCreate({ foundationSpec }: {
|
|
1206
|
+
foundationSpec: FoundationSpec;
|
|
1207
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
989
1208
|
export declare function vpnControllerList({ $namespace }: {
|
|
990
1209
|
$namespace: string;
|
|
991
1210
|
}, opts?: Oazapfts.RequestOpts): Promise<Vpn[]>;
|
|
@@ -993,8 +1212,16 @@ export declare function vpnControllerCreate({ $namespace, vpnSpec }: {
|
|
|
993
1212
|
$namespace: string;
|
|
994
1213
|
vpnSpec: VpnSpec;
|
|
995
1214
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
996
|
-
export declare function
|
|
1215
|
+
export declare function serviceControlPolicyControllerList({ $namespace }: {
|
|
1216
|
+
$namespace: string;
|
|
1217
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ServiceControlPolicy[]>;
|
|
1218
|
+
export declare function serviceControlPolicyControllerCreate({ $namespace, serviceControlPolicySpec }: {
|
|
1219
|
+
$namespace: string;
|
|
1220
|
+
serviceControlPolicySpec: ServiceControlPolicySpec;
|
|
1221
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1222
|
+
export declare function projectControllerListByFolderRef({ $namespace, folderRef }: {
|
|
997
1223
|
$namespace: string;
|
|
1224
|
+
folderRef?: string;
|
|
998
1225
|
}, opts?: Oazapfts.RequestOpts): Promise<Project[]>;
|
|
999
1226
|
export declare function projectControllerCreate({ $namespace, projectSpec }: {
|
|
1000
1227
|
$namespace: string;
|
|
@@ -1007,6 +1234,13 @@ export declare function permissionSetControllerCreate({ $namespace, permissionSe
|
|
|
1007
1234
|
$namespace: string;
|
|
1008
1235
|
permissionSetSpec: PermissionSetSpec;
|
|
1009
1236
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1237
|
+
export declare function networkControllerList({ $namespace }: {
|
|
1238
|
+
$namespace: string;
|
|
1239
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Network[]>;
|
|
1240
|
+
export declare function networkControllerCreate({ $namespace, networkSpec }: {
|
|
1241
|
+
$namespace: string;
|
|
1242
|
+
networkSpec: NetworkSpec;
|
|
1243
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1010
1244
|
export declare function managedPolicyAttachmentControllerList({ $namespace }: {
|
|
1011
1245
|
$namespace: string;
|
|
1012
1246
|
}, opts?: Oazapfts.RequestOpts): Promise<ManagedPolicyAttachment[]>;
|
|
@@ -1042,8 +1276,9 @@ export declare function identityCenterControllerCreate({ $namespace, identityCen
|
|
|
1042
1276
|
$namespace: string;
|
|
1043
1277
|
identityCenterSpec: IdentityCenterSpec;
|
|
1044
1278
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1045
|
-
export declare function
|
|
1279
|
+
export declare function folderControllerListByFolderRef({ $namespace, folderName }: {
|
|
1046
1280
|
$namespace: string;
|
|
1281
|
+
folderName?: string;
|
|
1047
1282
|
}, opts?: Oazapfts.RequestOpts): Promise<Folder[]>;
|
|
1048
1283
|
export declare function folderControllerCreate({ $namespace, folderSpec }: {
|
|
1049
1284
|
$namespace: string;
|
|
@@ -1070,17 +1305,18 @@ export declare function firewallControllerCreate({ $namespace, firewallSpec }: {
|
|
|
1070
1305
|
$namespace: string;
|
|
1071
1306
|
firewallSpec: FirewallSpec;
|
|
1072
1307
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1073
|
-
export declare function
|
|
1308
|
+
export declare function dnsZoneControllerListBy({ $namespace, $type, projectName }: {
|
|
1074
1309
|
$namespace: string;
|
|
1075
1310
|
$type: "PUBLIC" | "PRIVATE";
|
|
1076
|
-
projectName
|
|
1311
|
+
projectName?: string;
|
|
1077
1312
|
}, opts?: Oazapfts.RequestOpts): Promise<DnsZone[]>;
|
|
1078
1313
|
export declare function dnsZoneControllerCreate({ $namespace, dnsZoneSpec }: {
|
|
1079
1314
|
$namespace: string;
|
|
1080
1315
|
dnsZoneSpec: DnsZoneSpec;
|
|
1081
1316
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1082
|
-
export declare function
|
|
1317
|
+
export declare function dnsRecordControllerListBy({ $namespace, dnsZoneName }: {
|
|
1083
1318
|
$namespace: string;
|
|
1319
|
+
dnsZoneName?: string;
|
|
1084
1320
|
}, opts?: Oazapfts.RequestOpts): Promise<DnsRecord[]>;
|
|
1085
1321
|
export declare function dnsRecordControllerCreate({ $namespace, dnsRecordSpec }: {
|
|
1086
1322
|
$namespace: string;
|
|
@@ -1107,6 +1343,20 @@ export declare function certificateControllerCreate({ $namespace, certificateSpe
|
|
|
1107
1343
|
$namespace: string;
|
|
1108
1344
|
certificateSpec: CertificateSpec;
|
|
1109
1345
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1346
|
+
export declare function boundarySsoControllerList({ $namespace }: {
|
|
1347
|
+
$namespace: string;
|
|
1348
|
+
}, opts?: Oazapfts.RequestOpts): Promise<BoundarySso[]>;
|
|
1349
|
+
export declare function boundarySsoControllerCreate({ $namespace, boundarySsoSpec }: {
|
|
1350
|
+
$namespace: string;
|
|
1351
|
+
boundarySsoSpec: BoundarySsoSpec;
|
|
1352
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1353
|
+
export declare function boundaryControllerList({ $namespace }: {
|
|
1354
|
+
$namespace: string;
|
|
1355
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Boundary[]>;
|
|
1356
|
+
export declare function boundaryControllerCreate({ $namespace, boundarySpec }: {
|
|
1357
|
+
$namespace: string;
|
|
1358
|
+
boundarySpec: BoundarySpec;
|
|
1359
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1110
1360
|
export declare function accountAssignmentControllerList({ $namespace }: {
|
|
1111
1361
|
$namespace: string;
|
|
1112
1362
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountAssignment[]>;
|
|
@@ -1245,6 +1495,9 @@ export declare function createBoundarySso({ foundationId, createBoundarySsoReque
|
|
|
1245
1495
|
createBoundarySsoRequest: CreateBoundarySsoRequest;
|
|
1246
1496
|
}, opts?: Oazapfts.RequestOpts): Promise<BoundarySsoResponse>;
|
|
1247
1497
|
export declare function oidcControllerGet(opts?: Oazapfts.RequestOpts): Promise<string>;
|
|
1498
|
+
export declare function foundationControllerGet({ $namespace }: {
|
|
1499
|
+
$namespace: string;
|
|
1500
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Foundation>;
|
|
1248
1501
|
export declare function vpnControllerGet({ $namespace, name }: {
|
|
1249
1502
|
$namespace: string;
|
|
1250
1503
|
name: string;
|
|
@@ -1253,6 +1506,14 @@ export declare function vpnControllerDelete({ $namespace, name }: {
|
|
|
1253
1506
|
$namespace: string;
|
|
1254
1507
|
name: string;
|
|
1255
1508
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1509
|
+
export declare function serviceControlPolicyControllerGet({ $namespace, name }: {
|
|
1510
|
+
$namespace: string;
|
|
1511
|
+
name: string;
|
|
1512
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ServiceControlPolicy>;
|
|
1513
|
+
export declare function serviceControlPolicyControllerDelete({ $namespace, name }: {
|
|
1514
|
+
$namespace: string;
|
|
1515
|
+
name: string;
|
|
1516
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1256
1517
|
export declare function projectControllerGet({ $namespace, name }: {
|
|
1257
1518
|
$namespace: string;
|
|
1258
1519
|
name: string;
|
|
@@ -1269,6 +1530,14 @@ export declare function permissionSetControllerDelete({ $namespace, name }: {
|
|
|
1269
1530
|
$namespace: string;
|
|
1270
1531
|
name: string;
|
|
1271
1532
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1533
|
+
export declare function networkControllerGet({ $namespace, name }: {
|
|
1534
|
+
$namespace: string;
|
|
1535
|
+
name: string;
|
|
1536
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Network>;
|
|
1537
|
+
export declare function networkControllerDelete({ $namespace, name }: {
|
|
1538
|
+
$namespace: string;
|
|
1539
|
+
name: string;
|
|
1540
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1272
1541
|
export declare function managedPolicyAttachmentControllerGet({ $namespace, name }: {
|
|
1273
1542
|
$namespace: string;
|
|
1274
1543
|
name: string;
|
|
@@ -1381,6 +1650,22 @@ export declare function certificateControllerDelete({ $namespace, name }: {
|
|
|
1381
1650
|
$namespace: string;
|
|
1382
1651
|
name: string;
|
|
1383
1652
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1653
|
+
export declare function boundarySsoControllerGet({ $namespace, name }: {
|
|
1654
|
+
$namespace: string;
|
|
1655
|
+
name: string;
|
|
1656
|
+
}, opts?: Oazapfts.RequestOpts): Promise<BoundarySso>;
|
|
1657
|
+
export declare function boundarySsoControllerDelete({ $namespace, name }: {
|
|
1658
|
+
$namespace: string;
|
|
1659
|
+
name: string;
|
|
1660
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1661
|
+
export declare function boundaryControllerGet({ $namespace, name }: {
|
|
1662
|
+
$namespace: string;
|
|
1663
|
+
name: string;
|
|
1664
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Boundary>;
|
|
1665
|
+
export declare function boundaryControllerDelete({ $namespace, name }: {
|
|
1666
|
+
$namespace: string;
|
|
1667
|
+
name: string;
|
|
1668
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1384
1669
|
export declare function accountAssignmentControllerGet({ $namespace, name }: {
|
|
1385
1670
|
$namespace: string;
|
|
1386
1671
|
name: string;
|
|
@@ -1389,6 +1674,7 @@ export declare function accountAssignmentControllerDelete({ $namespace, name }:
|
|
|
1389
1674
|
$namespace: string;
|
|
1390
1675
|
name: string;
|
|
1391
1676
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1677
|
+
export declare function finOpsControllerGet(opts?: Oazapfts.RequestOpts): Promise<string>;
|
|
1392
1678
|
export declare function getOidc(opts?: Oazapfts.RequestOpts): Promise<string>;
|
|
1393
1679
|
export declare function getFoundation({ authorization, xAccountId, foundationId }: {
|
|
1394
1680
|
authorization: string;
|