@pierskarsenbarg/sdm 1.12.0 → 1.14.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/getAccount.d.ts +3 -3
- package/getIdentityAlias.d.ts +105 -0
- package/getIdentityAlias.js +53 -0
- package/getIdentityAlias.js.map +1 -0
- package/getIdentitySet.d.ts +77 -0
- package/getIdentitySet.js +47 -0
- package/getIdentitySet.js.map +1 -0
- package/getNode.d.ts +3 -3
- package/getResource.d.ts +3 -3
- package/getSecretStore.d.ts +3 -3
- package/identityAlias.d.ts +83 -0
- package/identityAlias.js +73 -0
- package/identityAlias.js.map +1 -0
- package/identitySet.d.ts +68 -0
- package/identitySet.js +69 -0
- package/identitySet.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +18 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/resource.d.ts +12 -9
- package/resource.js +2 -0
- package/resource.js.map +1 -1
- package/secretStore.d.ts +27 -0
- package/secretStore.js +6 -0
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +287 -103
- package/types/output.d.ts +642 -226
package/types/output.d.ts
CHANGED
|
@@ -230,6 +230,34 @@ export interface GetApprovalWorkflowStepApprovalWorkflowStep {
|
|
|
230
230
|
*/
|
|
231
231
|
id?: string;
|
|
232
232
|
}
|
|
233
|
+
export interface GetIdentityAliasIdentityAlias {
|
|
234
|
+
/**
|
|
235
|
+
* The account for this identity alias.
|
|
236
|
+
*/
|
|
237
|
+
accountId?: string;
|
|
238
|
+
/**
|
|
239
|
+
* Unique identifier of the IdentityAlias.
|
|
240
|
+
*/
|
|
241
|
+
id?: string;
|
|
242
|
+
/**
|
|
243
|
+
* The identity set.
|
|
244
|
+
*/
|
|
245
|
+
identitySetId?: string;
|
|
246
|
+
/**
|
|
247
|
+
* The username to be used as the identity alias for this account.
|
|
248
|
+
*/
|
|
249
|
+
username?: string;
|
|
250
|
+
}
|
|
251
|
+
export interface GetIdentitySetIdentitySet {
|
|
252
|
+
/**
|
|
253
|
+
* Unique identifier of the IdentitySet.
|
|
254
|
+
*/
|
|
255
|
+
id?: string;
|
|
256
|
+
/**
|
|
257
|
+
* Unique human-readable name of the IdentitySet.
|
|
258
|
+
*/
|
|
259
|
+
name?: string;
|
|
260
|
+
}
|
|
233
261
|
export interface GetNodeNode {
|
|
234
262
|
/**
|
|
235
263
|
* Gateway represents a StrongDM CLI installation running in gateway mode.
|
|
@@ -488,6 +516,7 @@ export interface GetResourceResource {
|
|
|
488
516
|
sqlServers: outputs.GetResourceResourceSqlServer[];
|
|
489
517
|
sshCerts: outputs.GetResourceResourceSshCert[];
|
|
490
518
|
sshCustomerKeys: outputs.GetResourceResourceSshCustomerKey[];
|
|
519
|
+
sshPasswords: outputs.GetResourceResourceSshPassword[];
|
|
491
520
|
sshes: outputs.GetResourceResourceSsh[];
|
|
492
521
|
sybaseIqs: outputs.GetResourceResourceSybaseIq[];
|
|
493
522
|
sybases: outputs.GetResourceResourceSybase[];
|
|
@@ -511,6 +540,14 @@ export interface GetResourceResourceAk {
|
|
|
511
540
|
* The key to authenticate TLS connections with.
|
|
512
541
|
*/
|
|
513
542
|
clientKey?: string;
|
|
543
|
+
/**
|
|
544
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
545
|
+
*/
|
|
546
|
+
discoveryEnabled?: boolean;
|
|
547
|
+
/**
|
|
548
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
549
|
+
*/
|
|
550
|
+
discoveryUsername?: string;
|
|
514
551
|
/**
|
|
515
552
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
516
553
|
*/
|
|
@@ -527,6 +564,14 @@ export interface GetResourceResourceAk {
|
|
|
527
564
|
* Unique identifier of the Resource.
|
|
528
565
|
*/
|
|
529
566
|
id?: string;
|
|
567
|
+
/**
|
|
568
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
569
|
+
*/
|
|
570
|
+
identityAliasHealthcheckUsername?: string;
|
|
571
|
+
/**
|
|
572
|
+
* The ID of the identity set to use for identity connections.
|
|
573
|
+
*/
|
|
574
|
+
identitySetId?: string;
|
|
530
575
|
/**
|
|
531
576
|
* Unique human-readable name of the Resource.
|
|
532
577
|
*/
|
|
@@ -539,14 +584,6 @@ export interface GetResourceResourceAk {
|
|
|
539
584
|
* The local port used by clients to connect to this resource.
|
|
540
585
|
*/
|
|
541
586
|
portOverride?: number;
|
|
542
|
-
/**
|
|
543
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
544
|
-
*/
|
|
545
|
-
remoteIdentityGroupId?: string;
|
|
546
|
-
/**
|
|
547
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
548
|
-
*/
|
|
549
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
550
587
|
/**
|
|
551
588
|
* ID of the secret store containing credentials for this resource, if any.
|
|
552
589
|
*/
|
|
@@ -623,6 +660,14 @@ export interface GetResourceResourceAksServiceAccount {
|
|
|
623
660
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
624
661
|
*/
|
|
625
662
|
bindInterface?: string;
|
|
663
|
+
/**
|
|
664
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
665
|
+
*/
|
|
666
|
+
discoveryEnabled?: boolean;
|
|
667
|
+
/**
|
|
668
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
669
|
+
*/
|
|
670
|
+
discoveryUsername?: string;
|
|
626
671
|
/**
|
|
627
672
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
628
673
|
*/
|
|
@@ -639,6 +684,14 @@ export interface GetResourceResourceAksServiceAccount {
|
|
|
639
684
|
* Unique identifier of the Resource.
|
|
640
685
|
*/
|
|
641
686
|
id?: string;
|
|
687
|
+
/**
|
|
688
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
689
|
+
*/
|
|
690
|
+
identityAliasHealthcheckUsername?: string;
|
|
691
|
+
/**
|
|
692
|
+
* The ID of the identity set to use for identity connections.
|
|
693
|
+
*/
|
|
694
|
+
identitySetId?: string;
|
|
642
695
|
/**
|
|
643
696
|
* Unique human-readable name of the Resource.
|
|
644
697
|
*/
|
|
@@ -651,14 +704,6 @@ export interface GetResourceResourceAksServiceAccount {
|
|
|
651
704
|
* The local port used by clients to connect to this resource.
|
|
652
705
|
*/
|
|
653
706
|
portOverride?: number;
|
|
654
|
-
/**
|
|
655
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
656
|
-
*/
|
|
657
|
-
remoteIdentityGroupId?: string;
|
|
658
|
-
/**
|
|
659
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
660
|
-
*/
|
|
661
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
662
707
|
/**
|
|
663
708
|
* ID of the secret store containing credentials for this resource, if any.
|
|
664
709
|
*/
|
|
@@ -869,6 +914,14 @@ export interface GetResourceResourceAmazonEk {
|
|
|
869
914
|
* The name of the cluster to connect to.
|
|
870
915
|
*/
|
|
871
916
|
clusterName?: string;
|
|
917
|
+
/**
|
|
918
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
919
|
+
*/
|
|
920
|
+
discoveryEnabled?: boolean;
|
|
921
|
+
/**
|
|
922
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
923
|
+
*/
|
|
924
|
+
discoveryUsername?: string;
|
|
872
925
|
/**
|
|
873
926
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
874
927
|
*/
|
|
@@ -885,6 +938,14 @@ export interface GetResourceResourceAmazonEk {
|
|
|
885
938
|
* Unique identifier of the Resource.
|
|
886
939
|
*/
|
|
887
940
|
id?: string;
|
|
941
|
+
/**
|
|
942
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
943
|
+
*/
|
|
944
|
+
identityAliasHealthcheckUsername?: string;
|
|
945
|
+
/**
|
|
946
|
+
* The ID of the identity set to use for identity connections.
|
|
947
|
+
*/
|
|
948
|
+
identitySetId?: string;
|
|
888
949
|
/**
|
|
889
950
|
* Unique human-readable name of the Resource.
|
|
890
951
|
*/
|
|
@@ -897,14 +958,6 @@ export interface GetResourceResourceAmazonEk {
|
|
|
897
958
|
* The AWS region to connect to.
|
|
898
959
|
*/
|
|
899
960
|
region?: string;
|
|
900
|
-
/**
|
|
901
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
902
|
-
*/
|
|
903
|
-
remoteIdentityGroupId?: string;
|
|
904
|
-
/**
|
|
905
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
906
|
-
*/
|
|
907
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
908
961
|
/**
|
|
909
962
|
* The role to assume after logging in.
|
|
910
963
|
*/
|
|
@@ -945,6 +998,14 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
|
|
|
945
998
|
* The name of the cluster to connect to.
|
|
946
999
|
*/
|
|
947
1000
|
clusterName?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
1003
|
+
*/
|
|
1004
|
+
discoveryEnabled?: boolean;
|
|
1005
|
+
/**
|
|
1006
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
1007
|
+
*/
|
|
1008
|
+
discoveryUsername?: string;
|
|
948
1009
|
/**
|
|
949
1010
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
950
1011
|
*/
|
|
@@ -961,6 +1022,14 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
|
|
|
961
1022
|
* Unique identifier of the Resource.
|
|
962
1023
|
*/
|
|
963
1024
|
id?: string;
|
|
1025
|
+
/**
|
|
1026
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
1027
|
+
*/
|
|
1028
|
+
identityAliasHealthcheckUsername?: string;
|
|
1029
|
+
/**
|
|
1030
|
+
* The ID of the identity set to use for identity connections.
|
|
1031
|
+
*/
|
|
1032
|
+
identitySetId?: string;
|
|
964
1033
|
/**
|
|
965
1034
|
* Unique human-readable name of the Resource.
|
|
966
1035
|
*/
|
|
@@ -973,14 +1042,6 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
|
|
|
973
1042
|
* The AWS region to connect to.
|
|
974
1043
|
*/
|
|
975
1044
|
region?: string;
|
|
976
|
-
/**
|
|
977
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
978
|
-
*/
|
|
979
|
-
remoteIdentityGroupId?: string;
|
|
980
|
-
/**
|
|
981
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
982
|
-
*/
|
|
983
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
984
1045
|
/**
|
|
985
1046
|
* The role to assume after logging in.
|
|
986
1047
|
*/
|
|
@@ -1045,14 +1106,6 @@ export interface GetResourceResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
1045
1106
|
* The AWS region to connect to.
|
|
1046
1107
|
*/
|
|
1047
1108
|
region?: string;
|
|
1048
|
-
/**
|
|
1049
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
1050
|
-
*/
|
|
1051
|
-
remoteIdentityGroupId?: string;
|
|
1052
|
-
/**
|
|
1053
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
1054
|
-
*/
|
|
1055
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
1056
1109
|
/**
|
|
1057
1110
|
* The role to assume after logging in.
|
|
1058
1111
|
*/
|
|
@@ -1525,6 +1578,14 @@ export interface GetResourceResourceAwsConsole {
|
|
|
1525
1578
|
* Unique identifier of the Resource.
|
|
1526
1579
|
*/
|
|
1527
1580
|
id?: string;
|
|
1581
|
+
/**
|
|
1582
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
1583
|
+
*/
|
|
1584
|
+
identityAliasHealthcheckUsername?: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* The ID of the identity set to use for identity connections.
|
|
1587
|
+
*/
|
|
1588
|
+
identitySetId?: string;
|
|
1528
1589
|
/**
|
|
1529
1590
|
* Unique human-readable name of the Resource.
|
|
1530
1591
|
*/
|
|
@@ -1537,14 +1598,6 @@ export interface GetResourceResourceAwsConsole {
|
|
|
1537
1598
|
* The AWS region to connect to.
|
|
1538
1599
|
*/
|
|
1539
1600
|
region?: string;
|
|
1540
|
-
/**
|
|
1541
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
1542
|
-
*/
|
|
1543
|
-
remoteIdentityGroupId?: string;
|
|
1544
|
-
/**
|
|
1545
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
1546
|
-
*/
|
|
1547
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
1548
1601
|
/**
|
|
1549
1602
|
* The role to assume after logging in.
|
|
1550
1603
|
*/
|
|
@@ -1589,6 +1642,14 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
|
|
|
1589
1642
|
* Unique identifier of the Resource.
|
|
1590
1643
|
*/
|
|
1591
1644
|
id?: string;
|
|
1645
|
+
/**
|
|
1646
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
1647
|
+
*/
|
|
1648
|
+
identityAliasHealthcheckUsername?: string;
|
|
1649
|
+
/**
|
|
1650
|
+
* The ID of the identity set to use for identity connections.
|
|
1651
|
+
*/
|
|
1652
|
+
identitySetId?: string;
|
|
1592
1653
|
/**
|
|
1593
1654
|
* Unique human-readable name of the Resource.
|
|
1594
1655
|
*/
|
|
@@ -1601,14 +1662,6 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
|
|
|
1601
1662
|
* The AWS region to connect to.
|
|
1602
1663
|
*/
|
|
1603
1664
|
region?: string;
|
|
1604
|
-
/**
|
|
1605
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
1606
|
-
*/
|
|
1607
|
-
remoteIdentityGroupId?: string;
|
|
1608
|
-
/**
|
|
1609
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
1610
|
-
*/
|
|
1611
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
1612
1665
|
/**
|
|
1613
1666
|
* The role to assume after logging in.
|
|
1614
1667
|
*/
|
|
@@ -2723,6 +2776,14 @@ export interface GetResourceResourceGoogleGke {
|
|
|
2723
2776
|
* The CA to authenticate TLS connections with.
|
|
2724
2777
|
*/
|
|
2725
2778
|
certificateAuthority?: string;
|
|
2779
|
+
/**
|
|
2780
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
2781
|
+
*/
|
|
2782
|
+
discoveryEnabled?: boolean;
|
|
2783
|
+
/**
|
|
2784
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
2785
|
+
*/
|
|
2786
|
+
discoveryUsername?: string;
|
|
2726
2787
|
/**
|
|
2727
2788
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2728
2789
|
*/
|
|
@@ -2740,21 +2801,21 @@ export interface GetResourceResourceGoogleGke {
|
|
|
2740
2801
|
*/
|
|
2741
2802
|
id?: string;
|
|
2742
2803
|
/**
|
|
2743
|
-
*
|
|
2804
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
2744
2805
|
*/
|
|
2745
|
-
|
|
2806
|
+
identityAliasHealthcheckUsername?: string;
|
|
2746
2807
|
/**
|
|
2747
|
-
* The
|
|
2808
|
+
* The ID of the identity set to use for identity connections.
|
|
2748
2809
|
*/
|
|
2749
|
-
|
|
2810
|
+
identitySetId?: string;
|
|
2750
2811
|
/**
|
|
2751
|
-
*
|
|
2812
|
+
* Unique human-readable name of the Resource.
|
|
2752
2813
|
*/
|
|
2753
|
-
|
|
2814
|
+
name?: string;
|
|
2754
2815
|
/**
|
|
2755
|
-
* The
|
|
2816
|
+
* The local port used by clients to connect to this resource.
|
|
2756
2817
|
*/
|
|
2757
|
-
|
|
2818
|
+
portOverride?: number;
|
|
2758
2819
|
/**
|
|
2759
2820
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2760
2821
|
*/
|
|
@@ -3074,6 +3135,14 @@ export interface GetResourceResourceKubernete {
|
|
|
3074
3135
|
* The key to authenticate TLS connections with.
|
|
3075
3136
|
*/
|
|
3076
3137
|
clientKey?: string;
|
|
3138
|
+
/**
|
|
3139
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
3140
|
+
*/
|
|
3141
|
+
discoveryEnabled?: boolean;
|
|
3142
|
+
/**
|
|
3143
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
3144
|
+
*/
|
|
3145
|
+
discoveryUsername?: string;
|
|
3077
3146
|
/**
|
|
3078
3147
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3079
3148
|
*/
|
|
@@ -3090,6 +3159,14 @@ export interface GetResourceResourceKubernete {
|
|
|
3090
3159
|
* Unique identifier of the Resource.
|
|
3091
3160
|
*/
|
|
3092
3161
|
id?: string;
|
|
3162
|
+
/**
|
|
3163
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
3164
|
+
*/
|
|
3165
|
+
identityAliasHealthcheckUsername?: string;
|
|
3166
|
+
/**
|
|
3167
|
+
* The ID of the identity set to use for identity connections.
|
|
3168
|
+
*/
|
|
3169
|
+
identitySetId?: string;
|
|
3093
3170
|
/**
|
|
3094
3171
|
* Unique human-readable name of the Resource.
|
|
3095
3172
|
*/
|
|
@@ -3102,14 +3179,6 @@ export interface GetResourceResourceKubernete {
|
|
|
3102
3179
|
* The local port used by clients to connect to this resource.
|
|
3103
3180
|
*/
|
|
3104
3181
|
portOverride?: number;
|
|
3105
|
-
/**
|
|
3106
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
3107
|
-
*/
|
|
3108
|
-
remoteIdentityGroupId?: string;
|
|
3109
|
-
/**
|
|
3110
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
3111
|
-
*/
|
|
3112
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
3113
3182
|
/**
|
|
3114
3183
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3115
3184
|
*/
|
|
@@ -3186,6 +3255,14 @@ export interface GetResourceResourceKubernetesServiceAccount {
|
|
|
3186
3255
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
3187
3256
|
*/
|
|
3188
3257
|
bindInterface?: string;
|
|
3258
|
+
/**
|
|
3259
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
3260
|
+
*/
|
|
3261
|
+
discoveryEnabled?: boolean;
|
|
3262
|
+
/**
|
|
3263
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
3264
|
+
*/
|
|
3265
|
+
discoveryUsername?: string;
|
|
3189
3266
|
/**
|
|
3190
3267
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3191
3268
|
*/
|
|
@@ -3202,6 +3279,14 @@ export interface GetResourceResourceKubernetesServiceAccount {
|
|
|
3202
3279
|
* Unique identifier of the Resource.
|
|
3203
3280
|
*/
|
|
3204
3281
|
id?: string;
|
|
3282
|
+
/**
|
|
3283
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
3284
|
+
*/
|
|
3285
|
+
identityAliasHealthcheckUsername?: string;
|
|
3286
|
+
/**
|
|
3287
|
+
* The ID of the identity set to use for identity connections.
|
|
3288
|
+
*/
|
|
3289
|
+
identitySetId?: string;
|
|
3205
3290
|
/**
|
|
3206
3291
|
* Unique human-readable name of the Resource.
|
|
3207
3292
|
*/
|
|
@@ -3214,14 +3299,6 @@ export interface GetResourceResourceKubernetesServiceAccount {
|
|
|
3214
3299
|
* The local port used by clients to connect to this resource.
|
|
3215
3300
|
*/
|
|
3216
3301
|
portOverride?: number;
|
|
3217
|
-
/**
|
|
3218
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
3219
|
-
*/
|
|
3220
|
-
remoteIdentityGroupId?: string;
|
|
3221
|
-
/**
|
|
3222
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
3223
|
-
*/
|
|
3224
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
3225
3302
|
/**
|
|
3226
3303
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3227
3304
|
*/
|
|
@@ -3624,10 +3701,6 @@ export interface GetResourceResourceMongoLegacyHost {
|
|
|
3624
3701
|
* The local port used by clients to connect to this resource.
|
|
3625
3702
|
*/
|
|
3626
3703
|
portOverride?: number;
|
|
3627
|
-
/**
|
|
3628
|
-
* The name of the mongo replicaset.
|
|
3629
|
-
*/
|
|
3630
|
-
replicaSet?: string;
|
|
3631
3704
|
/**
|
|
3632
3705
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3633
3706
|
*/
|
|
@@ -4528,6 +4601,14 @@ export interface GetResourceResourceRdpCert {
|
|
|
4528
4601
|
* Unique identifier of the Resource.
|
|
4529
4602
|
*/
|
|
4530
4603
|
id?: string;
|
|
4604
|
+
/**
|
|
4605
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
4606
|
+
*/
|
|
4607
|
+
identityAliasHealthcheckUsername?: string;
|
|
4608
|
+
/**
|
|
4609
|
+
* The ID of the identity set to use for identity connections.
|
|
4610
|
+
*/
|
|
4611
|
+
identitySetId?: string;
|
|
4531
4612
|
/**
|
|
4532
4613
|
* Unique human-readable name of the Resource.
|
|
4533
4614
|
*/
|
|
@@ -4540,14 +4621,6 @@ export interface GetResourceResourceRdpCert {
|
|
|
4540
4621
|
* The local port used by clients to connect to this resource.
|
|
4541
4622
|
*/
|
|
4542
4623
|
portOverride?: number;
|
|
4543
|
-
/**
|
|
4544
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
4545
|
-
*/
|
|
4546
|
-
remoteIdentityGroupId?: string;
|
|
4547
|
-
/**
|
|
4548
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
4549
|
-
*/
|
|
4550
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
4551
4624
|
/**
|
|
4552
4625
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4553
4626
|
*/
|
|
@@ -5217,6 +5290,14 @@ export interface GetResourceResourceSshCert {
|
|
|
5217
5290
|
* Unique identifier of the Resource.
|
|
5218
5291
|
*/
|
|
5219
5292
|
id?: string;
|
|
5293
|
+
/**
|
|
5294
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
5295
|
+
*/
|
|
5296
|
+
identityAliasHealthcheckUsername?: string;
|
|
5297
|
+
/**
|
|
5298
|
+
* The ID of the identity set to use for identity connections.
|
|
5299
|
+
*/
|
|
5300
|
+
identitySetId?: string;
|
|
5220
5301
|
/**
|
|
5221
5302
|
* The key type to use e.g. rsa-2048 or ed25519
|
|
5222
5303
|
*/
|
|
@@ -5237,14 +5318,6 @@ export interface GetResourceResourceSshCert {
|
|
|
5237
5318
|
* The local port used by clients to connect to this resource.
|
|
5238
5319
|
*/
|
|
5239
5320
|
portOverride?: number;
|
|
5240
|
-
/**
|
|
5241
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
5242
|
-
*/
|
|
5243
|
-
remoteIdentityGroupId?: string;
|
|
5244
|
-
/**
|
|
5245
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
5246
|
-
*/
|
|
5247
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
5248
5321
|
/**
|
|
5249
5322
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5250
5323
|
*/
|
|
@@ -5324,6 +5397,66 @@ export interface GetResourceResourceSshCustomerKey {
|
|
|
5324
5397
|
*/
|
|
5325
5398
|
username?: string;
|
|
5326
5399
|
}
|
|
5400
|
+
export interface GetResourceResourceSshPassword {
|
|
5401
|
+
/**
|
|
5402
|
+
* Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
|
|
5403
|
+
*/
|
|
5404
|
+
allowDeprecatedKeyExchanges?: boolean;
|
|
5405
|
+
/**
|
|
5406
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
5407
|
+
*/
|
|
5408
|
+
bindInterface?: string;
|
|
5409
|
+
/**
|
|
5410
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
5411
|
+
*/
|
|
5412
|
+
egressFilter?: string;
|
|
5413
|
+
/**
|
|
5414
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5415
|
+
*/
|
|
5416
|
+
hostname?: string;
|
|
5417
|
+
/**
|
|
5418
|
+
* Unique identifier of the Resource.
|
|
5419
|
+
*/
|
|
5420
|
+
id?: string;
|
|
5421
|
+
/**
|
|
5422
|
+
* Unique human-readable name of the Resource.
|
|
5423
|
+
*/
|
|
5424
|
+
name?: string;
|
|
5425
|
+
/**
|
|
5426
|
+
* The password to authenticate with.
|
|
5427
|
+
*/
|
|
5428
|
+
password?: string;
|
|
5429
|
+
/**
|
|
5430
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
5431
|
+
*/
|
|
5432
|
+
port?: number;
|
|
5433
|
+
/**
|
|
5434
|
+
* Whether port forwarding is allowed through this server.
|
|
5435
|
+
*/
|
|
5436
|
+
portForwarding?: boolean;
|
|
5437
|
+
/**
|
|
5438
|
+
* The local port used by clients to connect to this resource.
|
|
5439
|
+
*/
|
|
5440
|
+
portOverride?: number;
|
|
5441
|
+
/**
|
|
5442
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
5443
|
+
*/
|
|
5444
|
+
secretStoreId?: string;
|
|
5445
|
+
/**
|
|
5446
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5447
|
+
*/
|
|
5448
|
+
subdomain?: string;
|
|
5449
|
+
/**
|
|
5450
|
+
* Tags is a map of key, value pairs.
|
|
5451
|
+
*/
|
|
5452
|
+
tags?: {
|
|
5453
|
+
[key: string]: string;
|
|
5454
|
+
};
|
|
5455
|
+
/**
|
|
5456
|
+
* The username to authenticate with.
|
|
5457
|
+
*/
|
|
5458
|
+
username?: string;
|
|
5459
|
+
}
|
|
5327
5460
|
export interface GetResourceResourceSybase {
|
|
5328
5461
|
/**
|
|
5329
5462
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -5571,10 +5704,13 @@ export interface GetSecretStoreSecretStore {
|
|
|
5571
5704
|
delineaStores: outputs.GetSecretStoreSecretStoreDelineaStore[];
|
|
5572
5705
|
gcpCertX509Stores: outputs.GetSecretStoreSecretStoreGcpCertX509Store[];
|
|
5573
5706
|
gcpStores: outputs.GetSecretStoreSecretStoreGcpStore[];
|
|
5707
|
+
keyfactorSshStores: outputs.GetSecretStoreSecretStoreKeyfactorSshStore[];
|
|
5574
5708
|
keyfactorX509Stores: outputs.GetSecretStoreSecretStoreKeyfactorX509Store[];
|
|
5575
5709
|
vaultApproleCertSshes: outputs.GetSecretStoreSecretStoreVaultApproleCertSsh[];
|
|
5576
5710
|
vaultApproleCertX509s: outputs.GetSecretStoreSecretStoreVaultApproleCertX509[];
|
|
5577
5711
|
vaultApproles: outputs.GetSecretStoreSecretStoreVaultApprole[];
|
|
5712
|
+
vaultAwsEc2s: outputs.GetSecretStoreSecretStoreVaultAwsEc2[];
|
|
5713
|
+
vaultAwsIams: outputs.GetSecretStoreSecretStoreVaultAwsIam[];
|
|
5578
5714
|
vaultTls: outputs.GetSecretStoreSecretStoreVaultTl[];
|
|
5579
5715
|
vaultTlsCertSshes: outputs.GetSecretStoreSecretStoreVaultTlsCertSsh[];
|
|
5580
5716
|
vaultTlsCertX509s: outputs.GetSecretStoreSecretStoreVaultTlsCertX509[];
|
|
@@ -5820,7 +5956,7 @@ export interface GetSecretStoreSecretStoreGcpStore {
|
|
|
5820
5956
|
[key: string]: string;
|
|
5821
5957
|
};
|
|
5822
5958
|
}
|
|
5823
|
-
export interface
|
|
5959
|
+
export interface GetSecretStoreSecretStoreKeyfactorSshStore {
|
|
5824
5960
|
/**
|
|
5825
5961
|
* Path to the root CA that signed the certificate passed to the client for HTTPS connection. This is not required if the CA is trusted by the host operating system. This should be a PEM formatted certificate, and doesn't necessarily have to be the CA that signed CertificateFile.
|
|
5826
5962
|
*/
|
|
@@ -5857,10 +5993,6 @@ export interface GetSecretStoreSecretStoreKeyfactorX509Store {
|
|
|
5857
5993
|
* Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
|
|
5858
5994
|
*/
|
|
5859
5995
|
keyFilePath?: string;
|
|
5860
|
-
/**
|
|
5861
|
-
* optional environment variable housing the password that is used to decrypt the key file.
|
|
5862
|
-
*/
|
|
5863
|
-
keyPasswordEnvVar?: string;
|
|
5864
5996
|
/**
|
|
5865
5997
|
* Unique human-readable name of the SecretStore.
|
|
5866
5998
|
*/
|
|
@@ -5876,45 +6008,97 @@ export interface GetSecretStoreSecretStoreKeyfactorX509Store {
|
|
|
5876
6008
|
[key: string]: string;
|
|
5877
6009
|
};
|
|
5878
6010
|
}
|
|
5879
|
-
export interface
|
|
6011
|
+
export interface GetSecretStoreSecretStoreKeyfactorX509Store {
|
|
5880
6012
|
/**
|
|
5881
|
-
*
|
|
6013
|
+
* Path to the root CA that signed the certificate passed to the client for HTTPS connection. This is not required if the CA is trusted by the host operating system. This should be a PEM formatted certificate, and doesn't necessarily have to be the CA that signed CertificateFile.
|
|
5882
6014
|
*/
|
|
5883
|
-
|
|
6015
|
+
caFilePath?: string;
|
|
5884
6016
|
/**
|
|
5885
|
-
*
|
|
6017
|
+
* Path to client certificate in PEM format. This certificate must contain a client certificate that is recognized by the EJBCA instance represented by Hostname. This PEM file may also contain the private key associated with the certificate, but KeyFile can also be set to configure the private key.
|
|
5886
6018
|
*/
|
|
5887
|
-
|
|
6019
|
+
certificateFilePath?: string;
|
|
5888
6020
|
/**
|
|
5889
|
-
*
|
|
6021
|
+
* Name of EJBCA certificate authority that will enroll CSR.
|
|
5890
6022
|
*/
|
|
5891
|
-
|
|
6023
|
+
defaultCertificateAuthorityName?: string;
|
|
5892
6024
|
/**
|
|
5893
|
-
*
|
|
6025
|
+
* Certificate profile name that EJBCA will enroll the CSR with.
|
|
5894
6026
|
*/
|
|
5895
|
-
|
|
6027
|
+
defaultCertificateProfileName?: string;
|
|
5896
6028
|
/**
|
|
5897
|
-
*
|
|
6029
|
+
* End entity profile that EJBCA will enroll the CSR with.
|
|
5898
6030
|
*/
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
6031
|
+
defaultEndEntityProfileName?: string;
|
|
6032
|
+
/**
|
|
6033
|
+
* code used by EJBCA during enrollment. May be left blank if no code is required.
|
|
6034
|
+
*/
|
|
6035
|
+
enrollmentCodeEnvVar?: string;
|
|
6036
|
+
/**
|
|
6037
|
+
* username that used by the EJBCA during enrollment. This can be left out. If so, the username must be auto-generated on the Keyfactor side.
|
|
6038
|
+
*/
|
|
6039
|
+
enrollmentUsernameEnvVar?: string;
|
|
5904
6040
|
/**
|
|
5905
6041
|
* Unique identifier of the SecretStore.
|
|
5906
6042
|
*/
|
|
5907
6043
|
id?: string;
|
|
5908
6044
|
/**
|
|
5909
|
-
*
|
|
6045
|
+
* Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
|
|
5910
6046
|
*/
|
|
5911
|
-
|
|
6047
|
+
keyFilePath?: string;
|
|
5912
6048
|
/**
|
|
5913
6049
|
* Unique human-readable name of the SecretStore.
|
|
5914
6050
|
*/
|
|
5915
6051
|
name?: string;
|
|
5916
6052
|
/**
|
|
5917
|
-
* The
|
|
6053
|
+
* The URL of the Vault to target
|
|
6054
|
+
*/
|
|
6055
|
+
serverAddress?: string;
|
|
6056
|
+
/**
|
|
6057
|
+
* Tags is a map of key, value pairs.
|
|
6058
|
+
*/
|
|
6059
|
+
tags?: {
|
|
6060
|
+
[key: string]: string;
|
|
6061
|
+
};
|
|
6062
|
+
}
|
|
6063
|
+
export interface GetSecretStoreSecretStoreVaultApprole {
|
|
6064
|
+
/**
|
|
6065
|
+
* Unique identifier of the SecretStore.
|
|
6066
|
+
*/
|
|
6067
|
+
id?: string;
|
|
6068
|
+
/**
|
|
6069
|
+
* Unique human-readable name of the SecretStore.
|
|
6070
|
+
*/
|
|
6071
|
+
name?: string;
|
|
6072
|
+
/**
|
|
6073
|
+
* The namespace to make requests within
|
|
6074
|
+
*/
|
|
6075
|
+
namespace?: string;
|
|
6076
|
+
/**
|
|
6077
|
+
* The URL of the Vault to target
|
|
6078
|
+
*/
|
|
6079
|
+
serverAddress?: string;
|
|
6080
|
+
/**
|
|
6081
|
+
* Tags is a map of key, value pairs.
|
|
6082
|
+
*/
|
|
6083
|
+
tags?: {
|
|
6084
|
+
[key: string]: string;
|
|
6085
|
+
};
|
|
6086
|
+
}
|
|
6087
|
+
export interface GetSecretStoreSecretStoreVaultApproleCertSsh {
|
|
6088
|
+
/**
|
|
6089
|
+
* Unique identifier of the SecretStore.
|
|
6090
|
+
*/
|
|
6091
|
+
id?: string;
|
|
6092
|
+
/**
|
|
6093
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
6094
|
+
*/
|
|
6095
|
+
issuedCertTtlMinutes?: number;
|
|
6096
|
+
/**
|
|
6097
|
+
* Unique human-readable name of the SecretStore.
|
|
6098
|
+
*/
|
|
6099
|
+
name?: string;
|
|
6100
|
+
/**
|
|
6101
|
+
* The namespace to make requests within
|
|
5918
6102
|
*/
|
|
5919
6103
|
namespace?: string;
|
|
5920
6104
|
/**
|
|
@@ -5972,6 +6156,54 @@ export interface GetSecretStoreSecretStoreVaultApproleCertX509 {
|
|
|
5972
6156
|
[key: string]: string;
|
|
5973
6157
|
};
|
|
5974
6158
|
}
|
|
6159
|
+
export interface GetSecretStoreSecretStoreVaultAwsEc2 {
|
|
6160
|
+
/**
|
|
6161
|
+
* Unique identifier of the SecretStore.
|
|
6162
|
+
*/
|
|
6163
|
+
id?: string;
|
|
6164
|
+
/**
|
|
6165
|
+
* Unique human-readable name of the SecretStore.
|
|
6166
|
+
*/
|
|
6167
|
+
name?: string;
|
|
6168
|
+
/**
|
|
6169
|
+
* The namespace to make requests within
|
|
6170
|
+
*/
|
|
6171
|
+
namespace?: string;
|
|
6172
|
+
/**
|
|
6173
|
+
* The URL of the Vault to target
|
|
6174
|
+
*/
|
|
6175
|
+
serverAddress?: string;
|
|
6176
|
+
/**
|
|
6177
|
+
* Tags is a map of key, value pairs.
|
|
6178
|
+
*/
|
|
6179
|
+
tags?: {
|
|
6180
|
+
[key: string]: string;
|
|
6181
|
+
};
|
|
6182
|
+
}
|
|
6183
|
+
export interface GetSecretStoreSecretStoreVaultAwsIam {
|
|
6184
|
+
/**
|
|
6185
|
+
* Unique identifier of the SecretStore.
|
|
6186
|
+
*/
|
|
6187
|
+
id?: string;
|
|
6188
|
+
/**
|
|
6189
|
+
* Unique human-readable name of the SecretStore.
|
|
6190
|
+
*/
|
|
6191
|
+
name?: string;
|
|
6192
|
+
/**
|
|
6193
|
+
* The namespace to make requests within
|
|
6194
|
+
*/
|
|
6195
|
+
namespace?: string;
|
|
6196
|
+
/**
|
|
6197
|
+
* The URL of the Vault to target
|
|
6198
|
+
*/
|
|
6199
|
+
serverAddress?: string;
|
|
6200
|
+
/**
|
|
6201
|
+
* Tags is a map of key, value pairs.
|
|
6202
|
+
*/
|
|
6203
|
+
tags?: {
|
|
6204
|
+
[key: string]: string;
|
|
6205
|
+
};
|
|
6206
|
+
}
|
|
5975
6207
|
export interface GetSecretStoreSecretStoreVaultTl {
|
|
5976
6208
|
/**
|
|
5977
6209
|
* A path to a CA file accessible by a Node
|
|
@@ -6365,6 +6597,14 @@ export interface ResourceAks {
|
|
|
6365
6597
|
* The key to authenticate TLS connections with.
|
|
6366
6598
|
*/
|
|
6367
6599
|
clientKey?: string;
|
|
6600
|
+
/**
|
|
6601
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
6602
|
+
*/
|
|
6603
|
+
discoveryEnabled?: boolean;
|
|
6604
|
+
/**
|
|
6605
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
6606
|
+
*/
|
|
6607
|
+
discoveryUsername?: string;
|
|
6368
6608
|
/**
|
|
6369
6609
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6370
6610
|
*/
|
|
@@ -6377,6 +6617,14 @@ export interface ResourceAks {
|
|
|
6377
6617
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
6378
6618
|
*/
|
|
6379
6619
|
hostname: string;
|
|
6620
|
+
/**
|
|
6621
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
6622
|
+
*/
|
|
6623
|
+
identityAliasHealthcheckUsername?: string;
|
|
6624
|
+
/**
|
|
6625
|
+
* The ID of the identity set to use for identity connections.
|
|
6626
|
+
*/
|
|
6627
|
+
identitySetId?: string;
|
|
6380
6628
|
/**
|
|
6381
6629
|
* Unique human-readable name of the Resource.
|
|
6382
6630
|
*/
|
|
@@ -6389,14 +6637,6 @@ export interface ResourceAks {
|
|
|
6389
6637
|
* The local port used by clients to connect to this resource.
|
|
6390
6638
|
*/
|
|
6391
6639
|
portOverride: number;
|
|
6392
|
-
/**
|
|
6393
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
6394
|
-
*/
|
|
6395
|
-
remoteIdentityGroupId?: string;
|
|
6396
|
-
/**
|
|
6397
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
6398
|
-
*/
|
|
6399
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
6400
6640
|
/**
|
|
6401
6641
|
* ID of the secret store containing credentials for this resource, if any.
|
|
6402
6642
|
*/
|
|
@@ -6469,6 +6709,14 @@ export interface ResourceAksServiceAccount {
|
|
|
6469
6709
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
6470
6710
|
*/
|
|
6471
6711
|
bindInterface: string;
|
|
6712
|
+
/**
|
|
6713
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
6714
|
+
*/
|
|
6715
|
+
discoveryEnabled?: boolean;
|
|
6716
|
+
/**
|
|
6717
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
6718
|
+
*/
|
|
6719
|
+
discoveryUsername?: string;
|
|
6472
6720
|
/**
|
|
6473
6721
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6474
6722
|
*/
|
|
@@ -6481,6 +6729,14 @@ export interface ResourceAksServiceAccount {
|
|
|
6481
6729
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
6482
6730
|
*/
|
|
6483
6731
|
hostname: string;
|
|
6732
|
+
/**
|
|
6733
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
6734
|
+
*/
|
|
6735
|
+
identityAliasHealthcheckUsername?: string;
|
|
6736
|
+
/**
|
|
6737
|
+
* The ID of the identity set to use for identity connections.
|
|
6738
|
+
*/
|
|
6739
|
+
identitySetId?: string;
|
|
6484
6740
|
/**
|
|
6485
6741
|
* Unique human-readable name of the Resource.
|
|
6486
6742
|
*/
|
|
@@ -6493,14 +6749,6 @@ export interface ResourceAksServiceAccount {
|
|
|
6493
6749
|
* The local port used by clients to connect to this resource.
|
|
6494
6750
|
*/
|
|
6495
6751
|
portOverride: number;
|
|
6496
|
-
/**
|
|
6497
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
6498
|
-
*/
|
|
6499
|
-
remoteIdentityGroupId?: string;
|
|
6500
|
-
/**
|
|
6501
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
6502
|
-
*/
|
|
6503
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
6504
6752
|
/**
|
|
6505
6753
|
* ID of the secret store containing credentials for this resource, if any.
|
|
6506
6754
|
*/
|
|
@@ -6643,6 +6891,14 @@ export interface ResourceAmazonEks {
|
|
|
6643
6891
|
* The name of the cluster to connect to.
|
|
6644
6892
|
*/
|
|
6645
6893
|
clusterName: string;
|
|
6894
|
+
/**
|
|
6895
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
6896
|
+
*/
|
|
6897
|
+
discoveryEnabled?: boolean;
|
|
6898
|
+
/**
|
|
6899
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
6900
|
+
*/
|
|
6901
|
+
discoveryUsername?: string;
|
|
6646
6902
|
/**
|
|
6647
6903
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6648
6904
|
*/
|
|
@@ -6655,6 +6911,14 @@ export interface ResourceAmazonEks {
|
|
|
6655
6911
|
* The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
|
|
6656
6912
|
*/
|
|
6657
6913
|
healthcheckNamespace: string;
|
|
6914
|
+
/**
|
|
6915
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
6916
|
+
*/
|
|
6917
|
+
identityAliasHealthcheckUsername?: string;
|
|
6918
|
+
/**
|
|
6919
|
+
* The ID of the identity set to use for identity connections.
|
|
6920
|
+
*/
|
|
6921
|
+
identitySetId?: string;
|
|
6658
6922
|
/**
|
|
6659
6923
|
* Unique human-readable name of the Resource.
|
|
6660
6924
|
*/
|
|
@@ -6667,14 +6931,6 @@ export interface ResourceAmazonEks {
|
|
|
6667
6931
|
* The AWS region to connect to.
|
|
6668
6932
|
*/
|
|
6669
6933
|
region: string;
|
|
6670
|
-
/**
|
|
6671
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
6672
|
-
*/
|
|
6673
|
-
remoteIdentityGroupId?: string;
|
|
6674
|
-
/**
|
|
6675
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
6676
|
-
*/
|
|
6677
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
6678
6934
|
/**
|
|
6679
6935
|
* The role to assume after logging in.
|
|
6680
6936
|
*/
|
|
@@ -6715,6 +6971,14 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
6715
6971
|
* The name of the cluster to connect to.
|
|
6716
6972
|
*/
|
|
6717
6973
|
clusterName: string;
|
|
6974
|
+
/**
|
|
6975
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
6976
|
+
*/
|
|
6977
|
+
discoveryEnabled?: boolean;
|
|
6978
|
+
/**
|
|
6979
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
6980
|
+
*/
|
|
6981
|
+
discoveryUsername?: string;
|
|
6718
6982
|
/**
|
|
6719
6983
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6720
6984
|
*/
|
|
@@ -6727,6 +6991,14 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
6727
6991
|
* The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
|
|
6728
6992
|
*/
|
|
6729
6993
|
healthcheckNamespace: string;
|
|
6994
|
+
/**
|
|
6995
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
6996
|
+
*/
|
|
6997
|
+
identityAliasHealthcheckUsername?: string;
|
|
6998
|
+
/**
|
|
6999
|
+
* The ID of the identity set to use for identity connections.
|
|
7000
|
+
*/
|
|
7001
|
+
identitySetId?: string;
|
|
6730
7002
|
/**
|
|
6731
7003
|
* Unique human-readable name of the Resource.
|
|
6732
7004
|
*/
|
|
@@ -6739,14 +7011,6 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
6739
7011
|
* The AWS region to connect to.
|
|
6740
7012
|
*/
|
|
6741
7013
|
region: string;
|
|
6742
|
-
/**
|
|
6743
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
6744
|
-
*/
|
|
6745
|
-
remoteIdentityGroupId?: string;
|
|
6746
|
-
/**
|
|
6747
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
6748
|
-
*/
|
|
6749
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
6750
7014
|
/**
|
|
6751
7015
|
* The role to assume after logging in.
|
|
6752
7016
|
*/
|
|
@@ -6807,14 +7071,6 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
6807
7071
|
* The AWS region to connect to.
|
|
6808
7072
|
*/
|
|
6809
7073
|
region: string;
|
|
6810
|
-
/**
|
|
6811
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
6812
|
-
*/
|
|
6813
|
-
remoteIdentityGroupId?: string;
|
|
6814
|
-
/**
|
|
6815
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
6816
|
-
*/
|
|
6817
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
6818
7074
|
/**
|
|
6819
7075
|
* The role to assume after logging in.
|
|
6820
7076
|
*/
|
|
@@ -7311,6 +7567,14 @@ export interface ResourceAwsConsole {
|
|
|
7311
7567
|
* If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
|
|
7312
7568
|
*/
|
|
7313
7569
|
enableEnvVariables?: boolean;
|
|
7570
|
+
/**
|
|
7571
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
7572
|
+
*/
|
|
7573
|
+
identityAliasHealthcheckUsername?: string;
|
|
7574
|
+
/**
|
|
7575
|
+
* The ID of the identity set to use for identity connections.
|
|
7576
|
+
*/
|
|
7577
|
+
identitySetId?: string;
|
|
7314
7578
|
/**
|
|
7315
7579
|
* Unique human-readable name of the Resource.
|
|
7316
7580
|
*/
|
|
@@ -7323,14 +7587,6 @@ export interface ResourceAwsConsole {
|
|
|
7323
7587
|
* The AWS region to connect to.
|
|
7324
7588
|
*/
|
|
7325
7589
|
region: string;
|
|
7326
|
-
/**
|
|
7327
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
7328
|
-
*/
|
|
7329
|
-
remoteIdentityGroupId?: string;
|
|
7330
|
-
/**
|
|
7331
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
7332
|
-
*/
|
|
7333
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
7334
7590
|
/**
|
|
7335
7591
|
* The role to assume after logging in.
|
|
7336
7592
|
*/
|
|
@@ -7371,6 +7627,14 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
7371
7627
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
7372
7628
|
*/
|
|
7373
7629
|
egressFilter?: string;
|
|
7630
|
+
/**
|
|
7631
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
7632
|
+
*/
|
|
7633
|
+
identityAliasHealthcheckUsername?: string;
|
|
7634
|
+
/**
|
|
7635
|
+
* The ID of the identity set to use for identity connections.
|
|
7636
|
+
*/
|
|
7637
|
+
identitySetId?: string;
|
|
7374
7638
|
/**
|
|
7375
7639
|
* Unique human-readable name of the Resource.
|
|
7376
7640
|
*/
|
|
@@ -7383,14 +7647,6 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
7383
7647
|
* The AWS region to connect to.
|
|
7384
7648
|
*/
|
|
7385
7649
|
region: string;
|
|
7386
|
-
/**
|
|
7387
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
7388
|
-
*/
|
|
7389
|
-
remoteIdentityGroupId?: string;
|
|
7390
|
-
/**
|
|
7391
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
7392
|
-
*/
|
|
7393
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
7394
7650
|
/**
|
|
7395
7651
|
* The role to assume after logging in.
|
|
7396
7652
|
*/
|
|
@@ -8429,6 +8685,14 @@ export interface ResourceGoogleGke {
|
|
|
8429
8685
|
* The CA to authenticate TLS connections with.
|
|
8430
8686
|
*/
|
|
8431
8687
|
certificateAuthority?: string;
|
|
8688
|
+
/**
|
|
8689
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
8690
|
+
*/
|
|
8691
|
+
discoveryEnabled?: boolean;
|
|
8692
|
+
/**
|
|
8693
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
8694
|
+
*/
|
|
8695
|
+
discoveryUsername?: string;
|
|
8432
8696
|
/**
|
|
8433
8697
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8434
8698
|
*/
|
|
@@ -8442,21 +8706,21 @@ export interface ResourceGoogleGke {
|
|
|
8442
8706
|
*/
|
|
8443
8707
|
healthcheckNamespace: string;
|
|
8444
8708
|
/**
|
|
8445
|
-
*
|
|
8709
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
8446
8710
|
*/
|
|
8447
|
-
|
|
8711
|
+
identityAliasHealthcheckUsername?: string;
|
|
8448
8712
|
/**
|
|
8449
|
-
* The
|
|
8713
|
+
* The ID of the identity set to use for identity connections.
|
|
8450
8714
|
*/
|
|
8451
|
-
|
|
8715
|
+
identitySetId?: string;
|
|
8452
8716
|
/**
|
|
8453
|
-
*
|
|
8717
|
+
* Unique human-readable name of the Resource.
|
|
8454
8718
|
*/
|
|
8455
|
-
|
|
8719
|
+
name: string;
|
|
8456
8720
|
/**
|
|
8457
|
-
* The
|
|
8721
|
+
* The local port used by clients to connect to this resource.
|
|
8458
8722
|
*/
|
|
8459
|
-
|
|
8723
|
+
portOverride: number;
|
|
8460
8724
|
/**
|
|
8461
8725
|
* ID of the secret store containing credentials for this resource, if any.
|
|
8462
8726
|
*/
|
|
@@ -8756,6 +9020,14 @@ export interface ResourceKubernetes {
|
|
|
8756
9020
|
* The key to authenticate TLS connections with.
|
|
8757
9021
|
*/
|
|
8758
9022
|
clientKey?: string;
|
|
9023
|
+
/**
|
|
9024
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
9025
|
+
*/
|
|
9026
|
+
discoveryEnabled?: boolean;
|
|
9027
|
+
/**
|
|
9028
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
9029
|
+
*/
|
|
9030
|
+
discoveryUsername?: string;
|
|
8759
9031
|
/**
|
|
8760
9032
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8761
9033
|
*/
|
|
@@ -8768,6 +9040,14 @@ export interface ResourceKubernetes {
|
|
|
8768
9040
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8769
9041
|
*/
|
|
8770
9042
|
hostname: string;
|
|
9043
|
+
/**
|
|
9044
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
9045
|
+
*/
|
|
9046
|
+
identityAliasHealthcheckUsername?: string;
|
|
9047
|
+
/**
|
|
9048
|
+
* The ID of the identity set to use for identity connections.
|
|
9049
|
+
*/
|
|
9050
|
+
identitySetId?: string;
|
|
8771
9051
|
/**
|
|
8772
9052
|
* Unique human-readable name of the Resource.
|
|
8773
9053
|
*/
|
|
@@ -8780,14 +9060,6 @@ export interface ResourceKubernetes {
|
|
|
8780
9060
|
* The local port used by clients to connect to this resource.
|
|
8781
9061
|
*/
|
|
8782
9062
|
portOverride: number;
|
|
8783
|
-
/**
|
|
8784
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
8785
|
-
*/
|
|
8786
|
-
remoteIdentityGroupId?: string;
|
|
8787
|
-
/**
|
|
8788
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
8789
|
-
*/
|
|
8790
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
8791
9063
|
/**
|
|
8792
9064
|
* ID of the secret store containing credentials for this resource, if any.
|
|
8793
9065
|
*/
|
|
@@ -8860,6 +9132,14 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
8860
9132
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
8861
9133
|
*/
|
|
8862
9134
|
bindInterface: string;
|
|
9135
|
+
/**
|
|
9136
|
+
* If true, configures discovery of a cluster to be run from a node.
|
|
9137
|
+
*/
|
|
9138
|
+
discoveryEnabled?: boolean;
|
|
9139
|
+
/**
|
|
9140
|
+
* If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
|
|
9141
|
+
*/
|
|
9142
|
+
discoveryUsername?: string;
|
|
8863
9143
|
/**
|
|
8864
9144
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8865
9145
|
*/
|
|
@@ -8872,6 +9152,14 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
8872
9152
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8873
9153
|
*/
|
|
8874
9154
|
hostname: string;
|
|
9155
|
+
/**
|
|
9156
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
9157
|
+
*/
|
|
9158
|
+
identityAliasHealthcheckUsername?: string;
|
|
9159
|
+
/**
|
|
9160
|
+
* The ID of the identity set to use for identity connections.
|
|
9161
|
+
*/
|
|
9162
|
+
identitySetId?: string;
|
|
8875
9163
|
/**
|
|
8876
9164
|
* Unique human-readable name of the Resource.
|
|
8877
9165
|
*/
|
|
@@ -8884,14 +9172,6 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
8884
9172
|
* The local port used by clients to connect to this resource.
|
|
8885
9173
|
*/
|
|
8886
9174
|
portOverride: number;
|
|
8887
|
-
/**
|
|
8888
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
8889
|
-
*/
|
|
8890
|
-
remoteIdentityGroupId?: string;
|
|
8891
|
-
/**
|
|
8892
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
8893
|
-
*/
|
|
8894
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
8895
9175
|
/**
|
|
8896
9176
|
* ID of the secret store containing credentials for this resource, if any.
|
|
8897
9177
|
*/
|
|
@@ -9266,10 +9546,6 @@ export interface ResourceMongoLegacyHost {
|
|
|
9266
9546
|
* The local port used by clients to connect to this resource.
|
|
9267
9547
|
*/
|
|
9268
9548
|
portOverride: number;
|
|
9269
|
-
/**
|
|
9270
|
-
* The name of the mongo replicaset.
|
|
9271
|
-
*/
|
|
9272
|
-
replicaSet?: string;
|
|
9273
9549
|
/**
|
|
9274
9550
|
* ID of the secret store containing credentials for this resource, if any.
|
|
9275
9551
|
*/
|
|
@@ -10110,6 +10386,14 @@ export interface ResourceRdpCert {
|
|
|
10110
10386
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
10111
10387
|
*/
|
|
10112
10388
|
hostname: string;
|
|
10389
|
+
/**
|
|
10390
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
10391
|
+
*/
|
|
10392
|
+
identityAliasHealthcheckUsername?: string;
|
|
10393
|
+
/**
|
|
10394
|
+
* The ID of the identity set to use for identity connections.
|
|
10395
|
+
*/
|
|
10396
|
+
identitySetId?: string;
|
|
10113
10397
|
/**
|
|
10114
10398
|
* Unique human-readable name of the Resource.
|
|
10115
10399
|
*/
|
|
@@ -10122,14 +10406,6 @@ export interface ResourceRdpCert {
|
|
|
10122
10406
|
* The local port used by clients to connect to this resource.
|
|
10123
10407
|
*/
|
|
10124
10408
|
portOverride: number;
|
|
10125
|
-
/**
|
|
10126
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
10127
|
-
*/
|
|
10128
|
-
remoteIdentityGroupId?: string;
|
|
10129
|
-
/**
|
|
10130
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
10131
|
-
*/
|
|
10132
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
10133
10409
|
/**
|
|
10134
10410
|
* ID of the secret store containing credentials for this resource, if any.
|
|
10135
10411
|
*/
|
|
@@ -10755,6 +11031,14 @@ export interface ResourceSshCert {
|
|
|
10755
11031
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
10756
11032
|
*/
|
|
10757
11033
|
hostname: string;
|
|
11034
|
+
/**
|
|
11035
|
+
* The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
|
|
11036
|
+
*/
|
|
11037
|
+
identityAliasHealthcheckUsername?: string;
|
|
11038
|
+
/**
|
|
11039
|
+
* The ID of the identity set to use for identity connections.
|
|
11040
|
+
*/
|
|
11041
|
+
identitySetId?: string;
|
|
10758
11042
|
/**
|
|
10759
11043
|
* The key type to use e.g. rsa-2048 or ed25519
|
|
10760
11044
|
*/
|
|
@@ -10775,14 +11059,6 @@ export interface ResourceSshCert {
|
|
|
10775
11059
|
* The local port used by clients to connect to this resource.
|
|
10776
11060
|
*/
|
|
10777
11061
|
portOverride: number;
|
|
10778
|
-
/**
|
|
10779
|
-
* The ID of the remote identity group to use for remote identity connections.
|
|
10780
|
-
*/
|
|
10781
|
-
remoteIdentityGroupId?: string;
|
|
10782
|
-
/**
|
|
10783
|
-
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
10784
|
-
*/
|
|
10785
|
-
remoteIdentityHealthcheckUsername?: string;
|
|
10786
11062
|
/**
|
|
10787
11063
|
* ID of the secret store containing credentials for this resource, if any.
|
|
10788
11064
|
*/
|
|
@@ -10858,6 +11134,62 @@ export interface ResourceSshCustomerKey {
|
|
|
10858
11134
|
*/
|
|
10859
11135
|
username?: string;
|
|
10860
11136
|
}
|
|
11137
|
+
export interface ResourceSshPassword {
|
|
11138
|
+
/**
|
|
11139
|
+
* Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
|
|
11140
|
+
*/
|
|
11141
|
+
allowDeprecatedKeyExchanges?: boolean;
|
|
11142
|
+
/**
|
|
11143
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
11144
|
+
*/
|
|
11145
|
+
bindInterface: string;
|
|
11146
|
+
/**
|
|
11147
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
11148
|
+
*/
|
|
11149
|
+
egressFilter?: string;
|
|
11150
|
+
/**
|
|
11151
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
11152
|
+
*/
|
|
11153
|
+
hostname: string;
|
|
11154
|
+
/**
|
|
11155
|
+
* Unique human-readable name of the Resource.
|
|
11156
|
+
*/
|
|
11157
|
+
name: string;
|
|
11158
|
+
/**
|
|
11159
|
+
* The password to authenticate with.
|
|
11160
|
+
*/
|
|
11161
|
+
password?: string;
|
|
11162
|
+
/**
|
|
11163
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
11164
|
+
*/
|
|
11165
|
+
port: number;
|
|
11166
|
+
/**
|
|
11167
|
+
* Whether port forwarding is allowed through this server.
|
|
11168
|
+
*/
|
|
11169
|
+
portForwarding?: boolean;
|
|
11170
|
+
/**
|
|
11171
|
+
* The local port used by clients to connect to this resource.
|
|
11172
|
+
*/
|
|
11173
|
+
portOverride: number;
|
|
11174
|
+
/**
|
|
11175
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
11176
|
+
*/
|
|
11177
|
+
secretStoreId?: string;
|
|
11178
|
+
/**
|
|
11179
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
11180
|
+
*/
|
|
11181
|
+
subdomain: string;
|
|
11182
|
+
/**
|
|
11183
|
+
* Tags is a map of key, value pairs.
|
|
11184
|
+
*/
|
|
11185
|
+
tags?: {
|
|
11186
|
+
[key: string]: string;
|
|
11187
|
+
};
|
|
11188
|
+
/**
|
|
11189
|
+
* The username to authenticate with.
|
|
11190
|
+
*/
|
|
11191
|
+
username?: string;
|
|
11192
|
+
}
|
|
10861
11193
|
export interface ResourceSybase {
|
|
10862
11194
|
/**
|
|
10863
11195
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -11252,7 +11584,7 @@ export interface SecretStoreGcpStore {
|
|
|
11252
11584
|
[key: string]: string;
|
|
11253
11585
|
};
|
|
11254
11586
|
}
|
|
11255
|
-
export interface
|
|
11587
|
+
export interface SecretStoreKeyfactorSshStore {
|
|
11256
11588
|
/**
|
|
11257
11589
|
* Path to the root CA that signed the certificate passed to the client for HTTPS connection. This is not required if the CA is trusted by the host operating system. This should be a PEM formatted certificate, and doesn't necessarily have to be the CA that signed CertificateFile.
|
|
11258
11590
|
*/
|
|
@@ -11286,9 +11618,53 @@ export interface SecretStoreKeyfactorX509Store {
|
|
|
11286
11618
|
*/
|
|
11287
11619
|
keyFilePath?: string;
|
|
11288
11620
|
/**
|
|
11289
|
-
*
|
|
11621
|
+
* Unique human-readable name of the SecretStore.
|
|
11622
|
+
*/
|
|
11623
|
+
name: string;
|
|
11624
|
+
/**
|
|
11625
|
+
* The URL of the Vault to target
|
|
11626
|
+
*/
|
|
11627
|
+
serverAddress: string;
|
|
11628
|
+
/**
|
|
11629
|
+
* Tags is a map of key, value pairs.
|
|
11630
|
+
*/
|
|
11631
|
+
tags?: {
|
|
11632
|
+
[key: string]: string;
|
|
11633
|
+
};
|
|
11634
|
+
}
|
|
11635
|
+
export interface SecretStoreKeyfactorX509Store {
|
|
11636
|
+
/**
|
|
11637
|
+
* Path to the root CA that signed the certificate passed to the client for HTTPS connection. This is not required if the CA is trusted by the host operating system. This should be a PEM formatted certificate, and doesn't necessarily have to be the CA that signed CertificateFile.
|
|
11638
|
+
*/
|
|
11639
|
+
caFilePath?: string;
|
|
11640
|
+
/**
|
|
11641
|
+
* Path to client certificate in PEM format. This certificate must contain a client certificate that is recognized by the EJBCA instance represented by Hostname. This PEM file may also contain the private key associated with the certificate, but KeyFile can also be set to configure the private key.
|
|
11642
|
+
*/
|
|
11643
|
+
certificateFilePath: string;
|
|
11644
|
+
/**
|
|
11645
|
+
* Name of EJBCA certificate authority that will enroll CSR.
|
|
11646
|
+
*/
|
|
11647
|
+
defaultCertificateAuthorityName: string;
|
|
11648
|
+
/**
|
|
11649
|
+
* Certificate profile name that EJBCA will enroll the CSR with.
|
|
11650
|
+
*/
|
|
11651
|
+
defaultCertificateProfileName: string;
|
|
11652
|
+
/**
|
|
11653
|
+
* End entity profile that EJBCA will enroll the CSR with.
|
|
11654
|
+
*/
|
|
11655
|
+
defaultEndEntityProfileName: string;
|
|
11656
|
+
/**
|
|
11657
|
+
* code used by EJBCA during enrollment. May be left blank if no code is required.
|
|
11658
|
+
*/
|
|
11659
|
+
enrollmentCodeEnvVar?: string;
|
|
11660
|
+
/**
|
|
11661
|
+
* username that used by the EJBCA during enrollment. This can be left out. If so, the username must be auto-generated on the Keyfactor side.
|
|
11662
|
+
*/
|
|
11663
|
+
enrollmentUsernameEnvVar?: string;
|
|
11664
|
+
/**
|
|
11665
|
+
* Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
|
|
11290
11666
|
*/
|
|
11291
|
-
|
|
11667
|
+
keyFilePath?: string;
|
|
11292
11668
|
/**
|
|
11293
11669
|
* Unique human-readable name of the SecretStore.
|
|
11294
11670
|
*/
|
|
@@ -11388,6 +11764,46 @@ export interface SecretStoreVaultApproleCertX509 {
|
|
|
11388
11764
|
[key: string]: string;
|
|
11389
11765
|
};
|
|
11390
11766
|
}
|
|
11767
|
+
export interface SecretStoreVaultAwsEc2 {
|
|
11768
|
+
/**
|
|
11769
|
+
* Unique human-readable name of the SecretStore.
|
|
11770
|
+
*/
|
|
11771
|
+
name: string;
|
|
11772
|
+
/**
|
|
11773
|
+
* The namespace to make requests within
|
|
11774
|
+
*/
|
|
11775
|
+
namespace?: string;
|
|
11776
|
+
/**
|
|
11777
|
+
* The URL of the Vault to target
|
|
11778
|
+
*/
|
|
11779
|
+
serverAddress: string;
|
|
11780
|
+
/**
|
|
11781
|
+
* Tags is a map of key, value pairs.
|
|
11782
|
+
*/
|
|
11783
|
+
tags?: {
|
|
11784
|
+
[key: string]: string;
|
|
11785
|
+
};
|
|
11786
|
+
}
|
|
11787
|
+
export interface SecretStoreVaultAwsIam {
|
|
11788
|
+
/**
|
|
11789
|
+
* Unique human-readable name of the SecretStore.
|
|
11790
|
+
*/
|
|
11791
|
+
name: string;
|
|
11792
|
+
/**
|
|
11793
|
+
* The namespace to make requests within
|
|
11794
|
+
*/
|
|
11795
|
+
namespace?: string;
|
|
11796
|
+
/**
|
|
11797
|
+
* The URL of the Vault to target
|
|
11798
|
+
*/
|
|
11799
|
+
serverAddress: string;
|
|
11800
|
+
/**
|
|
11801
|
+
* Tags is a map of key, value pairs.
|
|
11802
|
+
*/
|
|
11803
|
+
tags?: {
|
|
11804
|
+
[key: string]: string;
|
|
11805
|
+
};
|
|
11806
|
+
}
|
|
11391
11807
|
export interface SecretStoreVaultTls {
|
|
11392
11808
|
/**
|
|
11393
11809
|
* A path to a CA file accessible by a Node
|