@pierskarsenbarg/sdm 1.11.0 → 1.13.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.
Files changed (91) hide show
  1. package/account.d.ts +2 -3
  2. package/account.js +2 -3
  3. package/account.js.map +1 -1
  4. package/accountAttachment.d.ts +0 -2
  5. package/accountAttachment.js +0 -2
  6. package/accountAttachment.js.map +1 -1
  7. package/approvalWorkflow.d.ts +0 -2
  8. package/approvalWorkflow.js +0 -2
  9. package/approvalWorkflow.js.map +1 -1
  10. package/approvalWorkflowApprover.d.ts +0 -2
  11. package/approvalWorkflowApprover.js +0 -2
  12. package/approvalWorkflowApprover.js.map +1 -1
  13. package/approvalWorkflowStep.d.ts +0 -2
  14. package/approvalWorkflowStep.js +0 -2
  15. package/approvalWorkflowStep.js.map +1 -1
  16. package/getAccount.d.ts +52 -14
  17. package/getAccount.js +22 -6
  18. package/getAccount.js.map +1 -1
  19. package/getAccountAttachment.d.ts +0 -4
  20. package/getAccountAttachment.js +0 -4
  21. package/getAccountAttachment.js.map +1 -1
  22. package/getApprovalWorkflow.d.ts +0 -4
  23. package/getApprovalWorkflow.js +0 -4
  24. package/getApprovalWorkflow.js.map +1 -1
  25. package/getApprovalWorkflowApprover.d.ts +0 -4
  26. package/getApprovalWorkflowApprover.js +0 -4
  27. package/getApprovalWorkflowApprover.js.map +1 -1
  28. package/getApprovalWorkflowStep.d.ts +0 -4
  29. package/getApprovalWorkflowStep.js +0 -4
  30. package/getApprovalWorkflowStep.js.map +1 -1
  31. package/getIdentityAlias.d.ts +105 -0
  32. package/getIdentityAlias.js +53 -0
  33. package/getIdentityAlias.js.map +1 -0
  34. package/getIdentitySet.d.ts +77 -0
  35. package/getIdentitySet.js +47 -0
  36. package/getIdentitySet.js.map +1 -0
  37. package/getNode.d.ts +3 -7
  38. package/getNode.js +0 -4
  39. package/getNode.js.map +1 -1
  40. package/getRemoteIdentity.d.ts +0 -4
  41. package/getRemoteIdentity.js +0 -4
  42. package/getRemoteIdentity.js.map +1 -1
  43. package/getRemoteIdentityGroup.d.ts +0 -4
  44. package/getRemoteIdentityGroup.js +0 -4
  45. package/getRemoteIdentityGroup.js.map +1 -1
  46. package/getResource.d.ts +3 -7
  47. package/getResource.js +0 -4
  48. package/getResource.js.map +1 -1
  49. package/getSecretStore.d.ts +3 -3
  50. package/getSshCaPubkey.d.ts +0 -4
  51. package/getSshCaPubkey.js +0 -4
  52. package/getSshCaPubkey.js.map +1 -1
  53. package/getWorkflow.d.ts +0 -4
  54. package/getWorkflow.js +0 -4
  55. package/getWorkflow.js.map +1 -1
  56. package/getWorkflowApprover.d.ts +0 -4
  57. package/getWorkflowApprover.js +0 -4
  58. package/getWorkflowApprover.js.map +1 -1
  59. package/getWorkflowRole.d.ts +0 -4
  60. package/getWorkflowRole.js +0 -4
  61. package/getWorkflowRole.js.map +1 -1
  62. package/identityAlias.d.ts +83 -0
  63. package/identityAlias.js +73 -0
  64. package/identityAlias.js.map +1 -0
  65. package/identitySet.d.ts +68 -0
  66. package/identitySet.js +69 -0
  67. package/identitySet.js.map +1 -0
  68. package/index.d.ts +12 -0
  69. package/index.js +18 -2
  70. package/index.js.map +1 -1
  71. package/node.d.ts +0 -2
  72. package/node.js +0 -2
  73. package/node.js.map +1 -1
  74. package/package.json +1 -1
  75. package/role.d.ts +0 -2
  76. package/role.js +0 -2
  77. package/role.js.map +1 -1
  78. package/secretStore.d.ts +30 -0
  79. package/secretStore.js +8 -0
  80. package/secretStore.js.map +1 -1
  81. package/types/input.d.ts +280 -96
  82. package/types/output.d.ts +657 -197
  83. package/workflow.d.ts +0 -2
  84. package/workflow.js +0 -2
  85. package/workflow.js.map +1 -1
  86. package/workflowApprover.d.ts +0 -2
  87. package/workflowApprover.js +0 -2
  88. package/workflowApprover.js.map +1 -1
  89. package/workflowRole.d.ts +0 -2
  90. package/workflowRole.js +0 -2
  91. package/workflowRole.js.map +1 -1
