@stack-spot/portal-network 1.0.0-dev.1774882431676 → 1.0.0-dev.1775671719406
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 +27 -0
- package/dist/api/cloudPlatform.d.ts +649 -5
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +439 -0
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/apis.json +1 -1
- package/dist/client/cloud-platform.d.ts +55 -0
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +81 -3
- package/dist/client/cloud-platform.js.map +1 -1
- package/package.json +2 -2
- package/src/api/cloudPlatform.ts +1243 -127
- package/src/apis.json +1 -1
- package/src/client/cloud-platform.ts +55 -2
|
@@ -9,6 +9,10 @@ export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
|
|
|
9
9
|
export declare const servers: {
|
|
10
10
|
generatedServerUrl: string;
|
|
11
11
|
};
|
|
12
|
+
export type Tag = {
|
|
13
|
+
key: string;
|
|
14
|
+
value?: string;
|
|
15
|
+
};
|
|
12
16
|
export type RoleMetadata = {
|
|
13
17
|
creationTimestamp?: string;
|
|
14
18
|
deletionTimestamp?: string;
|
|
@@ -27,10 +31,13 @@ export type RoleSpec = {
|
|
|
27
31
|
cidr: RoleSpecPermission;
|
|
28
32
|
dnsRecord: RoleSpecPermission;
|
|
29
33
|
dnsZone: RoleSpecPermission;
|
|
34
|
+
fmsPolicy: RoleSpecPermission;
|
|
30
35
|
folder: RoleSpecPermission;
|
|
31
36
|
foundation: RoleSpecPermission;
|
|
37
|
+
iamIdentityCenter: RoleSpecPermission;
|
|
32
38
|
network: RoleSpecPermission;
|
|
33
39
|
project: RoleSpecPermission;
|
|
40
|
+
role: RoleSpecPermission;
|
|
34
41
|
serviceControlPolicy: RoleSpecPermission;
|
|
35
42
|
vpn: RoleSpecPermission;
|
|
36
43
|
};
|
|
@@ -38,10 +45,6 @@ export type Role = {
|
|
|
38
45
|
metadata: RoleMetadata;
|
|
39
46
|
spec: RoleSpec;
|
|
40
47
|
};
|
|
41
|
-
export type Tag = {
|
|
42
|
-
key: string;
|
|
43
|
-
value: string;
|
|
44
|
-
};
|
|
45
48
|
export type TunnelStatus = {
|
|
46
49
|
tunnel1?: string;
|
|
47
50
|
tunnel2?: string;
|
|
@@ -110,6 +113,7 @@ export type FoundationDetails = {
|
|
|
110
113
|
export type FoundationResponse = {
|
|
111
114
|
stackSpotAccountId: string;
|
|
112
115
|
foundationId: string;
|
|
116
|
+
foundationName: string;
|
|
113
117
|
details: FoundationDetails;
|
|
114
118
|
tags: Tag[];
|
|
115
119
|
status: "READY" | "PENDING" | "DELETING" | "ERROR";
|
|
@@ -293,6 +297,362 @@ export type BoundarySsoResponse = {
|
|
|
293
297
|
updatedAt: string;
|
|
294
298
|
deletedAt?: string;
|
|
295
299
|
};
|
|
300
|
+
export type ResourceMetadata = {
|
|
301
|
+
id: string;
|
|
302
|
+
name: string;
|
|
303
|
+
labels: {
|
|
304
|
+
[key: string]: string;
|
|
305
|
+
};
|
|
306
|
+
creationTimestamp: string;
|
|
307
|
+
deletionTimestamp?: string;
|
|
308
|
+
uid?: string;
|
|
309
|
+
};
|
|
310
|
+
export type FoundationRef = {
|
|
311
|
+
name: string;
|
|
312
|
+
};
|
|
313
|
+
export type VpnSpec = {
|
|
314
|
+
foundationRef: FoundationRef;
|
|
315
|
+
destinationCidrBlock: string;
|
|
316
|
+
peerCustomerGatewayIp: string;
|
|
317
|
+
};
|
|
318
|
+
export type ResourceCondition = {
|
|
319
|
+
state: "READY" | "PENDING" | "ERROR" | "UNKNOWN" | "DELETING";
|
|
320
|
+
lastUpdateTimestamp: string;
|
|
321
|
+
message?: string;
|
|
322
|
+
};
|
|
323
|
+
export type VpnStatus = {
|
|
324
|
+
condition: ResourceCondition;
|
|
325
|
+
};
|
|
326
|
+
export type Vpn = {
|
|
327
|
+
metadata: ResourceMetadata;
|
|
328
|
+
spec: VpnSpec;
|
|
329
|
+
status?: VpnStatus;
|
|
330
|
+
};
|
|
331
|
+
export type BoundaryPolicy = {
|
|
332
|
+
name: string;
|
|
333
|
+
path: string;
|
|
334
|
+
};
|
|
335
|
+
export type InlinePolicy = {
|
|
336
|
+
policy: string;
|
|
337
|
+
};
|
|
338
|
+
export type PermissionSetSpec = {
|
|
339
|
+
foundationRef: FoundationRef;
|
|
340
|
+
name: string;
|
|
341
|
+
description: string;
|
|
342
|
+
sessionDuration: string;
|
|
343
|
+
boundaryPolicy?: BoundaryPolicy;
|
|
344
|
+
inlinePolicy?: InlinePolicy;
|
|
345
|
+
};
|
|
346
|
+
export type PermissionSetStatus = {
|
|
347
|
+
condition: ResourceCondition;
|
|
348
|
+
arn?: string;
|
|
349
|
+
};
|
|
350
|
+
export type PermissionSet = {
|
|
351
|
+
metadata: ResourceMetadata;
|
|
352
|
+
spec: PermissionSetSpec;
|
|
353
|
+
status?: PermissionSetStatus;
|
|
354
|
+
};
|
|
355
|
+
export type PermissionSetRef = {
|
|
356
|
+
name: string;
|
|
357
|
+
};
|
|
358
|
+
export type ManagedPolicyAttachmentSpec = {
|
|
359
|
+
foundationRef: FoundationRef;
|
|
360
|
+
permissionSetRef: PermissionSetRef;
|
|
361
|
+
managedPolicyArn: string;
|
|
362
|
+
};
|
|
363
|
+
export type ManagedPolicyAttachmentStatus = {
|
|
364
|
+
condition: ResourceCondition;
|
|
365
|
+
id?: string;
|
|
366
|
+
};
|
|
367
|
+
export type ManagedPolicyAttachment = {
|
|
368
|
+
metadata: ResourceMetadata;
|
|
369
|
+
spec: ManagedPolicyAttachmentSpec;
|
|
370
|
+
status?: ManagedPolicyAttachmentStatus;
|
|
371
|
+
};
|
|
372
|
+
export type IdentityStoreUserSpec = {
|
|
373
|
+
foundationRef: FoundationRef;
|
|
374
|
+
givenName: string;
|
|
375
|
+
familyName: string;
|
|
376
|
+
primaryEmail: boolean;
|
|
377
|
+
email: string;
|
|
378
|
+
};
|
|
379
|
+
export type IdentityStoreUserStatus = {
|
|
380
|
+
condition: ResourceCondition;
|
|
381
|
+
userId?: string;
|
|
382
|
+
userName?: string;
|
|
383
|
+
displayName?: string;
|
|
384
|
+
};
|
|
385
|
+
export type IdentityStoreUser = {
|
|
386
|
+
metadata: ResourceMetadata;
|
|
387
|
+
spec: IdentityStoreUserSpec;
|
|
388
|
+
status?: IdentityStoreUserStatus;
|
|
389
|
+
};
|
|
390
|
+
export type IdentityStoreGroupRef = {
|
|
391
|
+
name: string;
|
|
392
|
+
};
|
|
393
|
+
export type IdentityStoreUserRef = {
|
|
394
|
+
name: string;
|
|
395
|
+
};
|
|
396
|
+
export type IdentityStoreMembershipSpec = {
|
|
397
|
+
foundationRef: FoundationRef;
|
|
398
|
+
identityStoreGroupRef: IdentityStoreGroupRef;
|
|
399
|
+
identityStoreUserRef: IdentityStoreUserRef;
|
|
400
|
+
};
|
|
401
|
+
export type IdentityStoreMembershipStatus = {
|
|
402
|
+
condition: ResourceCondition;
|
|
403
|
+
membershipId?: string;
|
|
404
|
+
};
|
|
405
|
+
export type IdentityStoreMembership = {
|
|
406
|
+
metadata: ResourceMetadata;
|
|
407
|
+
spec: IdentityStoreMembershipSpec;
|
|
408
|
+
status?: IdentityStoreMembershipStatus;
|
|
409
|
+
};
|
|
410
|
+
export type IdentityStoreGroupSpec = {
|
|
411
|
+
foundationRef: FoundationRef;
|
|
412
|
+
displayName: string;
|
|
413
|
+
description: string;
|
|
414
|
+
};
|
|
415
|
+
export type IdentityStoreGroupStatus = {
|
|
416
|
+
condition: ResourceCondition;
|
|
417
|
+
groupId?: string;
|
|
418
|
+
};
|
|
419
|
+
export type IdentityStoreGroup = {
|
|
420
|
+
metadata: ResourceMetadata;
|
|
421
|
+
spec: IdentityStoreGroupSpec;
|
|
422
|
+
status?: IdentityStoreGroupStatus;
|
|
423
|
+
};
|
|
424
|
+
export type IdentityCenterSpec = {
|
|
425
|
+
foundationRef: FoundationRef;
|
|
426
|
+
};
|
|
427
|
+
export type IdentityCenterStatus = {
|
|
428
|
+
condition: ResourceCondition;
|
|
429
|
+
identityStoreId?: string;
|
|
430
|
+
identityInstanceArn?: string;
|
|
431
|
+
objectId?: string;
|
|
432
|
+
};
|
|
433
|
+
export type IdentityCenter = {
|
|
434
|
+
metadata: ResourceMetadata;
|
|
435
|
+
spec: IdentityCenterSpec;
|
|
436
|
+
status?: IdentityCenterStatus;
|
|
437
|
+
};
|
|
438
|
+
export type FolderRef = {
|
|
439
|
+
name: string;
|
|
440
|
+
};
|
|
441
|
+
export type FolderSpec = {
|
|
442
|
+
foundationRef: FoundationRef;
|
|
443
|
+
folderRef?: FolderRef;
|
|
444
|
+
name: string;
|
|
445
|
+
};
|
|
446
|
+
export type FolderStatus = {
|
|
447
|
+
condition: ResourceCondition;
|
|
448
|
+
id?: string;
|
|
449
|
+
arn?: string;
|
|
450
|
+
};
|
|
451
|
+
export type Folder = {
|
|
452
|
+
metadata: ResourceMetadata;
|
|
453
|
+
spec: FolderSpec;
|
|
454
|
+
status?: FolderStatus;
|
|
455
|
+
};
|
|
456
|
+
export type IcmpTypeCode = {
|
|
457
|
+
code?: number;
|
|
458
|
+
"type"?: number;
|
|
459
|
+
};
|
|
460
|
+
export type PortRange = {
|
|
461
|
+
"from"?: number;
|
|
462
|
+
to?: number;
|
|
463
|
+
};
|
|
464
|
+
export type NetworkAclEntry = {
|
|
465
|
+
cidrBlock?: string;
|
|
466
|
+
egress: boolean;
|
|
467
|
+
icmpTypeCode?: IcmpTypeCode;
|
|
468
|
+
ipv6CidrBlock?: string;
|
|
469
|
+
portRange?: PortRange;
|
|
470
|
+
protocol: string;
|
|
471
|
+
ruleAction: string;
|
|
472
|
+
};
|
|
473
|
+
export type NetworkAclEntrySet = {
|
|
474
|
+
firstEntries?: NetworkAclEntry[];
|
|
475
|
+
forceRemediateForFirstEntries: boolean;
|
|
476
|
+
forceRemediateForLastEntries: boolean;
|
|
477
|
+
lastEntries?: NetworkAclEntry[];
|
|
478
|
+
};
|
|
479
|
+
export type NetworkAclCommonPolicy = {
|
|
480
|
+
networkAclEntrySet?: NetworkAclEntrySet;
|
|
481
|
+
};
|
|
482
|
+
export type NetworkFirewallPolicy = {
|
|
483
|
+
firewallDeploymentModel?: string;
|
|
484
|
+
};
|
|
485
|
+
export type ThirdPartyFirewallPolicy = {
|
|
486
|
+
firewallDeploymentModel?: string;
|
|
487
|
+
};
|
|
488
|
+
export type PolicyOption = {
|
|
489
|
+
networkAclCommonPolicy?: NetworkAclCommonPolicy;
|
|
490
|
+
networkFirewallPolicy?: NetworkFirewallPolicy;
|
|
491
|
+
thirdPartyFirewallPolicy?: ThirdPartyFirewallPolicy;
|
|
492
|
+
};
|
|
493
|
+
export type SecurityServicePolicyData = {
|
|
494
|
+
"type": string;
|
|
495
|
+
managedServiceData?: string;
|
|
496
|
+
policyOption?: PolicyOption;
|
|
497
|
+
};
|
|
498
|
+
export type Policy = {
|
|
499
|
+
deleteUnusedFMManagedResources?: boolean;
|
|
500
|
+
excludeMap?: {
|
|
501
|
+
[key: string]: string[];
|
|
502
|
+
};
|
|
503
|
+
excludeResourceTags: boolean;
|
|
504
|
+
includeMap?: {
|
|
505
|
+
[key: string]: string[];
|
|
506
|
+
};
|
|
507
|
+
policyDescription?: string;
|
|
508
|
+
policyName: string;
|
|
509
|
+
remediationEnabled: boolean;
|
|
510
|
+
resourceSetIds?: string[];
|
|
511
|
+
resourceTagLogicalOperator?: string;
|
|
512
|
+
resourceTags?: Tag[];
|
|
513
|
+
resourceType: string;
|
|
514
|
+
resourceTypeList?: string[];
|
|
515
|
+
securityServicePolicyData: SecurityServicePolicyData;
|
|
516
|
+
};
|
|
517
|
+
export type FmsPolicySpec = {
|
|
518
|
+
foundationRef: FoundationRef;
|
|
519
|
+
policy: Policy;
|
|
520
|
+
region: string;
|
|
521
|
+
tagList: Tag[];
|
|
522
|
+
};
|
|
523
|
+
export type FmsPolicyStatus = {
|
|
524
|
+
condition: ResourceCondition;
|
|
525
|
+
arn?: string;
|
|
526
|
+
policyID?: string;
|
|
527
|
+
policyStatus?: string;
|
|
528
|
+
};
|
|
529
|
+
export type FmsPolicy = {
|
|
530
|
+
metadata: ResourceMetadata;
|
|
531
|
+
spec: FmsPolicySpec;
|
|
532
|
+
status?: FmsPolicyStatus;
|
|
533
|
+
};
|
|
534
|
+
export type FmsAssociateAdminAccountSpec = {
|
|
535
|
+
foundationRef: FoundationRef;
|
|
536
|
+
adminAccount: string;
|
|
537
|
+
};
|
|
538
|
+
export type FmsAssociateAdminAccountStatus = {
|
|
539
|
+
condition: ResourceCondition;
|
|
540
|
+
adminAccount?: string;
|
|
541
|
+
roleStatus?: string;
|
|
542
|
+
};
|
|
543
|
+
export type FmsAssociateAdminAccount = {
|
|
544
|
+
metadata: ResourceMetadata;
|
|
545
|
+
spec: FmsAssociateAdminAccountSpec;
|
|
546
|
+
status?: FmsAssociateAdminAccountStatus;
|
|
547
|
+
};
|
|
548
|
+
export type FirewallSpec = {
|
|
549
|
+
foundationRef: FoundationRef;
|
|
550
|
+
};
|
|
551
|
+
export type FirewallStatus = {
|
|
552
|
+
condition: ResourceCondition;
|
|
553
|
+
active?: boolean;
|
|
554
|
+
logBucketArn?: string;
|
|
555
|
+
};
|
|
556
|
+
export type Firewall = {
|
|
557
|
+
metadata: ResourceMetadata;
|
|
558
|
+
spec: FirewallSpec;
|
|
559
|
+
status?: FirewallStatus;
|
|
560
|
+
};
|
|
561
|
+
export type ProjectRef = {
|
|
562
|
+
name: string;
|
|
563
|
+
};
|
|
564
|
+
export type DnsZoneSpec = {
|
|
565
|
+
foundationRef: FoundationRef;
|
|
566
|
+
projectRef?: ProjectRef;
|
|
567
|
+
domain: string;
|
|
568
|
+
};
|
|
569
|
+
export type DnsZoneStatus = {
|
|
570
|
+
condition: ResourceCondition;
|
|
571
|
+
arn?: string;
|
|
572
|
+
id?: string;
|
|
573
|
+
};
|
|
574
|
+
export type DnsZone = {
|
|
575
|
+
metadata: ResourceMetadata;
|
|
576
|
+
spec: DnsZoneSpec;
|
|
577
|
+
status?: DnsZoneStatus;
|
|
578
|
+
};
|
|
579
|
+
export type DnsZoneRef = {
|
|
580
|
+
name: string;
|
|
581
|
+
};
|
|
582
|
+
export type DnsRecordSpec = {
|
|
583
|
+
foundationRef: FoundationRef;
|
|
584
|
+
dnsZoneRef: DnsZoneRef;
|
|
585
|
+
recordName: string;
|
|
586
|
+
records: string[];
|
|
587
|
+
ttl: number;
|
|
588
|
+
"type": "A" | "AAAA" | "CAA" | "CNAME" | "MX" | "PTR" | "SOA" | "SRV" | "TXT";
|
|
589
|
+
};
|
|
590
|
+
export type DnsRecordStatus = {
|
|
591
|
+
condition: ResourceCondition;
|
|
592
|
+
};
|
|
593
|
+
export type DnsRecord = {
|
|
594
|
+
metadata: ResourceMetadata;
|
|
595
|
+
spec: DnsRecordSpec;
|
|
596
|
+
status?: DnsRecordStatus;
|
|
597
|
+
};
|
|
598
|
+
export type CustomerPolicy = {
|
|
599
|
+
name: string;
|
|
600
|
+
path?: string;
|
|
601
|
+
};
|
|
602
|
+
export type CustomerPolicyAttachmentSpec = {
|
|
603
|
+
foundationRef: FoundationRef;
|
|
604
|
+
permissionSetRef: PermissionSetRef;
|
|
605
|
+
customerPolicy: CustomerPolicy;
|
|
606
|
+
};
|
|
607
|
+
export type CustomerPolicyAttachmentStatus = {
|
|
608
|
+
condition: ResourceCondition;
|
|
609
|
+
id?: string;
|
|
610
|
+
};
|
|
611
|
+
export type CustomerPolicyAttachment = {
|
|
612
|
+
metadata: ResourceMetadata;
|
|
613
|
+
spec: CustomerPolicyAttachmentSpec;
|
|
614
|
+
status?: CustomerPolicyAttachmentStatus;
|
|
615
|
+
};
|
|
616
|
+
export type CidrSpec = {
|
|
617
|
+
foundationRef: FoundationRef;
|
|
618
|
+
cidr: string;
|
|
619
|
+
};
|
|
620
|
+
export type CidrStatus = {
|
|
621
|
+
condition: ResourceCondition;
|
|
622
|
+
};
|
|
623
|
+
export type Cidr = {
|
|
624
|
+
metadata: ResourceMetadata;
|
|
625
|
+
spec: CidrSpec;
|
|
626
|
+
status?: CidrStatus;
|
|
627
|
+
};
|
|
628
|
+
export type CertificateSpec = {
|
|
629
|
+
foundationRef: FoundationRef;
|
|
630
|
+
region: string;
|
|
631
|
+
tags: Tag[];
|
|
632
|
+
domainName: string;
|
|
633
|
+
};
|
|
634
|
+
export type CertificateStatus = {
|
|
635
|
+
condition: ResourceCondition;
|
|
636
|
+
};
|
|
637
|
+
export type Certificate = {
|
|
638
|
+
metadata: ResourceMetadata;
|
|
639
|
+
spec: CertificateSpec;
|
|
640
|
+
status?: CertificateStatus;
|
|
641
|
+
};
|
|
642
|
+
export type AccountAssignmentSpec = {
|
|
643
|
+
foundationRef: FoundationRef;
|
|
644
|
+
permissionSetRef: PermissionSetRef;
|
|
645
|
+
identityStoreGroupRef: IdentityStoreGroupRef;
|
|
646
|
+
targetAccountID: string;
|
|
647
|
+
};
|
|
648
|
+
export type AccountAssignmentStatus = {
|
|
649
|
+
condition: ResourceCondition;
|
|
650
|
+
};
|
|
651
|
+
export type AccountAssignment = {
|
|
652
|
+
metadata: ResourceMetadata;
|
|
653
|
+
spec: AccountAssignmentSpec;
|
|
654
|
+
status?: AccountAssignmentStatus;
|
|
655
|
+
};
|
|
296
656
|
export type ListRole = {
|
|
297
657
|
content: Role[];
|
|
298
658
|
};
|
|
@@ -409,8 +769,8 @@ export type ListCertificateResponse = {
|
|
|
409
769
|
};
|
|
410
770
|
export type CreateCertificateRequestBase = {
|
|
411
771
|
tags?: Tag[];
|
|
412
|
-
forInbound: "TRUE" | "FALSE";
|
|
413
772
|
certificateName: string;
|
|
773
|
+
forInbound: "TRUE" | "FALSE";
|
|
414
774
|
"type": string;
|
|
415
775
|
};
|
|
416
776
|
export type CreatePublicCertificateRequest = {
|
|
@@ -457,6 +817,31 @@ export type VpnConfigurationResponse = {
|
|
|
457
817
|
foundationId: string;
|
|
458
818
|
configuration: Configuration;
|
|
459
819
|
};
|
|
820
|
+
export declare function folderControllerPutTags({ $namespace, name, body }: {
|
|
821
|
+
$namespace: string;
|
|
822
|
+
name: string;
|
|
823
|
+
body: Tag[];
|
|
824
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
825
|
+
export declare function folderControllerPutName({ $namespace, name, body }: {
|
|
826
|
+
$namespace: string;
|
|
827
|
+
name: string;
|
|
828
|
+
body: string;
|
|
829
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
830
|
+
export declare function dnsRecordControllerPutTtl({ $namespace, name, body }: {
|
|
831
|
+
$namespace: string;
|
|
832
|
+
name: string;
|
|
833
|
+
body: number;
|
|
834
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
835
|
+
export declare function dnsRecordControllerPutRecords({ $namespace, name, body }: {
|
|
836
|
+
$namespace: string;
|
|
837
|
+
name: string;
|
|
838
|
+
body: string[];
|
|
839
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
840
|
+
export declare function certificateControllerPutTags({ $namespace, name, body }: {
|
|
841
|
+
$namespace: string;
|
|
842
|
+
name: string;
|
|
843
|
+
body: Tag[];
|
|
844
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
460
845
|
export declare function getRole({ roleName }: {
|
|
461
846
|
roleName: string;
|
|
462
847
|
}, opts?: Oazapfts.RequestOpts): Promise<Role>;
|
|
@@ -576,6 +961,127 @@ export declare function putBoundarySsoDescription({ foundationId, boundarySsoId,
|
|
|
576
961
|
boundarySsoId: string;
|
|
577
962
|
body: string;
|
|
578
963
|
}, opts?: Oazapfts.RequestOpts): Promise<BoundarySsoResponse>;
|
|
964
|
+
export declare function vpnControllerList({ $namespace }: {
|
|
965
|
+
$namespace: string;
|
|
966
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Vpn[]>;
|
|
967
|
+
export declare function vpnControllerCreate({ $namespace, vpnSpec }: {
|
|
968
|
+
$namespace: string;
|
|
969
|
+
vpnSpec: VpnSpec;
|
|
970
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
971
|
+
export declare function permissionSetControllerList({ $namespace }: {
|
|
972
|
+
$namespace: string;
|
|
973
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PermissionSet[]>;
|
|
974
|
+
export declare function permissionSetControllerCreate({ $namespace, permissionSetSpec }: {
|
|
975
|
+
$namespace: string;
|
|
976
|
+
permissionSetSpec: PermissionSetSpec;
|
|
977
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
978
|
+
export declare function managedPolicyAttachmentControllerList({ $namespace }: {
|
|
979
|
+
$namespace: string;
|
|
980
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ManagedPolicyAttachment[]>;
|
|
981
|
+
export declare function managedPolicyAttachmentControllerCreate({ $namespace, managedPolicyAttachmentSpec }: {
|
|
982
|
+
$namespace: string;
|
|
983
|
+
managedPolicyAttachmentSpec: ManagedPolicyAttachmentSpec;
|
|
984
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
985
|
+
export declare function identityStoreUserControllerList({ $namespace }: {
|
|
986
|
+
$namespace: string;
|
|
987
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityStoreUser[]>;
|
|
988
|
+
export declare function identityStoreUserControllerCreate({ $namespace, identityStoreUserSpec }: {
|
|
989
|
+
$namespace: string;
|
|
990
|
+
identityStoreUserSpec: IdentityStoreUserSpec;
|
|
991
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
992
|
+
export declare function identityStoreMembershipControllerList({ $namespace }: {
|
|
993
|
+
$namespace: string;
|
|
994
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityStoreMembership[]>;
|
|
995
|
+
export declare function identityStoreMembershipControllerCreate({ $namespace, identityStoreMembershipSpec }: {
|
|
996
|
+
$namespace: string;
|
|
997
|
+
identityStoreMembershipSpec: IdentityStoreMembershipSpec;
|
|
998
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
999
|
+
export declare function identityStoreGroupControllerList({ $namespace }: {
|
|
1000
|
+
$namespace: string;
|
|
1001
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityStoreGroup[]>;
|
|
1002
|
+
export declare function identityStoreGroupControllerCreate({ $namespace, identityStoreGroupSpec }: {
|
|
1003
|
+
$namespace: string;
|
|
1004
|
+
identityStoreGroupSpec: IdentityStoreGroupSpec;
|
|
1005
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1006
|
+
export declare function identityCenterControllerList({ $namespace }: {
|
|
1007
|
+
$namespace: string;
|
|
1008
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityCenter[]>;
|
|
1009
|
+
export declare function identityCenterControllerCreate({ $namespace, identityCenterSpec }: {
|
|
1010
|
+
$namespace: string;
|
|
1011
|
+
identityCenterSpec: IdentityCenterSpec;
|
|
1012
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1013
|
+
export declare function folderControllerList({ $namespace }: {
|
|
1014
|
+
$namespace: string;
|
|
1015
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Folder[]>;
|
|
1016
|
+
export declare function folderControllerCreate({ $namespace, folderSpec }: {
|
|
1017
|
+
$namespace: string;
|
|
1018
|
+
folderSpec: FolderSpec;
|
|
1019
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1020
|
+
export declare function fmsPolicyControllerList({ $namespace }: {
|
|
1021
|
+
$namespace: string;
|
|
1022
|
+
}, opts?: Oazapfts.RequestOpts): Promise<FmsPolicy[]>;
|
|
1023
|
+
export declare function fmsPolicyControllerCreate({ $namespace, fmsPolicySpec }: {
|
|
1024
|
+
$namespace: string;
|
|
1025
|
+
fmsPolicySpec: FmsPolicySpec;
|
|
1026
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1027
|
+
export declare function fmsAssociateAdminAccountControllerList({ $namespace }: {
|
|
1028
|
+
$namespace: string;
|
|
1029
|
+
}, opts?: Oazapfts.RequestOpts): Promise<FmsAssociateAdminAccount[]>;
|
|
1030
|
+
export declare function fmsAssociateAdminAccountControllerCreate({ $namespace, fmsAssociateAdminAccountSpec }: {
|
|
1031
|
+
$namespace: string;
|
|
1032
|
+
fmsAssociateAdminAccountSpec: FmsAssociateAdminAccountSpec;
|
|
1033
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1034
|
+
export declare function firewallControllerList({ $namespace }: {
|
|
1035
|
+
$namespace: string;
|
|
1036
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Firewall[]>;
|
|
1037
|
+
export declare function firewallControllerCreate({ $namespace, firewallSpec }: {
|
|
1038
|
+
$namespace: string;
|
|
1039
|
+
firewallSpec: FirewallSpec;
|
|
1040
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1041
|
+
export declare function dnsZoneControllerListPrivate({ $namespace, $type, projectName }: {
|
|
1042
|
+
$namespace: string;
|
|
1043
|
+
$type: "PUBLIC" | "PRIVATE";
|
|
1044
|
+
projectName: string;
|
|
1045
|
+
}, opts?: Oazapfts.RequestOpts): Promise<DnsZone[]>;
|
|
1046
|
+
export declare function dnsZoneControllerCreate({ $namespace, dnsZoneSpec }: {
|
|
1047
|
+
$namespace: string;
|
|
1048
|
+
dnsZoneSpec: DnsZoneSpec;
|
|
1049
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1050
|
+
export declare function dnsRecordControllerList({ $namespace }: {
|
|
1051
|
+
$namespace: string;
|
|
1052
|
+
}, opts?: Oazapfts.RequestOpts): Promise<DnsRecord[]>;
|
|
1053
|
+
export declare function dnsRecordControllerCreate({ $namespace, dnsRecordSpec }: {
|
|
1054
|
+
$namespace: string;
|
|
1055
|
+
dnsRecordSpec: DnsRecordSpec;
|
|
1056
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1057
|
+
export declare function customerPolicyAttachmentControllerList({ $namespace }: {
|
|
1058
|
+
$namespace: string;
|
|
1059
|
+
}, opts?: Oazapfts.RequestOpts): Promise<CustomerPolicyAttachment[]>;
|
|
1060
|
+
export declare function customerPolicyAttachmentControllerCreate({ $namespace, customerPolicyAttachmentSpec }: {
|
|
1061
|
+
$namespace: string;
|
|
1062
|
+
customerPolicyAttachmentSpec: CustomerPolicyAttachmentSpec;
|
|
1063
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1064
|
+
export declare function cidrControllerList({ $namespace }: {
|
|
1065
|
+
$namespace: string;
|
|
1066
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Cidr[]>;
|
|
1067
|
+
export declare function cidrControllerCreate({ $namespace, cidrSpec }: {
|
|
1068
|
+
$namespace: string;
|
|
1069
|
+
cidrSpec: CidrSpec;
|
|
1070
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1071
|
+
export declare function certificateControllerList({ $namespace }: {
|
|
1072
|
+
$namespace: string;
|
|
1073
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Certificate[]>;
|
|
1074
|
+
export declare function certificateControllerCreate({ $namespace, certificateSpec }: {
|
|
1075
|
+
$namespace: string;
|
|
1076
|
+
certificateSpec: CertificateSpec;
|
|
1077
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1078
|
+
export declare function accountAssignmentControllerList({ $namespace }: {
|
|
1079
|
+
$namespace: string;
|
|
1080
|
+
}, opts?: Oazapfts.RequestOpts): Promise<AccountAssignment[]>;
|
|
1081
|
+
export declare function accountAssignmentControllerCreate({ $namespace, accountAssignmentSpec }: {
|
|
1082
|
+
$namespace: string;
|
|
1083
|
+
accountAssignmentSpec: AccountAssignmentSpec;
|
|
1084
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
579
1085
|
export declare function listRole(opts?: Oazapfts.RequestOpts): Promise<ListRole>;
|
|
580
1086
|
export declare function createRole({ role }: {
|
|
581
1087
|
role: Role;
|
|
@@ -706,6 +1212,144 @@ export declare function createBoundarySso({ foundationId, createBoundarySsoReque
|
|
|
706
1212
|
foundationId: string;
|
|
707
1213
|
createBoundarySsoRequest: CreateBoundarySsoRequest;
|
|
708
1214
|
}, opts?: Oazapfts.RequestOpts): Promise<BoundarySsoResponse>;
|
|
1215
|
+
export declare function oidcControllerGet(opts?: Oazapfts.RequestOpts): Promise<string>;
|
|
1216
|
+
export declare function vpnControllerGet({ $namespace, name }: {
|
|
1217
|
+
$namespace: string;
|
|
1218
|
+
name: string;
|
|
1219
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Vpn>;
|
|
1220
|
+
export declare function vpnControllerDelete({ $namespace, name }: {
|
|
1221
|
+
$namespace: string;
|
|
1222
|
+
name: string;
|
|
1223
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1224
|
+
export declare function permissionSetControllerGet({ $namespace, name }: {
|
|
1225
|
+
$namespace: string;
|
|
1226
|
+
name: string;
|
|
1227
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PermissionSet>;
|
|
1228
|
+
export declare function permissionSetControllerDelete({ $namespace, name }: {
|
|
1229
|
+
$namespace: string;
|
|
1230
|
+
name: string;
|
|
1231
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1232
|
+
export declare function managedPolicyAttachmentControllerGet({ $namespace, name }: {
|
|
1233
|
+
$namespace: string;
|
|
1234
|
+
name: string;
|
|
1235
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ManagedPolicyAttachment>;
|
|
1236
|
+
export declare function managedPolicyAttachmentControllerDelete({ $namespace, name }: {
|
|
1237
|
+
$namespace: string;
|
|
1238
|
+
name: string;
|
|
1239
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1240
|
+
export declare function identityStoreUserControllerGet({ $namespace, name }: {
|
|
1241
|
+
$namespace: string;
|
|
1242
|
+
name: string;
|
|
1243
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityStoreUser>;
|
|
1244
|
+
export declare function identityStoreUserControllerDelete({ $namespace, name }: {
|
|
1245
|
+
$namespace: string;
|
|
1246
|
+
name: string;
|
|
1247
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1248
|
+
export declare function identityStoreMembershipControllerGet({ $namespace, name }: {
|
|
1249
|
+
$namespace: string;
|
|
1250
|
+
name: string;
|
|
1251
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityStoreMembership>;
|
|
1252
|
+
export declare function identityStoreMembershipControllerDelete({ $namespace, name }: {
|
|
1253
|
+
$namespace: string;
|
|
1254
|
+
name: string;
|
|
1255
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1256
|
+
export declare function identityStoreGroupControllerGet({ $namespace, name }: {
|
|
1257
|
+
$namespace: string;
|
|
1258
|
+
name: string;
|
|
1259
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityStoreGroup>;
|
|
1260
|
+
export declare function identityStoreGroupControllerDelete({ $namespace, name }: {
|
|
1261
|
+
$namespace: string;
|
|
1262
|
+
name: string;
|
|
1263
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1264
|
+
export declare function identityCenterControllerGet({ $namespace, name }: {
|
|
1265
|
+
$namespace: string;
|
|
1266
|
+
name: string;
|
|
1267
|
+
}, opts?: Oazapfts.RequestOpts): Promise<IdentityCenter>;
|
|
1268
|
+
export declare function identityCenterControllerDelete({ $namespace, name }: {
|
|
1269
|
+
$namespace: string;
|
|
1270
|
+
name: string;
|
|
1271
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1272
|
+
export declare function folderControllerGet({ $namespace, name }: {
|
|
1273
|
+
$namespace: string;
|
|
1274
|
+
name: string;
|
|
1275
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Folder>;
|
|
1276
|
+
export declare function folderControllerDelete({ $namespace, name }: {
|
|
1277
|
+
$namespace: string;
|
|
1278
|
+
name: string;
|
|
1279
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1280
|
+
export declare function fmsPolicyControllerGet({ $namespace, name }: {
|
|
1281
|
+
$namespace: string;
|
|
1282
|
+
name: string;
|
|
1283
|
+
}, opts?: Oazapfts.RequestOpts): Promise<FmsPolicy>;
|
|
1284
|
+
export declare function fmsPolicyControllerDelete({ $namespace, name }: {
|
|
1285
|
+
$namespace: string;
|
|
1286
|
+
name: string;
|
|
1287
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1288
|
+
export declare function fmsAssociateAdminAccountControllerGet({ $namespace, name }: {
|
|
1289
|
+
$namespace: string;
|
|
1290
|
+
name: string;
|
|
1291
|
+
}, opts?: Oazapfts.RequestOpts): Promise<FmsAssociateAdminAccount>;
|
|
1292
|
+
export declare function fmsAssociateAdminAccountControllerDelete({ $namespace, name }: {
|
|
1293
|
+
$namespace: string;
|
|
1294
|
+
name: string;
|
|
1295
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1296
|
+
export declare function firewallControllerGet({ $namespace, name }: {
|
|
1297
|
+
$namespace: string;
|
|
1298
|
+
name: string;
|
|
1299
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Firewall>;
|
|
1300
|
+
export declare function firewallControllerDelete({ $namespace, name }: {
|
|
1301
|
+
$namespace: string;
|
|
1302
|
+
name: string;
|
|
1303
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1304
|
+
export declare function dnsZoneControllerGet({ $namespace, name }: {
|
|
1305
|
+
$namespace: string;
|
|
1306
|
+
name: string;
|
|
1307
|
+
}, opts?: Oazapfts.RequestOpts): Promise<DnsZone>;
|
|
1308
|
+
export declare function dnsZoneControllerDelete({ $namespace, name }: {
|
|
1309
|
+
$namespace: string;
|
|
1310
|
+
name: string;
|
|
1311
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1312
|
+
export declare function dnsRecordControllerGet({ $namespace, name }: {
|
|
1313
|
+
$namespace: string;
|
|
1314
|
+
name: string;
|
|
1315
|
+
}, opts?: Oazapfts.RequestOpts): Promise<DnsRecord>;
|
|
1316
|
+
export declare function dnsRecordControllerDelete({ $namespace, name }: {
|
|
1317
|
+
$namespace: string;
|
|
1318
|
+
name: string;
|
|
1319
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1320
|
+
export declare function customerPolicyAttachmentControllerGet({ $namespace, name }: {
|
|
1321
|
+
$namespace: string;
|
|
1322
|
+
name: string;
|
|
1323
|
+
}, opts?: Oazapfts.RequestOpts): Promise<CustomerPolicyAttachment>;
|
|
1324
|
+
export declare function customerPolicyAttachmentControllerDelete({ $namespace, name }: {
|
|
1325
|
+
$namespace: string;
|
|
1326
|
+
name: string;
|
|
1327
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1328
|
+
export declare function cidrControllerGet({ $namespace, name }: {
|
|
1329
|
+
$namespace: string;
|
|
1330
|
+
name: string;
|
|
1331
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Cidr>;
|
|
1332
|
+
export declare function cidrControllerDelete({ $namespace, name }: {
|
|
1333
|
+
$namespace: string;
|
|
1334
|
+
name: string;
|
|
1335
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1336
|
+
export declare function certificateControllerGet({ $namespace, name }: {
|
|
1337
|
+
$namespace: string;
|
|
1338
|
+
name: string;
|
|
1339
|
+
}, opts?: Oazapfts.RequestOpts): Promise<Certificate>;
|
|
1340
|
+
export declare function certificateControllerDelete({ $namespace, name }: {
|
|
1341
|
+
$namespace: string;
|
|
1342
|
+
name: string;
|
|
1343
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1344
|
+
export declare function accountAssignmentControllerGet({ $namespace, name }: {
|
|
1345
|
+
$namespace: string;
|
|
1346
|
+
name: string;
|
|
1347
|
+
}, opts?: Oazapfts.RequestOpts): Promise<AccountAssignment>;
|
|
1348
|
+
export declare function accountAssignmentControllerDelete({ $namespace, name }: {
|
|
1349
|
+
$namespace: string;
|
|
1350
|
+
name: string;
|
|
1351
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
1352
|
+
export declare function getOidc(opts?: Oazapfts.RequestOpts): Promise<string>;
|
|
709
1353
|
export declare function getFoundation({ authorization, xAccountId, foundationId }: {
|
|
710
1354
|
authorization: string;
|
|
711
1355
|
xAccountId?: string;
|