@pierskarsenbarg/sdm 1.26.0 → 1.27.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/types/output.d.ts CHANGED
@@ -52,6 +52,30 @@ export interface AccountUser {
52
52
  [key: string]: string;
53
53
  };
54
54
  }
55
+ export interface ApprovalWorkflowApprovalStep {
56
+ /**
57
+ * The approvers for this approval step
58
+ */
59
+ approvers: outputs.ApprovalWorkflowApprovalStepApprover[];
60
+ /**
61
+ * Whether any or all approvers are required to approve for this approval step (optional, defaults to any)
62
+ */
63
+ quantifier?: string;
64
+ /**
65
+ * Duration after which this approval step will be skipped if no approval is given (optional, if not provided this step must be manually approved)
66
+ */
67
+ skipAfter?: string;
68
+ }
69
+ export interface ApprovalWorkflowApprovalStepApprover {
70
+ /**
71
+ * The account id of the approver (only an accountId OR a roleId may be present for one approver)
72
+ */
73
+ accountId?: string;
74
+ /**
75
+ * The role id of the approver (only an accountId OR a roleId may be present for one approver)
76
+ */
77
+ roleId?: string;
78
+ }
55
79
  export interface GetAccountAccount {
56
80
  /**
57
81
  * A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services are typically automated jobs.
@@ -180,11 +204,39 @@ export interface GetAccountAttachmentAccountAttachment {
180
204
  */
181
205
  roleId?: string;
182
206
  }