package/types/output.d.ts CHANGED
@@ -57,6 +57,10 @@ export interface GetAccountAccount {
57
57
  * A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services are typically automated jobs.
58
58
  */
59
59
  services: outputs.GetAccountAccountService[];
60
+ /**
61
+ * A Token is an account providing tokenized access for automation or integration use. Tokens include admin tokens, API keys, and SCIM tokens.
62
+ */
63
+ tokens: outputs.GetAccountAccountToken[];
60
64
  /**
61
65
  * A User can connect to resources they are granted directly, or granted via roles.
62
66
  */
@@ -68,11 +72,51 @@ export interface GetAccountAccountService {
68
72
  */
69
73
  id?: string;
70
74
  /**
71
- * Unique human-readable name of the Service.
75
+ * Unique human-readable name of the Token.
72
76
  */
73
77
  name?: string;
74
78
  /**
75
- * The Service's suspended state.
79
+ * Reserved for future use. Always false for tokens.
80
+ */
81
+ suspended?: boolean;
82
+ /**
83
+ * Tags is a map of key, value pairs.
84
+ */
85
+ tags?: {
86
+ [key: string]: string;
87
+ };
88
+ }
89
+ export interface GetAccountAccountToken {
90
+ /**
91
+ * Corresponds to the type of token, e.g. api or admin-token.
92
+ */
93
+ accountType?: string;
94
+ /**
95
+ * The timestamp when the Token will expire.
96
+ */
97
+ deadline?: string;
98
+ /**
99
+ * Duration from token creation to expiration.
100
+ */
101
+ duration?: string;
102
+ /**
103
+ * Unique identifier of the User.
104
+ */
105
+ id?: string;
106
+ /**
107
+ * Unique human-readable name of the Token.
108
+ */
109
+ name?: string;
110
+ /**
111
+ * Permissions assigned to the token, e.g. role:create.
112
+ */
113
+ permissions?: string[];
114
+ /**
115
+ * The timestamp when the Token was last rekeyed.
116
+ */
117
+ rekeyed?: string;
118
+ /**
119
+ * Reserved for future use. Always false for tokens.
76
120
  */
77
121
  suspended?: boolean;
78
122
  /**
@@ -112,7 +156,7 @@ export interface GetAccountAccountUser {
112
156
  */
113
157
  permissionLevel?: string;
114
158
  /**
115
- * The Service's suspended state.
159
+ * Reserved for future use. Always false for tokens.
116
160
  */
117
161
  suspended: boolean;
118
162
  /**
@@ -186,6 +230,34 @@ export interface GetApprovalWorkflowStepApprovalWorkflowStep {
186
230
  */
187
231
  id?: string;
188
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
+ }
189
261
  export interface GetNodeNode {
190
262
  /**
191
263
  * Gateway represents a StrongDM CLI installation running in gateway mode.
@@ -467,6 +539,14 @@ export interface GetResourceResourceAk {
467
539
  * The key to authenticate TLS connections with.
468
540
  */
469
541
  clientKey?: string;
542
+ /**
543
+ * If true, configures discovery of a cluster to be run from a node.
544
+ */
545
+ discoveryEnabled?: boolean;
546
+ /**
547
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
548
+ */
549
+ discoveryUsername?: string;
470
550
  /**
471
551
  * A filter applied to the routing logic to pin datasource to nodes.
472
552
  */
@@ -483,6 +563,14 @@ export interface GetResourceResourceAk {
483
563
  * Unique identifier of the Resource.
484
564
  */
485
565
  id?: string;
566
+ /**
567
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
568
+ */
569
+ identityAliasHealthcheckUsername?: string;
570
+ /**
571
+ * The ID of the identity set to use for identity connections.
572
+ */
573
+ identitySetId?: string;
486
574
  /**
487
575
  * Unique human-readable name of the Resource.
488
576
  */
@@ -495,14 +583,6 @@ export interface GetResourceResourceAk {
495
583
  * The local port used by clients to connect to this resource.
496
584
  */
497
585
  portOverride?: number;
498
- /**
499
- * The ID of the remote identity group to use for remote identity connections.
500
- */
501
- remoteIdentityGroupId?: string;
502
- /**
503
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
504
- */
505
- remoteIdentityHealthcheckUsername?: string;
506
586
  /**
507
587
  * ID of the secret store containing credentials for this resource, if any.
508
588
  */
@@ -579,6 +659,14 @@ export interface GetResourceResourceAksServiceAccount {
579
659
  * 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.
580
660
  */
581
661
  bindInterface?: string;
662
+ /**
663
+ * If true, configures discovery of a cluster to be run from a node.
664
+ */
665
+ discoveryEnabled?: boolean;
666
+ /**
667
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
668
+ */
669
+ discoveryUsername?: string;
582
670
  /**
583
671
  * A filter applied to the routing logic to pin datasource to nodes.
584
672
  */
@@ -595,6 +683,14 @@ export interface GetResourceResourceAksServiceAccount {
595
683
  * Unique identifier of the Resource.
596
684
  */
597
685
  id?: string;
686
+ /**
687
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
688
+ */
689
+ identityAliasHealthcheckUsername?: string;
690
+ /**
691
+ * The ID of the identity set to use for identity connections.
692
+ */
693
+ identitySetId?: string;
598
694
  /**
599
695
  * Unique human-readable name of the Resource.
600
696
  */
@@ -607,14 +703,6 @@ export interface GetResourceResourceAksServiceAccount {
607
703
  * The local port used by clients to connect to this resource.
608
704
  */
609
705
  portOverride?: number;
610
- /**
611
- * The ID of the remote identity group to use for remote identity connections.
612
- */
613
- remoteIdentityGroupId?: string;
614
- /**
615
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
616
- */
617
- remoteIdentityHealthcheckUsername?: string;
618
706
  /**
619
707
  * ID of the secret store containing credentials for this resource, if any.
620
708
  */
@@ -825,6 +913,14 @@ export interface GetResourceResourceAmazonEk {
825
913
  * The name of the cluster to connect to.
826
914
  */
827
915
  clusterName?: string;
916
+ /**
917
+ * If true, configures discovery of a cluster to be run from a node.
918
+ */
919
+ discoveryEnabled?: boolean;
920
+ /**
921
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
922
+ */
923
+ discoveryUsername?: string;
828
924
  /**
829
925
  * A filter applied to the routing logic to pin datasource to nodes.
830
926
  */
@@ -841,6 +937,14 @@ export interface GetResourceResourceAmazonEk {
841
937
  * Unique identifier of the Resource.
842
938
  */
843
939
  id?: string;
940
+ /**
941
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
942
+ */
943
+ identityAliasHealthcheckUsername?: string;
944
+ /**
945
+ * The ID of the identity set to use for identity connections.
946
+ */
947
+ identitySetId?: string;
844
948
  /**
845
949
  * Unique human-readable name of the Resource.
846
950
  */
@@ -853,14 +957,6 @@ export interface GetResourceResourceAmazonEk {
853
957
  * The AWS region to connect to.
854
958
  */
855
959
  region?: string;
856
- /**
857
- * The ID of the remote identity group to use for remote identity connections.
858
- */
859
- remoteIdentityGroupId?: string;
860
- /**
861
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
862
- */
863
- remoteIdentityHealthcheckUsername?: string;
864
960
  /**
865
961
  * The role to assume after logging in.
866
962
  */
@@ -901,6 +997,14 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
901
997
  * The name of the cluster to connect to.
902
998
  */
903
999
  clusterName?: string;
1000
+ /**
1001
+ * If true, configures discovery of a cluster to be run from a node.
1002
+ */
1003
+ discoveryEnabled?: boolean;
1004
+ /**
1005
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
1006
+ */
1007
+ discoveryUsername?: string;
904
1008
  /**
905
1009
  * A filter applied to the routing logic to pin datasource to nodes.
906
1010
  */
@@ -917,6 +1021,14 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
917
1021
  * Unique identifier of the Resource.
918
1022
  */
919
1023
  id?: string;
1024
+ /**
1025
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
1026
+ */
1027
+ identityAliasHealthcheckUsername?: string;
1028
+ /**
1029
+ * The ID of the identity set to use for identity connections.
1030
+ */
1031
+ identitySetId?: string;
920
1032
  /**
921
1033
  * Unique human-readable name of the Resource.
922
1034
  */
@@ -929,14 +1041,6 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
929
1041
  * The AWS region to connect to.
930
1042
  */
931
1043
  region?: string;
932
- /**
933
- * The ID of the remote identity group to use for remote identity connections.
934
- */
935
- remoteIdentityGroupId?: string;
936
- /**
937
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
938
- */
939
- remoteIdentityHealthcheckUsername?: string;
940
1044
  /**
941
1045
  * The role to assume after logging in.
942
1046
  */
@@ -1001,14 +1105,6 @@ export interface GetResourceResourceAmazonEksInstanceProfileUserImpersonation {
1001
1105
  * The AWS region to connect to.
1002
1106
  */
1003
1107
  region?: string;
1004
- /**
1005
- * The ID of the remote identity group to use for remote identity connections.
1006
- */
1007
- remoteIdentityGroupId?: string;
1008
- /**
1009
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
1010
- */
1011
- remoteIdentityHealthcheckUsername?: string;
1012
1108
  /**
1013
1109
  * The role to assume after logging in.
1014
1110
  */
@@ -1481,6 +1577,14 @@ export interface GetResourceResourceAwsConsole {
1481
1577
  * Unique identifier of the Resource.
1482
1578
  */
1483
1579
  id?: string;
1580
+ /**
1581
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
1582
+ */
1583
+ identityAliasHealthcheckUsername?: string;
1584
+ /**
1585
+ * The ID of the identity set to use for identity connections.
1586
+ */
1587
+ identitySetId?: string;
1484
1588
  /**
1485
1589
  * Unique human-readable name of the Resource.
1486
1590
  */
@@ -1493,14 +1597,6 @@ export interface GetResourceResourceAwsConsole {
1493
1597
  * The AWS region to connect to.
1494
1598
  */
1495
1599
  region?: string;
1496
- /**
1497
- * The ID of the remote identity group to use for remote identity connections.
1498
- */
1499
- remoteIdentityGroupId?: string;
1500
- /**
1501
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
1502
- */
1503
- remoteIdentityHealthcheckUsername?: string;
1504
1600
  /**
1505
1601
  * The role to assume after logging in.
1506
1602
  */
@@ -1545,6 +1641,14 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
1545
1641
  * Unique identifier of the Resource.
1546
1642
  */
1547
1643
  id?: string;
1644
+ /**
1645
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
1646
+ */
1647
+ identityAliasHealthcheckUsername?: string;
1648
+ /**
1649
+ * The ID of the identity set to use for identity connections.
1650
+ */
1651
+ identitySetId?: string;
1548
1652
  /**
1549
1653
  * Unique human-readable name of the Resource.
1550
1654
  */
@@ -1557,14 +1661,6 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
1557
1661
  * The AWS region to connect to.
1558
1662
  */
1559
1663
  region?: string;
1560
- /**
1561
- * The ID of the remote identity group to use for remote identity connections.
1562
- */
1563
- remoteIdentityGroupId?: string;
1564
- /**
1565
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
1566
- */
1567
- remoteIdentityHealthcheckUsername?: string;
1568
1664
  /**
1569
1665
  * The role to assume after logging in.
1570
1666
  */
@@ -2679,6 +2775,14 @@ export interface GetResourceResourceGoogleGke {
2679
2775
  * The CA to authenticate TLS connections with.
2680
2776
  */
2681
2777
  certificateAuthority?: string;
2778
+ /**
2779
+ * If true, configures discovery of a cluster to be run from a node.
2780
+ */
2781
+ discoveryEnabled?: boolean;
2782
+ /**
2783
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
2784
+ */
2785
+ discoveryUsername?: string;
2682
2786
  /**
2683
2787
  * A filter applied to the routing logic to pin datasource to nodes.
2684
2788
  */
@@ -2696,21 +2800,21 @@ export interface GetResourceResourceGoogleGke {
2696
2800
  */
2697
2801
  id?: string;
2698
2802
  /**
2699
- * Unique human-readable name of the Resource.
2803
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
2700
2804
  */
2701
- name?: string;
2805
+ identityAliasHealthcheckUsername?: string;
2702
2806
  /**
2703
- * The local port used by clients to connect to this resource.
2807
+ * The ID of the identity set to use for identity connections.
2704
2808
  */
2705
- portOverride?: number;
2809
+ identitySetId?: string;
2706
2810
  /**
2707
- * The ID of the remote identity group to use for remote identity connections.
2811
+ * Unique human-readable name of the Resource.
2708
2812
  */
2709
- remoteIdentityGroupId?: string;
2813
+ name?: string;
2710
2814
  /**
2711
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
2815
+ * The local port used by clients to connect to this resource.
2712
2816
  */
2713
- remoteIdentityHealthcheckUsername?: string;
2817
+ portOverride?: number;
2714
2818
  /**
2715
2819
  * ID of the secret store containing credentials for this resource, if any.
2716
2820
  */
@@ -3030,6 +3134,14 @@ export interface GetResourceResourceKubernete {
3030
3134
  * The key to authenticate TLS connections with.
3031
3135
  */
3032
3136
  clientKey?: string;
3137
+ /**
3138
+ * If true, configures discovery of a cluster to be run from a node.
3139
+ */
3140
+ discoveryEnabled?: boolean;
3141
+ /**
3142
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
3143
+ */
3144
+ discoveryUsername?: string;
3033
3145
  /**
3034
3146
  * A filter applied to the routing logic to pin datasource to nodes.
3035
3147
  */
@@ -3046,6 +3158,14 @@ export interface GetResourceResourceKubernete {
3046
3158
  * Unique identifier of the Resource.
3047
3159
  */
3048
3160
  id?: string;
3161
+ /**
3162
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
3163
+ */
3164
+ identityAliasHealthcheckUsername?: string;
3165
+ /**
3166
+ * The ID of the identity set to use for identity connections.
3167
+ */
3168
+ identitySetId?: string;
3049
3169
  /**
3050
3170
  * Unique human-readable name of the Resource.
3051
3171
  */
@@ -3058,14 +3178,6 @@ export interface GetResourceResourceKubernete {
3058
3178
  * The local port used by clients to connect to this resource.
3059
3179
  */
3060
3180
  portOverride?: number;
3061
- /**
3062
- * The ID of the remote identity group to use for remote identity connections.
3063
- */
3064
- remoteIdentityGroupId?: string;
3065
- /**
3066
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
3067
- */
3068
- remoteIdentityHealthcheckUsername?: string;
3069
3181
  /**
3070
3182
  * ID of the secret store containing credentials for this resource, if any.
3071
3183
  */
@@ -3142,6 +3254,14 @@ export interface GetResourceResourceKubernetesServiceAccount {
3142
3254
  * 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.
3143
3255
  */
3144
3256
  bindInterface?: string;
3257
+ /**
3258
+ * If true, configures discovery of a cluster to be run from a node.
3259
+ */
3260
+ discoveryEnabled?: boolean;
3261
+ /**
3262
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
3263
+ */
3264
+ discoveryUsername?: string;
3145
3265
  /**
3146
3266
  * A filter applied to the routing logic to pin datasource to nodes.
3147
3267
  */
@@ -3158,6 +3278,14 @@ export interface GetResourceResourceKubernetesServiceAccount {
3158
3278
  * Unique identifier of the Resource.
3159
3279
  */
3160
3280
  id?: string;
3281
+ /**
3282
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
3283
+ */
3284
+ identityAliasHealthcheckUsername?: string;
3285
+ /**
3286
+ * The ID of the identity set to use for identity connections.
3287
+ */
3288
+ identitySetId?: string;
3161
3289
  /**
3162
3290
  * Unique human-readable name of the Resource.
3163
3291
  */
@@ -3170,14 +3298,6 @@ export interface GetResourceResourceKubernetesServiceAccount {
3170
3298
  * The local port used by clients to connect to this resource.
3171
3299
  */
3172
3300
  portOverride?: number;
3173
- /**
3174
- * The ID of the remote identity group to use for remote identity connections.
3175
- */
3176
- remoteIdentityGroupId?: string;
3177
- /**
3178
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
3179
- */
3180
- remoteIdentityHealthcheckUsername?: string;
3181
3301
  /**
3182
3302
  * ID of the secret store containing credentials for this resource, if any.
3183
3303
  */
@@ -4484,6 +4604,14 @@ export interface GetResourceResourceRdpCert {
4484
4604
  * Unique identifier of the Resource.
4485
4605
  */
4486
4606
  id?: string;
4607
+ /**
4608
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
4609
+ */
4610
+ identityAliasHealthcheckUsername?: string;
4611
+ /**
4612
+ * The ID of the identity set to use for identity connections.
4613
+ */
4614
+ identitySetId?: string;
4487
4615
  /**
4488
4616
  * Unique human-readable name of the Resource.
4489
4617
  */
@@ -4496,14 +4624,6 @@ export interface GetResourceResourceRdpCert {
4496
4624
  * The local port used by clients to connect to this resource.
4497
4625
  */
4498
4626
  portOverride?: number;
4499
- /**
4500
- * The ID of the remote identity group to use for remote identity connections.
4501
- */
4502
- remoteIdentityGroupId?: string;
4503
- /**
4504
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
4505
- */
4506
- remoteIdentityHealthcheckUsername?: string;
4507
4627
  /**
4508
4628
  * ID of the secret store containing credentials for this resource, if any.
4509
4629
  */
@@ -5173,6 +5293,14 @@ export interface GetResourceResourceSshCert {
5173
5293
  * Unique identifier of the Resource.
5174
5294
  */
5175
5295
  id?: string;
5296
+ /**
5297
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
5298
+ */
5299
+ identityAliasHealthcheckUsername?: string;
5300
+ /**
5301
+ * The ID of the identity set to use for identity connections.
5302
+ */
5303
+ identitySetId?: string;
5176
5304
  /**
5177
5305
  * The key type to use e.g. rsa-2048 or ed25519
5178
5306
  */
@@ -5193,14 +5321,6 @@ export interface GetResourceResourceSshCert {
5193
5321
  * The local port used by clients to connect to this resource.
5194
5322
  */
5195
5323
  portOverride?: number;
5196
- /**
5197
- * The ID of the remote identity group to use for remote identity connections.
5198
- */
5199
- remoteIdentityGroupId?: string;
5200
- /**
5201
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
5202
- */
5203
- remoteIdentityHealthcheckUsername?: string;
5204
5324
  /**
5205
5325
  * ID of the secret store containing credentials for this resource, if any.
5206
5326
  */
@@ -5527,9 +5647,13 @@ export interface GetSecretStoreSecretStore {
5527
5647
  delineaStores: outputs.GetSecretStoreSecretStoreDelineaStore[];
5528
5648
  gcpCertX509Stores: outputs.GetSecretStoreSecretStoreGcpCertX509Store[];
5529
5649
  gcpStores: outputs.GetSecretStoreSecretStoreGcpStore[];
5650
+ keyfactorSshStores: outputs.GetSecretStoreSecretStoreKeyfactorSshStore[];
5651
+ keyfactorX509Stores: outputs.GetSecretStoreSecretStoreKeyfactorX509Store[];
5530
5652
  vaultApproleCertSshes: outputs.GetSecretStoreSecretStoreVaultApproleCertSsh[];
5531
5653
  vaultApproleCertX509s: outputs.GetSecretStoreSecretStoreVaultApproleCertX509[];
5532
5654
  vaultApproles: outputs.GetSecretStoreSecretStoreVaultApprole[];
5655
+ vaultAwsEc2s: outputs.GetSecretStoreSecretStoreVaultAwsEc2[];
5656
+ vaultAwsIams: outputs.GetSecretStoreSecretStoreVaultAwsIam[];
5533
5657
  vaultTls: outputs.GetSecretStoreSecretStoreVaultTl[];
5534
5658
  vaultTlsCertSshes: outputs.GetSecretStoreSecretStoreVaultTlsCertSsh[];
5535
5659
  vaultTlsCertX509s: outputs.GetSecretStoreSecretStoreVaultTlsCertX509[];
@@ -5775,6 +5899,110 @@ export interface GetSecretStoreSecretStoreGcpStore {
5775
5899
  [key: string]: string;
5776
5900
  };
5777
5901
  }
5902
+ export interface GetSecretStoreSecretStoreKeyfactorSshStore {
5903
+ /**
5904
+ * 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.
5905
+ */
5906
+ caFilePath?: string;
5907
+ /**
5908
+ * 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.
5909
+ */
5910
+ certificateFilePath?: string;
5911
+ /**
5912
+ * Name of EJBCA certificate authority that will enroll CSR.
5913
+ */
5914
+ defaultCertificateAuthorityName?: string;
5915
+ /**
5916
+ * Certificate profile name that EJBCA will enroll the CSR with.
5917
+ */
5918
+ defaultCertificateProfileName?: string;
5919
+ /**
5920
+ * End entity profile that EJBCA will enroll the CSR with.
5921
+ */
5922
+ defaultEndEntityProfileName?: string;
5923
+ /**
5924
+ * code used by EJBCA during enrollment. May be left blank if no code is required.
5925
+ */
5926
+ enrollmentCodeEnvVar?: string;
5927
+ /**
5928
+ * 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.
5929
+ */
5930
+ enrollmentUsernameEnvVar?: string;
5931
+ /**
5932
+ * Unique identifier of the SecretStore.
5933
+ */
5934
+ id?: string;
5935
+ /**
5936
+ * Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
5937
+ */
5938
+ keyFilePath?: string;
5939
+ /**
5940
+ * Unique human-readable name of the SecretStore.
5941
+ */
5942
+ name?: string;
5943
+ /**
5944
+ * The URL of the Vault to target
5945
+ */
5946
+ serverAddress?: string;
5947
+ /**
5948
+ * Tags is a map of key, value pairs.
5949
+ */
5950
+ tags?: {
5951
+ [key: string]: string;
5952
+ };
5953
+ }
5954
+ export interface GetSecretStoreSecretStoreKeyfactorX509Store {
5955
+ /**
5956
+ * 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.
5957
+ */
5958
+ caFilePath?: string;
5959
+ /**
5960
+ * 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.
5961
+ */
5962
+ certificateFilePath?: string;
5963
+ /**
5964
+ * Name of EJBCA certificate authority that will enroll CSR.
5965
+ */
5966
+ defaultCertificateAuthorityName?: string;
5967
+ /**
5968
+ * Certificate profile name that EJBCA will enroll the CSR with.
5969
+ */
5970
+ defaultCertificateProfileName?: string;
5971
+ /**
5972
+ * End entity profile that EJBCA will enroll the CSR with.
5973
+ */
5974
+ defaultEndEntityProfileName?: string;
5975
+ /**
5976
+ * code used by EJBCA during enrollment. May be left blank if no code is required.
5977
+ */
5978
+ enrollmentCodeEnvVar?: string;
5979
+ /**
5980
+ * 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.
5981
+ */
5982
+ enrollmentUsernameEnvVar?: string;
5983
+ /**
5984
+ * Unique identifier of the SecretStore.
5985
+ */
5986
+ id?: string;
5987
+ /**
5988
+ * Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
5989
+ */
5990
+ keyFilePath?: string;
5991
+ /**
5992
+ * Unique human-readable name of the SecretStore.
5993
+ */
5994
+ name?: string;
5995
+ /**
5996
+ * The URL of the Vault to target
5997
+ */
5998
+ serverAddress?: string;
5999
+ /**
6000
+ * Tags is a map of key, value pairs.
6001
+ */
6002
+ tags?: {
6003
+ [key: string]: string;
6004
+ };
6005
+ }
5778
6006
  export interface GetSecretStoreSecretStoreVaultApprole {
5779
6007
  /**
5780
6008
  * Unique identifier of the SecretStore.
@@ -5871,9 +6099,57 @@ export interface GetSecretStoreSecretStoreVaultApproleCertX509 {
5871
6099
  [key: string]: string;
5872
6100
  };
5873
6101
  }
5874
- export interface GetSecretStoreSecretStoreVaultTl {
6102
+ export interface GetSecretStoreSecretStoreVaultAwsEc2 {
5875
6103
  /**
5876
- * A path to a CA file accessible by a Node
6104
+ * Unique identifier of the SecretStore.
6105
+ */
6106
+ id?: string;
6107
+ /**
6108
+ * Unique human-readable name of the SecretStore.
6109
+ */
6110
+ name?: string;
6111
+ /**
6112
+ * The namespace to make requests within
6113
+ */
6114
+ namespace?: string;
6115
+ /**
6116
+ * The URL of the Vault to target
6117
+ */
6118
+ serverAddress?: string;
6119
+ /**
6120
+ * Tags is a map of key, value pairs.
6121
+ */
6122
+ tags?: {
6123
+ [key: string]: string;
6124
+ };
6125
+ }
6126
+ export interface GetSecretStoreSecretStoreVaultAwsIam {
6127
+ /**
6128
+ * Unique identifier of the SecretStore.
6129
+ */
6130
+ id?: string;
6131
+ /**
6132
+ * Unique human-readable name of the SecretStore.
6133
+ */
6134
+ name?: string;
6135
+ /**
6136
+ * The namespace to make requests within
6137
+ */
6138
+ namespace?: string;
6139
+ /**
6140
+ * The URL of the Vault to target
6141
+ */
6142
+ serverAddress?: string;
6143
+ /**
6144
+ * Tags is a map of key, value pairs.
6145
+ */
6146
+ tags?: {
6147
+ [key: string]: string;
6148
+ };
6149
+ }
6150
+ export interface GetSecretStoreSecretStoreVaultTl {
6151
+ /**
6152
+ * A path to a CA file accessible by a Node
5877
6153
  */
5878
6154
  caCertPath?: string;
5879
6155
  /**
@@ -6264,6 +6540,14 @@ export interface ResourceAks {
6264
6540
  * The key to authenticate TLS connections with.
6265
6541
  */
6266
6542
  clientKey?: string;
6543
+ /**
6544
+ * If true, configures discovery of a cluster to be run from a node.
6545
+ */
6546
+ discoveryEnabled?: boolean;
6547
+ /**
6548
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
6549
+ */
6550
+ discoveryUsername?: string;
6267
6551
  /**
6268
6552
  * A filter applied to the routing logic to pin datasource to nodes.
6269
6553
  */
@@ -6276,6 +6560,14 @@ export interface ResourceAks {
6276
6560
  * The host to dial to initiate a connection from the egress node to this resource.
6277
6561
  */
6278
6562
  hostname: string;
6563
+ /**
6564
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
6565
+ */
6566
+ identityAliasHealthcheckUsername?: string;
6567
+ /**
6568
+ * The ID of the identity set to use for identity connections.
6569
+ */
6570
+ identitySetId?: string;
6279
6571
  /**
6280
6572
  * Unique human-readable name of the Resource.
6281
6573
  */
@@ -6288,14 +6580,6 @@ export interface ResourceAks {
6288
6580
  * The local port used by clients to connect to this resource.
6289
6581
  */
6290
6582
  portOverride: number;
6291
- /**
6292
- * The ID of the remote identity group to use for remote identity connections.
6293
- */
6294
- remoteIdentityGroupId?: string;
6295
- /**
6296
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
6297
- */
6298
- remoteIdentityHealthcheckUsername?: string;
6299
6583
  /**
6300
6584
  * ID of the secret store containing credentials for this resource, if any.
6301
6585
  */
@@ -6368,6 +6652,14 @@ export interface ResourceAksServiceAccount {
6368
6652
  * 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.
6369
6653
  */
6370
6654
  bindInterface: string;
6655
+ /**
6656
+ * If true, configures discovery of a cluster to be run from a node.
6657
+ */
6658
+ discoveryEnabled?: boolean;
6659
+ /**
6660
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
6661
+ */
6662
+ discoveryUsername?: string;
6371
6663
  /**
6372
6664
  * A filter applied to the routing logic to pin datasource to nodes.
6373
6665
  */
@@ -6380,6 +6672,14 @@ export interface ResourceAksServiceAccount {
6380
6672
  * The host to dial to initiate a connection from the egress node to this resource.
6381
6673
  */
6382
6674
  hostname: string;
6675
+ /**
6676
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
6677
+ */
6678
+ identityAliasHealthcheckUsername?: string;
6679
+ /**
6680
+ * The ID of the identity set to use for identity connections.
6681
+ */
6682
+ identitySetId?: string;
6383
6683
  /**
6384
6684
  * Unique human-readable name of the Resource.
6385
6685
  */
@@ -6392,14 +6692,6 @@ export interface ResourceAksServiceAccount {
6392
6692
  * The local port used by clients to connect to this resource.
6393
6693
  */
6394
6694
  portOverride: number;
6395
- /**
6396
- * The ID of the remote identity group to use for remote identity connections.
6397
- */
6398
- remoteIdentityGroupId?: string;
6399
- /**
6400
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
6401
- */
6402
- remoteIdentityHealthcheckUsername?: string;
6403
6695
  /**
6404
6696
  * ID of the secret store containing credentials for this resource, if any.
6405
6697
  */
@@ -6542,6 +6834,14 @@ export interface ResourceAmazonEks {
6542
6834
  * The name of the cluster to connect to.
6543
6835
  */
6544
6836
  clusterName: string;
6837
+ /**
6838
+ * If true, configures discovery of a cluster to be run from a node.
6839
+ */
6840
+ discoveryEnabled?: boolean;
6841
+ /**
6842
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
6843
+ */
6844
+ discoveryUsername?: string;
6545
6845
  /**
6546
6846
  * A filter applied to the routing logic to pin datasource to nodes.
6547
6847
  */
@@ -6554,6 +6854,14 @@ export interface ResourceAmazonEks {
6554
6854
  * 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.
6555
6855
  */
6556
6856
  healthcheckNamespace: string;
6857
+ /**
6858
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
6859
+ */
6860
+ identityAliasHealthcheckUsername?: string;
6861
+ /**
6862
+ * The ID of the identity set to use for identity connections.
6863
+ */
6864
+ identitySetId?: string;
6557
6865
  /**
6558
6866
  * Unique human-readable name of the Resource.
6559
6867
  */
@@ -6566,14 +6874,6 @@ export interface ResourceAmazonEks {
6566
6874
  * The AWS region to connect to.
6567
6875
  */
6568
6876
  region: string;
6569
- /**
6570
- * The ID of the remote identity group to use for remote identity connections.
6571
- */
6572
- remoteIdentityGroupId?: string;
6573
- /**
6574
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
6575
- */
6576
- remoteIdentityHealthcheckUsername?: string;
6577
6877
  /**
6578
6878
  * The role to assume after logging in.
6579
6879
  */
@@ -6614,6 +6914,14 @@ export interface ResourceAmazonEksInstanceProfile {
6614
6914
  * The name of the cluster to connect to.
6615
6915
  */
6616
6916
  clusterName: string;
6917
+ /**
6918
+ * If true, configures discovery of a cluster to be run from a node.
6919
+ */
6920
+ discoveryEnabled?: boolean;
6921
+ /**
6922
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
6923
+ */
6924
+ discoveryUsername?: string;
6617
6925
  /**
6618
6926
  * A filter applied to the routing logic to pin datasource to nodes.
6619
6927
  */
@@ -6626,6 +6934,14 @@ export interface ResourceAmazonEksInstanceProfile {
6626
6934
  * 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.
6627
6935
  */
6628
6936
  healthcheckNamespace: string;
6937
+ /**
6938
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
6939
+ */
6940
+ identityAliasHealthcheckUsername?: string;
6941
+ /**
6942
+ * The ID of the identity set to use for identity connections.
6943
+ */
6944
+ identitySetId?: string;
6629
6945
  /**
6630
6946
  * Unique human-readable name of the Resource.
6631
6947
  */
@@ -6638,14 +6954,6 @@ export interface ResourceAmazonEksInstanceProfile {
6638
6954
  * The AWS region to connect to.
6639
6955
  */
6640
6956
  region: string;
6641
- /**
6642
- * The ID of the remote identity group to use for remote identity connections.
6643
- */
6644
- remoteIdentityGroupId?: string;
6645
- /**
6646
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
6647
- */
6648
- remoteIdentityHealthcheckUsername?: string;
6649
6957
  /**
6650
6958
  * The role to assume after logging in.
6651
6959
  */
@@ -6706,14 +7014,6 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
6706
7014
  * The AWS region to connect to.
6707
7015
  */
6708
7016
  region: string;
6709
- /**
6710
- * The ID of the remote identity group to use for remote identity connections.
6711
- */
6712
- remoteIdentityGroupId?: string;
6713
- /**
6714
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
6715
- */
6716
- remoteIdentityHealthcheckUsername?: string;
6717
7017
  /**
6718
7018
  * The role to assume after logging in.
6719
7019
  */
@@ -7210,6 +7510,14 @@ export interface ResourceAwsConsole {
7210
7510
  * If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
7211
7511
  */
7212
7512
  enableEnvVariables?: boolean;
7513
+ /**
7514
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
7515
+ */
7516
+ identityAliasHealthcheckUsername?: string;
7517
+ /**
7518
+ * The ID of the identity set to use for identity connections.
7519
+ */
7520
+ identitySetId?: string;
7213
7521
  /**
7214
7522
  * Unique human-readable name of the Resource.
7215
7523
  */
@@ -7222,14 +7530,6 @@ export interface ResourceAwsConsole {
7222
7530
  * The AWS region to connect to.
7223
7531
  */
7224
7532
  region: string;
7225
- /**
7226
- * The ID of the remote identity group to use for remote identity connections.
7227
- */
7228
- remoteIdentityGroupId?: string;
7229
- /**
7230
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
7231
- */
7232
- remoteIdentityHealthcheckUsername?: string;
7233
7533
  /**
7234
7534
  * The role to assume after logging in.
7235
7535
  */
@@ -7270,6 +7570,14 @@ export interface ResourceAwsConsoleStaticKeyPair {
7270
7570
  * A filter applied to the routing logic to pin datasource to nodes.
7271
7571
  */
7272
7572
  egressFilter?: string;
7573
+ /**
7574
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
7575
+ */
7576
+ identityAliasHealthcheckUsername?: string;
7577
+ /**
7578
+ * The ID of the identity set to use for identity connections.
7579
+ */
7580
+ identitySetId?: string;
7273
7581
  /**
7274
7582
  * Unique human-readable name of the Resource.
7275
7583
  */
@@ -7282,14 +7590,6 @@ export interface ResourceAwsConsoleStaticKeyPair {
7282
7590
  * The AWS region to connect to.
7283
7591
  */
7284
7592
  region: string;
7285
- /**
7286
- * The ID of the remote identity group to use for remote identity connections.
7287
- */
7288
- remoteIdentityGroupId?: string;
7289
- /**
7290
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
7291
- */
7292
- remoteIdentityHealthcheckUsername?: string;
7293
7593
  /**
7294
7594
  * The role to assume after logging in.
7295
7595
  */
@@ -8328,6 +8628,14 @@ export interface ResourceGoogleGke {
8328
8628
  * The CA to authenticate TLS connections with.
8329
8629
  */
8330
8630
  certificateAuthority?: string;
8631
+ /**
8632
+ * If true, configures discovery of a cluster to be run from a node.
8633
+ */
8634
+ discoveryEnabled?: boolean;
8635
+ /**
8636
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
8637
+ */
8638
+ discoveryUsername?: string;
8331
8639
  /**
8332
8640
  * A filter applied to the routing logic to pin datasource to nodes.
8333
8641
  */
@@ -8341,21 +8649,21 @@ export interface ResourceGoogleGke {
8341
8649
  */
8342
8650
  healthcheckNamespace: string;
8343
8651
  /**
8344
- * Unique human-readable name of the Resource.
8652
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
8345
8653
  */
8346
- name: string;
8654
+ identityAliasHealthcheckUsername?: string;
8347
8655
  /**
8348
- * The local port used by clients to connect to this resource.
8656
+ * The ID of the identity set to use for identity connections.
8349
8657
  */
8350
- portOverride: number;
8658
+ identitySetId?: string;
8351
8659
  /**
8352
- * The ID of the remote identity group to use for remote identity connections.
8660
+ * Unique human-readable name of the Resource.
8353
8661
  */
8354
- remoteIdentityGroupId?: string;
8662
+ name: string;
8355
8663
  /**
8356
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
8664
+ * The local port used by clients to connect to this resource.
8357
8665
  */
8358
- remoteIdentityHealthcheckUsername?: string;
8666
+ portOverride: number;
8359
8667
  /**
8360
8668
  * ID of the secret store containing credentials for this resource, if any.
8361
8669
  */
@@ -8655,6 +8963,14 @@ export interface ResourceKubernetes {
8655
8963
  * The key to authenticate TLS connections with.
8656
8964
  */
8657
8965
  clientKey?: string;
8966
+ /**
8967
+ * If true, configures discovery of a cluster to be run from a node.
8968
+ */
8969
+ discoveryEnabled?: boolean;
8970
+ /**
8971
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
8972
+ */
8973
+ discoveryUsername?: string;
8658
8974
  /**
8659
8975
  * A filter applied to the routing logic to pin datasource to nodes.
8660
8976
  */
@@ -8667,6 +8983,14 @@ export interface ResourceKubernetes {
8667
8983
  * The host to dial to initiate a connection from the egress node to this resource.
8668
8984
  */
8669
8985
  hostname: string;
8986
+ /**
8987
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
8988
+ */
8989
+ identityAliasHealthcheckUsername?: string;
8990
+ /**
8991
+ * The ID of the identity set to use for identity connections.
8992
+ */
8993
+ identitySetId?: string;
8670
8994
  /**
8671
8995
  * Unique human-readable name of the Resource.
8672
8996
  */
@@ -8679,14 +9003,6 @@ export interface ResourceKubernetes {
8679
9003
  * The local port used by clients to connect to this resource.
8680
9004
  */
8681
9005
  portOverride: number;
8682
- /**
8683
- * The ID of the remote identity group to use for remote identity connections.
8684
- */
8685
- remoteIdentityGroupId?: string;
8686
- /**
8687
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
8688
- */
8689
- remoteIdentityHealthcheckUsername?: string;
8690
9006
  /**
8691
9007
  * ID of the secret store containing credentials for this resource, if any.
8692
9008
  */
@@ -8759,6 +9075,14 @@ export interface ResourceKubernetesServiceAccount {
8759
9075
  * 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.
8760
9076
  */
8761
9077
  bindInterface: string;
9078
+ /**
9079
+ * If true, configures discovery of a cluster to be run from a node.
9080
+ */
9081
+ discoveryEnabled?: boolean;
9082
+ /**
9083
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
9084
+ */
9085
+ discoveryUsername?: string;
8762
9086
  /**
8763
9087
  * A filter applied to the routing logic to pin datasource to nodes.
8764
9088
  */
@@ -8771,6 +9095,14 @@ export interface ResourceKubernetesServiceAccount {
8771
9095
  * The host to dial to initiate a connection from the egress node to this resource.
8772
9096
  */
8773
9097
  hostname: string;
9098
+ /**
9099
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
9100
+ */
9101
+ identityAliasHealthcheckUsername?: string;
9102
+ /**
9103
+ * The ID of the identity set to use for identity connections.
9104
+ */
9105
+ identitySetId?: string;
8774
9106
  /**
8775
9107
  * Unique human-readable name of the Resource.
8776
9108
  */
@@ -8783,14 +9115,6 @@ export interface ResourceKubernetesServiceAccount {
8783
9115
  * The local port used by clients to connect to this resource.
8784
9116
  */
8785
9117
  portOverride: number;
8786
- /**
8787
- * The ID of the remote identity group to use for remote identity connections.
8788
- */
8789
- remoteIdentityGroupId?: string;
8790
- /**
8791
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
8792
- */
8793
- remoteIdentityHealthcheckUsername?: string;
8794
9118
  /**
8795
9119
  * ID of the secret store containing credentials for this resource, if any.
8796
9120
  */
@@ -10009,6 +10333,14 @@ export interface ResourceRdpCert {
10009
10333
  * The host to dial to initiate a connection from the egress node to this resource.
10010
10334
  */
10011
10335
  hostname: string;
10336
+ /**
10337
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
10338
+ */
10339
+ identityAliasHealthcheckUsername?: string;
10340
+ /**
10341
+ * The ID of the identity set to use for identity connections.
10342
+ */
10343
+ identitySetId?: string;
10012
10344
  /**
10013
10345
  * Unique human-readable name of the Resource.
10014
10346
  */
@@ -10021,14 +10353,6 @@ export interface ResourceRdpCert {
10021
10353
  * The local port used by clients to connect to this resource.
10022
10354
  */
10023
10355
  portOverride: number;
10024
- /**
10025
- * The ID of the remote identity group to use for remote identity connections.
10026
- */
10027
- remoteIdentityGroupId?: string;
10028
- /**
10029
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
10030
- */
10031
- remoteIdentityHealthcheckUsername?: string;
10032
10356
  /**
10033
10357
  * ID of the secret store containing credentials for this resource, if any.
10034
10358
  */
@@ -10654,6 +10978,14 @@ export interface ResourceSshCert {
10654
10978
  * The host to dial to initiate a connection from the egress node to this resource.
10655
10979
  */
10656
10980
  hostname: string;
10981
+ /**
10982
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
10983
+ */
10984
+ identityAliasHealthcheckUsername?: string;
10985
+ /**
10986
+ * The ID of the identity set to use for identity connections.
10987
+ */
10988
+ identitySetId?: string;
10657
10989
  /**
10658
10990
  * The key type to use e.g. rsa-2048 or ed25519
10659
10991
  */
@@ -10674,14 +11006,6 @@ export interface ResourceSshCert {
10674
11006
  * The local port used by clients to connect to this resource.
10675
11007
  */
10676
11008
  portOverride: number;
10677
- /**
10678
- * The ID of the remote identity group to use for remote identity connections.
10679
- */
10680
- remoteIdentityGroupId?: string;
10681
- /**
10682
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
10683
- */
10684
- remoteIdentityHealthcheckUsername?: string;
10685
11009
  /**
10686
11010
  * ID of the secret store containing credentials for this resource, if any.
10687
11011
  */
@@ -11151,6 +11475,102 @@ export interface SecretStoreGcpStore {
11151
11475
  [key: string]: string;
11152
11476
  };
11153
11477
  }
11478
+ export interface SecretStoreKeyfactorSshStore {
11479
+ /**
11480
+ * 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.
11481
+ */
11482
+ caFilePath?: string;
11483
+ /**
11484
+ * 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.
11485
+ */
11486
+ certificateFilePath: string;
11487
+ /**
11488
+ * Name of EJBCA certificate authority that will enroll CSR.
11489
+ */
11490
+ defaultCertificateAuthorityName: string;
11491
+ /**
11492
+ * Certificate profile name that EJBCA will enroll the CSR with.
11493
+ */
11494
+ defaultCertificateProfileName: string;
11495
+ /**
11496
+ * End entity profile that EJBCA will enroll the CSR with.
11497
+ */
11498
+ defaultEndEntityProfileName: string;
11499
+ /**
11500
+ * code used by EJBCA during enrollment. May be left blank if no code is required.
11501
+ */
11502
+ enrollmentCodeEnvVar?: string;
11503
+ /**
11504
+ * 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.
11505
+ */
11506
+ enrollmentUsernameEnvVar?: string;
11507
+ /**
11508
+ * Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
11509
+ */
11510
+ keyFilePath?: string;
11511
+ /**
11512
+ * Unique human-readable name of the SecretStore.
11513
+ */
11514
+ name: string;
11515
+ /**
11516
+ * The URL of the Vault to target
11517
+ */
11518
+ serverAddress: string;
11519
+ /**
11520
+ * Tags is a map of key, value pairs.
11521
+ */
11522
+ tags?: {
11523
+ [key: string]: string;
11524
+ };
11525
+ }
11526
+ export interface SecretStoreKeyfactorX509Store {
11527
+ /**
11528
+ * 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.
11529
+ */
11530
+ caFilePath?: string;
11531
+ /**
11532
+ * 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.
11533
+ */
11534
+ certificateFilePath: string;
11535
+ /**
11536
+ * Name of EJBCA certificate authority that will enroll CSR.
11537
+ */
11538
+ defaultCertificateAuthorityName: string;
11539
+ /**
11540
+ * Certificate profile name that EJBCA will enroll the CSR with.
11541
+ */
11542
+ defaultCertificateProfileName: string;
11543
+ /**
11544
+ * End entity profile that EJBCA will enroll the CSR with.
11545
+ */
11546
+ defaultEndEntityProfileName: string;
11547
+ /**
11548
+ * code used by EJBCA during enrollment. May be left blank if no code is required.
11549
+ */
11550
+ enrollmentCodeEnvVar?: string;
11551
+ /**
11552
+ * 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.
11553
+ */
11554
+ enrollmentUsernameEnvVar?: string;
11555
+ /**
11556
+ * Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
11557
+ */
11558
+ keyFilePath?: string;
11559
+ /**
11560
+ * Unique human-readable name of the SecretStore.
11561
+ */
11562
+ name: string;
11563
+ /**
11564
+ * The URL of the Vault to target
11565
+ */
11566
+ serverAddress: string;
11567
+ /**
11568
+ * Tags is a map of key, value pairs.
11569
+ */
11570
+ tags?: {
11571
+ [key: string]: string;
11572
+ };
11573
+ }
11154
11574
  export interface SecretStoreVaultApprole {
11155
11575
  /**
11156
11576
  * Unique human-readable name of the SecretStore.
@@ -11235,6 +11655,46 @@ export interface SecretStoreVaultApproleCertX509 {
11235
11655
  [key: string]: string;
11236
11656
  };
11237
11657
  }
11658
+ export interface SecretStoreVaultAwsEc2 {
11659
+ /**
11660
+ * Unique human-readable name of the SecretStore.
11661
+ */
11662
+ name: string;
11663
+ /**
11664
+ * The namespace to make requests within
11665
+ */
11666
+ namespace?: string;
11667
+ /**
11668
+ * The URL of the Vault to target
11669
+ */
11670
+ serverAddress: string;
11671
+ /**
11672
+ * Tags is a map of key, value pairs.
11673
+ */
11674
+ tags?: {
11675
+ [key: string]: string;
11676
+ };
11677
+ }
11678
+ export interface SecretStoreVaultAwsIam {
11679
+ /**
11680
+ * Unique human-readable name of the SecretStore.
11681
+ */
11682
+ name: string;
11683
+ /**
11684
+ * The namespace to make requests within
11685
+ */
11686
+ namespace?: string;
11687
+ /**
11688
+ * The URL of the Vault to target
11689
+ */
11690
+ serverAddress: string;
11691
+ /**
11692
+ * Tags is a map of key, value pairs.
11693
+ */
11694
+ tags?: {
11695
+ [key: string]: string;
11696
+ };
11697
+ }
11238
11698
  export interface SecretStoreVaultTls {
11239
11699
  /**
11240
11700
  * A path to a CA file accessible by a Node