207
+ export interface GetApprovalWorkflowApprovalStep {
208
+ /**
209
+ * The approvers for this approval step
210
+ */
211
+ approvers: outputs.GetApprovalWorkflowApprovalStepApprover[];
212
+ /**
213
+ * Whether any or all approvers are required to approve for this approval step (optional, defaults to any)
214
+ */
215
+ quantifier?: string;
216
+ /**
217
+ * Duration after which this approval step will be skipped if no approval is given (optional, if not provided this step must be manually approved)
218
+ */
219
+ skipAfter?: string;
220
+ }
221
+ export interface GetApprovalWorkflowApprovalStepApprover {
222
+ /**
223
+ * The account id of the approver (only an accountId OR a roleId may be present for one approver)
224
+ */
225
+ accountId?: string;
226
+ /**
227
+ * The role id of the approver (only an accountId OR a roleId may be present for one approver)
228
+ */
229
+ roleId?: string;
230
+ }
183
231
  export interface GetApprovalWorkflowApprovalWorkflow {
184
232
  /**
185
233
  * Approval mode of the ApprovalWorkflow
186
234
  */
187
235
  approvalMode?: string;
236
+ /**
237
+ * The approval steps of this approval workflow
238
+ */
239
+ approvalSteps?: outputs.GetApprovalWorkflowApprovalWorkflowApprovalStep[];
188
240
  /**
189
241
  * Optional description of the ApprovalWorkflow.
190
242
  */
@@ -198,37 +250,29 @@ export interface GetApprovalWorkflowApprovalWorkflow {
198
250
  */
199
251
  name?: string;
200
252
  }
201
- export interface GetApprovalWorkflowApproverApprovalWorkflowApprover {
202
- /**
203
- * The approver account id.
204
- */
205
- accountId?: string;
206
- /**
207
- * The approval flow id specified the approval workflow that this approver belongs to
208
- */
209
- approvalFlowId?: string;
253
+ export interface GetApprovalWorkflowApprovalWorkflowApprovalStep {
210
254
  /**
211
- * The approval step id specified the approval flow step that this approver belongs to
255
+ * The approvers for this approval step
212
256
  */
213
- approvalStepId?: string;
257
+ approvers: outputs.GetApprovalWorkflowApprovalWorkflowApprovalStepApprover[];
214
258
  /**
215
- * Unique identifier of the ApprovalWorkflowApprover.
259
+ * Whether any or all approvers are required to approve for this approval step (optional, defaults to any)
216
260
  */
217
- id?: string;
261
+ quantifier?: string;
218
262
  /**
219
- * The approver role id
263
+ * Duration after which this approval step will be skipped if no approval is given (optional, if not provided this step must be manually approved)
220
264
  */
221
- roleId?: string;
265
+ skipAfter?: string;
222
266
  }
223
- export interface GetApprovalWorkflowStepApprovalWorkflowStep {
267
+ export interface GetApprovalWorkflowApprovalWorkflowApprovalStepApprover {
224
268
  /**
225
- * The approval flow id specified the approval workfflow that this step belongs to
269
+ * The account id of the approver (only an accountId OR a roleId may be present for one approver)
226
270
  */
227
- approvalFlowId?: string;
271
+ accountId?: string;
228
272
  /**
229
- * Unique identifier of the ApprovalWorkflowStep.
273
+ * The role id of the approver (only an accountId OR a roleId may be present for one approver)
230
274
  */
231
- id?: string;
275
+ roleId?: string;
232
276
  }
233
277
  export interface GetIdentityAliasIdentityAlias {
234
278
  /**
@@ -258,6 +302,46 @@ export interface GetIdentitySetIdentitySet {
258
302
  */
259
303
  name?: string;
260
304
  }
305
+ export interface GetManagedSecretManagedSecret {
306
+ /**
307
+ * public part of the secret value
308
+ */
309
+ config: string;
310
+ /**
311
+ * Timestamp of when secret is going to be rotated
312
+ */
313
+ expiresAt: string;
314
+ /**
315
+ * Unique identifier of the Managed Secret.
316
+ */
317
+ id?: string;
318
+ /**
319
+ * Timestamp of when secret was last rotated
320
+ */
321
+ lastRotatedAt: string;
322
+ /**
323
+ * Unique human-readable name of the Managed Secret.
324
+ */
325
+ name?: string;
326
+ /**
327
+ * An ID of a Secret Engine linked with the Managed Secret.
328
+ */
329
+ secretEngineId?: string;
330
+ /**
331
+ * Path in a secret store.
332
+ */
333
+ secretStorePath: string;
334
+ /**
335
+ * Tags is a map of key, value pairs.
336
+ */
337
+ tags?: {
338
+ [key: string]: string;
339
+ };
340
+ /**
341
+ * Sensitive value of the secret.
342
+ */
343
+ value?: string;
344
+ }
261
345
  export interface GetNodeNode {
262
346
  /**
263
347
  * Gateway represents a StrongDM CLI installation running in gateway mode.
@@ -581,6 +665,7 @@ export interface GetResourceResource {
581
665
  rdps: outputs.GetResourceResourceRdp[];
582
666
  rdsPostgresIams: outputs.GetResourceResourceRdsPostgresIam[];
583
667
  redis: outputs.GetResourceResourceRedi[];
668
+ redisClusters: outputs.GetResourceResourceRedisCluster[];
584
669
  redshiftIams: outputs.GetResourceResourceRedshiftIam[];
585
670
  redshiftServerlessIams: outputs.GetResourceResourceRedshiftServerlessIam[];
586
671
  redshifts: outputs.GetResourceResourceRedshift[];
@@ -598,6 +683,7 @@ export interface GetResourceResource {
598
683
  sybases: outputs.GetResourceResourceSybase[];
599
684
  teradatas: outputs.GetResourceResourceTeradata[];
600
685
  trinos: outputs.GetResourceResourceTrino[];
686
+ verticas: outputs.GetResourceResourceVertica[];
601
687
  }
602
688
  export interface GetResourceResourceAk {
603
689
  /**
@@ -5980,6 +6066,66 @@ export interface GetResourceResourceRedi {
5980
6066
  */
5981
6067
  username?: string;
5982
6068
  }
6069
+ export interface GetResourceResourceRedisCluster {
6070
+ /**
6071
+ * 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.
6072
+ */
6073
+ bindInterface?: string;
6074
+ /**
6075
+ * A filter applied to the routing logic to pin datasource to nodes.
6076
+ */
6077
+ egressFilter?: string;
6078
+ /**
6079
+ * The host to dial to initiate a connection from the egress node to this resource.
6080
+ */
6081
+ hostname?: string;
6082
+ /**
6083
+ * Unique identifier of the Resource.
6084
+ */
6085
+ id?: string;
6086
+ /**
6087
+ * Unique human-readable name of the Resource.
6088
+ */
6089
+ name?: string;
6090
+ /**
6091
+ * The password to authenticate with.
6092
+ */
6093
+ password?: string;
6094
+ /**
6095
+ * The port to dial to initiate a connection from the egress node to this resource.
6096
+ */
6097
+ port?: number;
6098
+ /**
6099
+ * The local port used by clients to connect to this resource.
6100
+ */
6101
+ portOverride?: number;
6102
+ /**
6103
+ * ID of the proxy cluster for this resource, if any.
6104
+ */
6105
+ proxyClusterId?: string;
6106
+ /**
6107
+ * ID of the secret store containing credentials for this resource, if any.
6108
+ */
6109
+ secretStoreId?: string;
6110
+ /**
6111
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6112
+ */
6113
+ subdomain?: string;
6114
+ /**
6115
+ * Tags is a map of key, value pairs.
6116
+ */
6117
+ tags?: {
6118
+ [key: string]: string;
6119
+ };
6120
+ /**
6121
+ * If set, TLS must be used to connect to this resource.
6122
+ */
6123
+ tlsRequired?: boolean;
6124
+ /**
6125
+ * The username to authenticate with.
6126
+ */
6127
+ username?: string;
6128
+ }
5983
6129
  export interface GetResourceResourceRedshift {
5984
6130
  /**
5985
6131
  * 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.
@@ -6751,6 +6897,14 @@ export interface GetResourceResourceSshCustomerKey {
6751
6897
  * Unique identifier of the Resource.
6752
6898
  */
6753
6899
  id?: string;
6900
+ /**
6901
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
6902
+ */
6903
+ identityAliasHealthcheckUsername?: string;
6904
+ /**
6905
+ * The ID of the identity set to use for identity connections.
6906
+ */
6907
+ identitySetId?: string;
6754
6908
  /**
6755
6909
  * Unique human-readable name of the Resource.
6756
6910
  */
@@ -7086,6 +7240,66 @@ export interface GetResourceResourceTrino {
7086
7240
  */
7087
7241
  username?: string;
7088
7242
  }
7243
+ export interface GetResourceResourceVertica {
7244
+ /**
7245
+ * 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.
7246
+ */
7247
+ bindInterface?: string;
7248
+ /**
7249
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
7250
+ */
7251
+ database?: string;
7252
+ /**
7253
+ * A filter applied to the routing logic to pin datasource to nodes.
7254
+ */
7255
+ egressFilter?: string;
7256
+ /**
7257
+ * The host to dial to initiate a connection from the egress node to this resource.
7258
+ */
7259
+ hostname?: string;
7260
+ /**
7261
+ * Unique identifier of the Resource.
7262
+ */
7263
+ id?: string;
7264
+ /**
7265
+ * Unique human-readable name of the Resource.
7266
+ */
7267
+ name?: string;
7268
+ /**
7269
+ * The password to authenticate with.
7270
+ */
7271
+ password?: string;
7272
+ /**
7273
+ * The port to dial to initiate a connection from the egress node to this resource.
7274
+ */
7275
+ port?: number;
7276
+ /**
7277
+ * The local port used by clients to connect to this resource.
7278
+ */
7279
+ portOverride?: number;
7280
+ /**
7281
+ * ID of the proxy cluster for this resource, if any.
7282
+ */
7283
+ proxyClusterId?: string;
7284
+ /**
7285
+ * ID of the secret store containing credentials for this resource, if any.
7286
+ */
7287
+ secretStoreId?: string;
7288
+ /**
7289
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
7290
+ */
7291
+ subdomain?: string;
7292
+ /**
7293
+ * Tags is a map of key, value pairs.
7294
+ */
7295
+ tags?: {
7296
+ [key: string]: string;
7297
+ };
7298
+ /**
7299
+ * The username to authenticate with.
7300
+ */
7301
+ username?: string;
7302
+ }
7089
7303
  export interface GetRoleRole {
7090
7304
  /**
7091
7305
  * AccessRules is a list of access rules defining the resources this Role has access to.
@@ -7110,6 +7324,130 @@ export interface GetRoleRole {
7110
7324
  [key: string]: string;
7111
7325
  };
7112
7326
  }
7327
+ export interface GetSecretEngineSecretEngine {
7328
+ activeDirectories: outputs.GetSecretEngineSecretEngineActiveDirectory[];
7329
+ keyValues: outputs.GetSecretEngineSecretEngineKeyValue[];
7330
+ }
7331
+ export interface GetSecretEngineSecretEngineActiveDirectory {
7332
+ /**
7333
+ * The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
7334
+ */
7335
+ afterReadTtl?: string;
7336
+ /**
7337
+ * Distinguished name of object to bind when performing user and group search. Example: cn=vault,ou=Users,dc=example,dc=com
7338
+ */
7339
+ binddn?: string;
7340
+ /**
7341
+ * Password to use along with binddn when performing user search.
7342
+ */
7343
+ bindpass?: string;
7344
+ /**
7345
+ * CA certificate to use when verifying LDAP server certificate, must be x509 PEM encoded.
7346
+ */
7347
+ certificate?: string;
7348
+ /**
7349
+ * Timeout, in seconds, when attempting to connect to the LDAP server before trying the next URL in the configuration.
7350
+ */
7351
+ connectionTimeout?: number;
7352
+ /**
7353
+ * If set to true this will prevent password change timestamp validation in Active Directory when validating credentials
7354
+ */
7355
+ doNotValidateTimestamps?: boolean;
7356
+ /**
7357
+ * Unique identifier of the Secret Engine.
7358
+ */
7359
+ id?: string;
7360
+ /**
7361
+ * If true, skips LDAP server SSL certificate verification - insecure, use with caution!
7362
+ */
7363
+ insecureTls?: boolean;
7364
+ /**
7365
+ * An interval of public/private key rotation for secret engine in days
7366
+ */
7367
+ keyRotationIntervalDays?: number;
7368
+ /**
7369
+ * The maximum retry duration in case of automatic failure. On failed ttl rotation attempt it will be retried in an increasing intervals until it reaches max_backoff_duration
7370
+ */
7371
+ maxBackoffDuration?: string;
7372
+ /**
7373
+ * Unique human-readable name of the Secret Engine.
7374
+ */
7375
+ name?: string;
7376
+ /**
7377
+ * Public key linked with a secret engine
7378
+ */
7379
+ publicKey: string;
7380
+ /**
7381
+ * Timeout, in seconds, for the connection when making requests against the server before returning back an error.
7382
+ */
7383
+ requestTimeout?: number;
7384
+ /**
7385
+ * Backing secret store identifier
7386
+ */
7387
+ secretStoreId?: string;
7388
+ /**
7389
+ * Backing Secret Store root path where managed secrets are going to be stored
7390
+ */
7391
+ secretStoreRootPath?: string;
7392
+ /**
7393
+ * If true, issues a StartTLS command after establishing an unencrypted connection.
7394
+ */
7395
+ startTls?: boolean;
7396
+ /**
7397
+ * Tags is a map of key, value pairs.
7398
+ */
7399
+ tags?: {
7400
+ [key: string]: string;
7401
+ };
7402
+ /**
7403
+ * The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
7404
+ */
7405
+ ttl?: string;
7406
+ /**
7407
+ * The domain (userPrincipalDomain) used to construct a UPN string for authentication.
7408
+ */
7409
+ upndomain?: string;
7410
+ /**
7411
+ * The LDAP server to connect to.
7412
+ */
7413
+ url?: string;
7414
+ /**
7415
+ * Base DN under which to perform user search. Example: ou=Users,dc=example,dc=com
7416
+ */
7417
+ userdn?: string;
7418
+ }
7419
+ export interface GetSecretEngineSecretEngineKeyValue {
7420
+ /**
7421
+ * Unique identifier of the Secret Engine.
7422
+ */
7423
+ id?: string;
7424
+ /**
7425
+ * An interval of public/private key rotation for secret engine in days
7426
+ */
7427
+ keyRotationIntervalDays?: number;
7428
+ /**
7429
+ * Unique human-readable name of the Secret Engine.
7430
+ */
7431
+ name?: string;
7432
+ /**
7433
+ * Public key linked with a secret engine
7434
+ */
7435
+ publicKey: string;
7436
+ /**
7437
+ * Backing secret store identifier
7438
+ */
7439
+ secretStoreId?: string;
7440
+ /**
7441
+ * Backing Secret Store root path where managed secrets are going to be stored
7442
+ */
7443
+ secretStoreRootPath?: string;
7444
+ /**
7445
+ * Tags is a map of key, value pairs.
7446
+ */
7447
+ tags?: {
7448
+ [key: string]: string;
7449
+ };
7450
+ }
7113
7451
  export interface GetSecretStoreSecretStore {
7114
7452
  activeDirectoryStores: outputs.GetSecretStoreSecretStoreActiveDirectoryStore[];
7115
7453
  aws: outputs.GetSecretStoreSecretStoreAw[];
@@ -13074,6 +13412,62 @@ export interface ResourceRedis {
13074
13412
  */
13075
13413
  username?: string;
13076
13414
  }
13415
+ export interface ResourceRedisCluster {
13416
+ /**
13417
+ * 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.
13418
+ */
13419
+ bindInterface: string;
13420
+ /**
13421
+ * A filter applied to the routing logic to pin datasource to nodes.
13422
+ */
13423
+ egressFilter?: string;
13424
+ /**
13425
+ * The host to dial to initiate a connection from the egress node to this resource.
13426
+ */
13427
+ hostname: string;
13428
+ /**
13429
+ * Unique human-readable name of the Resource.
13430
+ */
13431
+ name: string;
13432
+ /**
13433
+ * The password to authenticate with.
13434
+ */
13435
+ password?: string;
13436
+ /**
13437
+ * The port to dial to initiate a connection from the egress node to this resource.
13438
+ */
13439
+ port?: number;
13440
+ /**
13441
+ * The local port used by clients to connect to this resource.
13442
+ */
13443
+ portOverride: number;
13444
+ /**
13445
+ * ID of the proxy cluster for this resource, if any.
13446
+ */
13447
+ proxyClusterId?: string;
13448
+ /**
13449
+ * ID of the secret store containing credentials for this resource, if any.
13450
+ */
13451
+ secretStoreId?: string;
13452
+ /**
13453
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13454
+ */
13455
+ subdomain: string;
13456
+ /**
13457
+ * Tags is a map of key, value pairs.
13458
+ */
13459
+ tags?: {
13460
+ [key: string]: string;
13461
+ };
13462
+ /**
13463
+ * If set, TLS must be used to connect to this resource.
13464
+ */
13465
+ tlsRequired?: boolean;
13466
+ /**
13467
+ * The username to authenticate with.
13468
+ */
13469
+ username?: string;
13470
+ }
13077
13471
  export interface ResourceRedshift {
13078
13472
  /**
13079
13473
  * 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.
@@ -13797,6 +14191,14 @@ export interface ResourceSshCustomerKey {
13797
14191
  * The host to dial to initiate a connection from the egress node to this resource.
13798
14192
  */
13799
14193
  hostname: string;
14194
+ /**
14195
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
14196
+ */
14197
+ identityAliasHealthcheckUsername?: string;
14198
+ /**
14199
+ * The ID of the identity set to use for identity connections.
14200
+ */
14201
+ identitySetId?: string;
13800
14202
  /**
13801
14203
  * Unique human-readable name of the Resource.
13802
14204
  */
@@ -14112,6 +14514,175 @@ export interface ResourceTrino {
14112
14514
  */
14113
14515
  username?: string;
14114
14516
  }
14517
+ export interface ResourceVertica {
14518
+ /**
14519
+ * 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.
14520
+ */
14521
+ bindInterface: string;
14522
+ /**
14523
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
14524
+ */
14525
+ database: string;
14526
+ /**
14527
+ * A filter applied to the routing logic to pin datasource to nodes.
14528
+ */
14529
+ egressFilter?: string;
14530
+ /**
14531
+ * The host to dial to initiate a connection from the egress node to this resource.
14532
+ */
14533
+ hostname: string;
14534
+ /**
14535
+ * Unique human-readable name of the Resource.
14536
+ */
14537
+ name: string;
14538
+ /**
14539
+ * The password to authenticate with.
14540
+ */
14541
+ password?: string;
14542
+ /**
14543
+ * The port to dial to initiate a connection from the egress node to this resource.
14544
+ */
14545
+ port?: number;
14546
+ /**
14547
+ * The local port used by clients to connect to this resource.
14548
+ */
14549
+ portOverride: number;
14550
+ /**
14551
+ * ID of the proxy cluster for this resource, if any.
14552
+ */
14553
+ proxyClusterId?: string;
14554
+ /**
14555
+ * ID of the secret store containing credentials for this resource, if any.
14556
+ */
14557
+ secretStoreId?: string;
14558
+ /**
14559
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14560
+ */
14561
+ subdomain: string;
14562
+ /**
14563
+ * Tags is a map of key, value pairs.
14564
+ */
14565
+ tags?: {
14566
+ [key: string]: string;
14567
+ };
14568
+ /**
14569
+ * The username to authenticate with.
14570
+ */
14571
+ username?: string;
14572
+ }
14573
+ export interface SecretEngineActiveDirectory {
14574
+ /**
14575
+ * The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
14576
+ */
14577
+ afterReadTtl?: string;
14578
+ /**
14579
+ * Distinguished name of object to bind when performing user and group search. Example: cn=vault,ou=Users,dc=example,dc=com
14580
+ */
14581
+ binddn: string;
14582
+ /**
14583
+ * Password to use along with binddn when performing user search.
14584
+ */
14585
+ bindpass: string;
14586
+ /**
14587
+ * CA certificate to use when verifying LDAP server certificate, must be x509 PEM encoded.
14588
+ */
14589
+ certificate?: string;
14590
+ /**
14591
+ * Timeout, in seconds, when attempting to connect to the LDAP server before trying the next URL in the configuration.
14592
+ */
14593
+ connectionTimeout?: number;
14594
+ /**
14595
+ * If set to true this will prevent password change timestamp validation in Active Directory when validating credentials
14596
+ */
14597
+ doNotValidateTimestamps?: boolean;
14598
+ /**
14599
+ * If true, skips LDAP server SSL certificate verification - insecure, use with caution!
14600
+ */
14601
+ insecureTls?: boolean;
14602
+ /**
14603
+ * An interval of public/private key rotation for secret engine in days
14604
+ */
14605
+ keyRotationIntervalDays?: number;
14606
+ /**
14607
+ * The maximum retry duration in case of automatic failure. On failed ttl rotation attempt it will be retried in an increasing intervals until it reaches max_backoff_duration
14608
+ */
14609
+ maxBackoffDuration?: string;
14610
+ /**
14611
+ * Unique human-readable name of the Secret Engine.
14612
+ */
14613
+ name: string;
14614
+ /**
14615
+ * Public key linked with a secret engine
14616
+ */
14617
+ publicKey: string;
14618
+ /**
14619
+ * Timeout, in seconds, for the connection when making requests against the server before returning back an error.
14620
+ */
14621
+ requestTimeout?: number;
14622
+ /**
14623
+ * Backing secret store identifier
14624
+ */
14625
+ secretStoreId: string;
14626
+ /**
14627
+ * Backing Secret Store root path where managed secrets are going to be stored
14628
+ */
14629
+ secretStoreRootPath: string;
14630
+ /**
14631
+ * If true, issues a StartTLS command after establishing an unencrypted connection.
14632
+ */
14633
+ startTls?: boolean;
14634
+ /**
14635
+ * Tags is a map of key, value pairs.
14636
+ */
14637
+ tags?: {
14638
+ [key: string]: string;
14639
+ };
14640
+ /**
14641
+ * The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
14642
+ */
14643
+ ttl?: string;
14644
+ /**
14645
+ * The domain (userPrincipalDomain) used to construct a UPN string for authentication.
14646
+ */
14647
+ upndomain?: string;
14648
+ /**
14649
+ * The LDAP server to connect to.
14650
+ */
14651
+ url: string;
14652
+ /**
14653
+ * Base DN under which to perform user search. Example: ou=Users,dc=example,dc=com
14654
+ * * key_value:
14655
+ */
14656
+ userdn?: string;
14657
+ }
14658
+ export interface SecretEngineKeyValue {
14659
+ /**
14660
+ * An interval of public/private key rotation for secret engine in days
14661
+ */
14662
+ keyRotationIntervalDays?: number;
14663
+ /**
14664
+ * Unique human-readable name of the Secret Engine.
14665
+ */
14666
+ name: string;
14667
+ /**
14668
+ * Public key linked with a secret engine
14669
+ */
14670
+ publicKey: string;
14671
+ /**
14672
+ * Backing secret store identifier
14673
+ */
14674
+ secretStoreId: string;
14675
+ /**
14676
+ * Backing Secret Store root path where managed secrets are going to be stored
14677
+ */
14678
+ secretStoreRootPath: string;
14679
+ /**
14680
+ * Tags is a map of key, value pairs.
14681
+ */
14682
+ tags?: {
14683
+ [key: string]: string;
14684
+ };
14685
+ }
14115
14686
  export interface SecretStoreActiveDirectoryStore {
14116
14687
  /**
14117
14688
  * Unique human-readable name of the SecretStore.