@pierskarsenbarg/sdm 1.4.2 → 1.6.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/account.d.ts +1 -1
- package/account.js +1 -1
- package/accountAttachment.d.ts +1 -1
- package/accountAttachment.js +1 -1
- package/getWorkflow.d.ts +131 -0
- package/getWorkflow.js +57 -0
- package/getWorkflow.js.map +1 -0
- package/getWorkflowApprover.d.ts +91 -0
- package/getWorkflowApprover.js +50 -0
- package/getWorkflowApprover.js.map +1 -0
- package/getWorkflowRole.d.ts +93 -0
- package/getWorkflowRole.js +52 -0
- package/getWorkflowRole.js.map +1 -0
- package/index.d.ts +18 -0
- package/index.js +25 -1
- package/index.js.map +1 -1
- package/node.d.ts +1 -1
- package/node.js +1 -1
- package/package.json +2 -3
- package/package.json.bak +1 -2
- package/peeringGroup.d.ts +1 -1
- package/peeringGroup.js +1 -1
- package/peeringGroupNode.d.ts +1 -1
- package/peeringGroupNode.js +1 -1
- package/peeringGroupPeer.d.ts +1 -1
- package/peeringGroupPeer.js +1 -1
- package/peeringGroupResource.d.ts +1 -1
- package/peeringGroupResource.js +1 -1
- package/remoteIdentity.d.ts +1 -1
- package/remoteIdentity.js +1 -1
- package/resource.d.ts +22 -40
- package/resource.js +5 -1
- package/resource.js.map +1 -1
- package/role.d.ts +1 -1
- package/role.js +1 -1
- package/secretStore.d.ts +1 -1
- package/secretStore.js +1 -1
- package/types/input.d.ts +147 -11
- package/types/output.d.ts +367 -27
- package/workflow.d.ts +148 -0
- package/workflow.js +99 -0
- package/workflow.js.map +1 -0
- package/workflowApprover.d.ts +83 -0
- package/workflowApprover.js +80 -0
- package/workflowApprover.js.map +1 -0
- package/workflowRole.d.ts +84 -0
- package/workflowRole.js +81 -0
- package/workflowRole.js.map +1 -0
- package/scripts/install-pulumi-plugin.js +0 -26
package/types/output.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ export interface GetResourceResource {
|
|
|
317
317
|
athenas: outputs.GetResourceResourceAthena[];
|
|
318
318
|
auroraMysqls: outputs.GetResourceResourceAuroraMysql[];
|
|
319
319
|
auroraPostgres: outputs.GetResourceResourceAuroraPostgre[];
|
|
320
|
+
auroraPostgresIams: outputs.GetResourceResourceAuroraPostgresIam[];
|
|
320
321
|
aws: outputs.GetResourceResourceAw[];
|
|
321
322
|
awsConsoleStaticKeyPairs: outputs.GetResourceResourceAwsConsoleStaticKeyPair[];
|
|
322
323
|
awsConsoles: outputs.GetResourceResourceAwsConsole[];
|
|
@@ -369,6 +370,7 @@ export interface GetResourceResource {
|
|
|
369
370
|
rabbitmqAmqp091s: outputs.GetResourceResourceRabbitmqAmqp091[];
|
|
370
371
|
rawTcps: outputs.GetResourceResourceRawTcp[];
|
|
371
372
|
rdps: outputs.GetResourceResourceRdp[];
|
|
373
|
+
rdsPostgresIams: outputs.GetResourceResourceRdsPostgresIam[];
|
|
372
374
|
redis: outputs.GetResourceResourceRedi[];
|
|
373
375
|
redshifts: outputs.GetResourceResourceRedshift[];
|
|
374
376
|
singleStores: outputs.GetResourceResourceSingleStore[];
|
|
@@ -1279,6 +1281,70 @@ export interface GetResourceResourceAuroraPostgre {
|
|
|
1279
1281
|
*/
|
|
1280
1282
|
username?: string;
|
|
1281
1283
|
}
|
|
1284
|
+
export interface GetResourceResourceAuroraPostgresIam {
|
|
1285
|
+
/**
|
|
1286
|
+
* 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.
|
|
1287
|
+
*/
|
|
1288
|
+
bindInterface?: string;
|
|
1289
|
+
/**
|
|
1290
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
1291
|
+
*/
|
|
1292
|
+
database?: string;
|
|
1293
|
+
/**
|
|
1294
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
1295
|
+
*/
|
|
1296
|
+
egressFilter?: string;
|
|
1297
|
+
/**
|
|
1298
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
1299
|
+
*/
|
|
1300
|
+
hostname?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* Unique identifier of the Resource.
|
|
1303
|
+
*/
|
|
1304
|
+
id?: string;
|
|
1305
|
+
/**
|
|
1306
|
+
* Unique human-readable name of the Resource.
|
|
1307
|
+
*/
|
|
1308
|
+
name?: string;
|
|
1309
|
+
/**
|
|
1310
|
+
* If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
|
|
1311
|
+
*/
|
|
1312
|
+
overrideDatabase?: boolean;
|
|
1313
|
+
/**
|
|
1314
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
1315
|
+
*/
|
|
1316
|
+
port?: number;
|
|
1317
|
+
/**
|
|
1318
|
+
* The local port used by clients to connect to this resource.
|
|
1319
|
+
*/
|
|
1320
|
+
portOverride?: number;
|
|
1321
|
+
/**
|
|
1322
|
+
* The AWS region to connect to.
|
|
1323
|
+
*/
|
|
1324
|
+
region?: string;
|
|
1325
|
+
/**
|
|
1326
|
+
* If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
|
1327
|
+
*/
|
|
1328
|
+
roleAssumptionArn?: string;
|
|
1329
|
+
/**
|
|
1330
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
1331
|
+
*/
|
|
1332
|
+
secretStoreId?: string;
|
|
1333
|
+
/**
|
|
1334
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1335
|
+
*/
|
|
1336
|
+
subdomain?: string;
|
|
1337
|
+
/**
|
|
1338
|
+
* Tags is a map of key, value pairs.
|
|
1339
|
+
*/
|
|
1340
|
+
tags?: {
|
|
1341
|
+
[key: string]: string;
|
|
1342
|
+
};
|
|
1343
|
+
/**
|
|
1344
|
+
* The username to authenticate with.
|
|
1345
|
+
*/
|
|
1346
|
+
username?: string;
|
|
1347
|
+
}
|
|
1282
1348
|
export interface GetResourceResourceAw {
|
|
1283
1349
|
/**
|
|
1284
1350
|
* The Access Key ID to use to authenticate.
|
|
@@ -4299,6 +4365,10 @@ export interface GetResourceResourceRdp {
|
|
|
4299
4365
|
* Unique identifier of the Resource.
|
|
4300
4366
|
*/
|
|
4301
4367
|
id?: string;
|
|
4368
|
+
/**
|
|
4369
|
+
* When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
|
|
4370
|
+
*/
|
|
4371
|
+
lockRequired?: boolean;
|
|
4302
4372
|
/**
|
|
4303
4373
|
* Unique human-readable name of the Resource.
|
|
4304
4374
|
*/
|
|
@@ -4334,6 +4404,70 @@ export interface GetResourceResourceRdp {
|
|
|
4334
4404
|
*/
|
|
4335
4405
|
username?: string;
|
|
4336
4406
|
}
|
|
4407
|
+
export interface GetResourceResourceRdsPostgresIam {
|
|
4408
|
+
/**
|
|
4409
|
+
* 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.
|
|
4410
|
+
*/
|
|
4411
|
+
bindInterface?: string;
|
|
4412
|
+
/**
|
|
4413
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
4414
|
+
*/
|
|
4415
|
+
database?: string;
|
|
4416
|
+
/**
|
|
4417
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
4418
|
+
*/
|
|
4419
|
+
egressFilter?: string;
|
|
4420
|
+
/**
|
|
4421
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
4422
|
+
*/
|
|
4423
|
+
hostname?: string;
|
|
4424
|
+
/**
|
|
4425
|
+
* Unique identifier of the Resource.
|
|
4426
|
+
*/
|
|
4427
|
+
id?: string;
|
|
4428
|
+
/**
|
|
4429
|
+
* Unique human-readable name of the Resource.
|
|
4430
|
+
*/
|
|
4431
|
+
name?: string;
|
|
4432
|
+
/**
|
|
4433
|
+
* If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
|
|
4434
|
+
*/
|
|
4435
|
+
overrideDatabase?: boolean;
|
|
4436
|
+
/**
|
|
4437
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
4438
|
+
*/
|
|
4439
|
+
port?: number;
|
|
4440
|
+
/**
|
|
4441
|
+
* The local port used by clients to connect to this resource.
|
|
4442
|
+
*/
|
|
4443
|
+
portOverride?: number;
|
|
4444
|
+
/**
|
|
4445
|
+
* The AWS region to connect to.
|
|
4446
|
+
*/
|
|
4447
|
+
region?: string;
|
|
4448
|
+
/**
|
|
4449
|
+
* If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
|
4450
|
+
*/
|
|
4451
|
+
roleAssumptionArn?: string;
|
|
4452
|
+
/**
|
|
4453
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
4454
|
+
*/
|
|
4455
|
+
secretStoreId?: string;
|
|
4456
|
+
/**
|
|
4457
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4458
|
+
*/
|
|
4459
|
+
subdomain?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* Tags is a map of key, value pairs.
|
|
4462
|
+
*/
|
|
4463
|
+
tags?: {
|
|
4464
|
+
[key: string]: string;
|
|
4465
|
+
};
|
|
4466
|
+
/**
|
|
4467
|
+
* The username to authenticate with.
|
|
4468
|
+
*/
|
|
4469
|
+
username?: string;
|
|
4470
|
+
}
|
|
4337
4471
|
export interface GetResourceResourceRedi {
|
|
4338
4472
|
/**
|
|
4339
4473
|
* 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.
|
|
@@ -4615,6 +4749,10 @@ export interface GetResourceResourceSnowsight {
|
|
|
4615
4749
|
};
|
|
4616
4750
|
}
|
|
4617
4751
|
export interface GetResourceResourceSqlServer {
|
|
4752
|
+
/**
|
|
4753
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4754
|
+
*/
|
|
4755
|
+
allowDeprecatedEncryption?: boolean;
|
|
4618
4756
|
/**
|
|
4619
4757
|
* 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.
|
|
4620
4758
|
*/
|
|
@@ -4679,6 +4817,10 @@ export interface GetResourceResourceSqlServer {
|
|
|
4679
4817
|
username?: string;
|
|
4680
4818
|
}
|
|
4681
4819
|
export interface GetResourceResourceSqlServerAzureAd {
|
|
4820
|
+
/**
|
|
4821
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4822
|
+
*/
|
|
4823
|
+
allowDeprecatedEncryption?: boolean;
|
|
4682
4824
|
/**
|
|
4683
4825
|
* 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.
|
|
4684
4826
|
*/
|
|
@@ -4748,6 +4890,10 @@ export interface GetResourceResourceSqlServerAzureAd {
|
|
|
4748
4890
|
tenantId?: string;
|
|
4749
4891
|
}
|
|
4750
4892
|
export interface GetResourceResourceSqlServerKerberosAd {
|
|
4893
|
+
/**
|
|
4894
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4895
|
+
*/
|
|
4896
|
+
allowDeprecatedEncryption?: boolean;
|
|
4751
4897
|
/**
|
|
4752
4898
|
* 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.
|
|
4753
4899
|
*/
|
|
@@ -5493,6 +5639,64 @@ export interface GetSecretStoreSecretStoreVaultToken {
|
|
|
5493
5639
|
[key: string]: string;
|
|
5494
5640
|
};
|
|
5495
5641
|
}
|
|
5642
|
+
export interface GetWorkflowApproverWorkflowApprover {
|
|
5643
|
+
/**
|
|
5644
|
+
* The approver id.
|
|
5645
|
+
*/
|
|
5646
|
+
approverId?: string;
|
|
5647
|
+
/**
|
|
5648
|
+
* Unique identifier of the WorkflowApprover.
|
|
5649
|
+
*/
|
|
5650
|
+
id?: string;
|
|
5651
|
+
/**
|
|
5652
|
+
* The workflow id.
|
|
5653
|
+
*/
|
|
5654
|
+
workflowId?: string;
|
|
5655
|
+
}
|
|
5656
|
+
export interface GetWorkflowRoleWorkflowRole {
|
|
5657
|
+
/**
|
|
5658
|
+
* Unique identifier of the WorkflowRole.
|
|
5659
|
+
*/
|
|
5660
|
+
id?: string;
|
|
5661
|
+
/**
|
|
5662
|
+
* The role id.
|
|
5663
|
+
*/
|
|
5664
|
+
roleId?: string;
|
|
5665
|
+
/**
|
|
5666
|
+
* The workflow id.
|
|
5667
|
+
*/
|
|
5668
|
+
workflowId?: string;
|
|
5669
|
+
}
|
|
5670
|
+
export interface GetWorkflowWorkflow {
|
|
5671
|
+
/**
|
|
5672
|
+
* AccessRules is a list of access rules defining the resources this Workflow provides access to.
|
|
5673
|
+
*/
|
|
5674
|
+
accessRules?: string;
|
|
5675
|
+
/**
|
|
5676
|
+
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
5677
|
+
*/
|
|
5678
|
+
autoGrant?: boolean;
|
|
5679
|
+
/**
|
|
5680
|
+
* Optional description of the Workflow.
|
|
5681
|
+
*/
|
|
5682
|
+
description?: string;
|
|
5683
|
+
/**
|
|
5684
|
+
* Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
|
|
5685
|
+
*/
|
|
5686
|
+
enabled?: boolean;
|
|
5687
|
+
/**
|
|
5688
|
+
* Unique identifier of the Workflow.
|
|
5689
|
+
*/
|
|
5690
|
+
id?: string;
|
|
5691
|
+
/**
|
|
5692
|
+
* Unique human-readable name of the Workflow.
|
|
5693
|
+
*/
|
|
5694
|
+
name?: string;
|
|
5695
|
+
/**
|
|
5696
|
+
* Optional weight for workflow to specify it's priority in matching a request.
|
|
5697
|
+
*/
|
|
5698
|
+
weight?: number;
|
|
5699
|
+
}
|
|
5496
5700
|
export interface NodeGateway {
|
|
5497
5701
|
/**
|
|
5498
5702
|
* The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
|
|
@@ -5599,7 +5803,7 @@ export interface ResourceAks {
|
|
|
5599
5803
|
/**
|
|
5600
5804
|
* 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.
|
|
5601
5805
|
*/
|
|
5602
|
-
healthcheckNamespace
|
|
5806
|
+
healthcheckNamespace: string;
|
|
5603
5807
|
/**
|
|
5604
5808
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5605
5809
|
*/
|
|
@@ -5651,7 +5855,7 @@ export interface ResourceAksBasicAuth {
|
|
|
5651
5855
|
/**
|
|
5652
5856
|
* 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.
|
|
5653
5857
|
*/
|
|
5654
|
-
healthcheckNamespace
|
|
5858
|
+
healthcheckNamespace: string;
|
|
5655
5859
|
/**
|
|
5656
5860
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5657
5861
|
*/
|
|
@@ -5703,7 +5907,7 @@ export interface ResourceAksServiceAccount {
|
|
|
5703
5907
|
/**
|
|
5704
5908
|
* 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.
|
|
5705
5909
|
*/
|
|
5706
|
-
healthcheckNamespace
|
|
5910
|
+
healthcheckNamespace: string;
|
|
5707
5911
|
/**
|
|
5708
5912
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5709
5913
|
*/
|
|
@@ -5760,7 +5964,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
5760
5964
|
/**
|
|
5761
5965
|
* 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.
|
|
5762
5966
|
*/
|
|
5763
|
-
healthcheckNamespace
|
|
5967
|
+
healthcheckNamespace: string;
|
|
5764
5968
|
/**
|
|
5765
5969
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5766
5970
|
*/
|
|
@@ -5821,7 +6025,7 @@ export interface ResourceAksUserImpersonation {
|
|
|
5821
6025
|
/**
|
|
5822
6026
|
* 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.
|
|
5823
6027
|
*/
|
|
5824
|
-
healthcheckNamespace
|
|
6028
|
+
healthcheckNamespace: string;
|
|
5825
6029
|
/**
|
|
5826
6030
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5827
6031
|
*/
|
|
@@ -5881,7 +6085,7 @@ export interface ResourceAmazonEks {
|
|
|
5881
6085
|
/**
|
|
5882
6086
|
* 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.
|
|
5883
6087
|
*/
|
|
5884
|
-
healthcheckNamespace
|
|
6088
|
+
healthcheckNamespace: string;
|
|
5885
6089
|
/**
|
|
5886
6090
|
* Unique human-readable name of the Resource.
|
|
5887
6091
|
*/
|
|
@@ -5953,7 +6157,7 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
5953
6157
|
/**
|
|
5954
6158
|
* 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.
|
|
5955
6159
|
*/
|
|
5956
|
-
healthcheckNamespace
|
|
6160
|
+
healthcheckNamespace: string;
|
|
5957
6161
|
/**
|
|
5958
6162
|
* Unique human-readable name of the Resource.
|
|
5959
6163
|
*/
|
|
@@ -6021,7 +6225,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
6021
6225
|
/**
|
|
6022
6226
|
* 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.
|
|
6023
6227
|
*/
|
|
6024
|
-
healthcheckNamespace
|
|
6228
|
+
healthcheckNamespace: string;
|
|
6025
6229
|
/**
|
|
6026
6230
|
* Unique human-readable name of the Resource.
|
|
6027
6231
|
*/
|
|
@@ -6093,7 +6297,7 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
6093
6297
|
/**
|
|
6094
6298
|
* 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.
|
|
6095
6299
|
*/
|
|
6096
|
-
healthcheckNamespace
|
|
6300
|
+
healthcheckNamespace: string;
|
|
6097
6301
|
/**
|
|
6098
6302
|
* Unique human-readable name of the Resource.
|
|
6099
6303
|
*/
|
|
@@ -6305,7 +6509,7 @@ export interface ResourceAuroraMysql {
|
|
|
6305
6509
|
/**
|
|
6306
6510
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
6307
6511
|
*/
|
|
6308
|
-
database
|
|
6512
|
+
database?: string;
|
|
6309
6513
|
/**
|
|
6310
6514
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6311
6515
|
*/
|
|
@@ -6413,6 +6617,66 @@ export interface ResourceAuroraPostgres {
|
|
|
6413
6617
|
*/
|
|
6414
6618
|
username?: string;
|
|
6415
6619
|
}
|
|
6620
|
+
export interface ResourceAuroraPostgresIam {
|
|
6621
|
+
/**
|
|
6622
|
+
* 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.
|
|
6623
|
+
*/
|
|
6624
|
+
bindInterface: string;
|
|
6625
|
+
/**
|
|
6626
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
6627
|
+
*/
|
|
6628
|
+
database: string;
|
|
6629
|
+
/**
|
|
6630
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6631
|
+
*/
|
|
6632
|
+
egressFilter?: string;
|
|
6633
|
+
/**
|
|
6634
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
6635
|
+
*/
|
|
6636
|
+
hostname: string;
|
|
6637
|
+
/**
|
|
6638
|
+
* Unique human-readable name of the Resource.
|
|
6639
|
+
*/
|
|
6640
|
+
name: string;
|
|
6641
|
+
/**
|
|
6642
|
+
* If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
|
|
6643
|
+
*/
|
|
6644
|
+
overrideDatabase?: boolean;
|
|
6645
|
+
/**
|
|
6646
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
6647
|
+
*/
|
|
6648
|
+
port?: number;
|
|
6649
|
+
/**
|
|
6650
|
+
* The local port used by clients to connect to this resource.
|
|
6651
|
+
*/
|
|
6652
|
+
portOverride: number;
|
|
6653
|
+
/**
|
|
6654
|
+
* The AWS region to connect to.
|
|
6655
|
+
*/
|
|
6656
|
+
region: string;
|
|
6657
|
+
/**
|
|
6658
|
+
* If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
|
6659
|
+
*/
|
|
6660
|
+
roleAssumptionArn?: string;
|
|
6661
|
+
/**
|
|
6662
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
6663
|
+
*/
|
|
6664
|
+
secretStoreId?: string;
|
|
6665
|
+
/**
|
|
6666
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6667
|
+
*/
|
|
6668
|
+
subdomain: string;
|
|
6669
|
+
/**
|
|
6670
|
+
* Tags is a map of key, value pairs.
|
|
6671
|
+
*/
|
|
6672
|
+
tags?: {
|
|
6673
|
+
[key: string]: string;
|
|
6674
|
+
};
|
|
6675
|
+
/**
|
|
6676
|
+
* The username to authenticate with.
|
|
6677
|
+
*/
|
|
6678
|
+
username?: string;
|
|
6679
|
+
}
|
|
6416
6680
|
export interface ResourceAws {
|
|
6417
6681
|
/**
|
|
6418
6682
|
* The Access Key ID to use to authenticate.
|
|
@@ -6687,7 +6951,7 @@ export interface ResourceAzureMysql {
|
|
|
6687
6951
|
/**
|
|
6688
6952
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
6689
6953
|
*/
|
|
6690
|
-
database
|
|
6954
|
+
database?: string;
|
|
6691
6955
|
/**
|
|
6692
6956
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6693
6957
|
*/
|
|
@@ -7019,7 +7283,7 @@ export interface ResourceClustrix {
|
|
|
7019
7283
|
/**
|
|
7020
7284
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
7021
7285
|
*/
|
|
7022
|
-
database
|
|
7286
|
+
database?: string;
|
|
7023
7287
|
/**
|
|
7024
7288
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
7025
7289
|
*/
|
|
@@ -7607,7 +7871,7 @@ export interface ResourceGoogleGke {
|
|
|
7607
7871
|
/**
|
|
7608
7872
|
* 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.
|
|
7609
7873
|
*/
|
|
7610
|
-
healthcheckNamespace
|
|
7874
|
+
healthcheckNamespace: string;
|
|
7611
7875
|
/**
|
|
7612
7876
|
* Unique human-readable name of the Resource.
|
|
7613
7877
|
*/
|
|
@@ -7663,7 +7927,7 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
7663
7927
|
/**
|
|
7664
7928
|
* 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.
|
|
7665
7929
|
*/
|
|
7666
|
-
healthcheckNamespace
|
|
7930
|
+
healthcheckNamespace: string;
|
|
7667
7931
|
/**
|
|
7668
7932
|
* Unique human-readable name of the Resource.
|
|
7669
7933
|
*/
|
|
@@ -7930,7 +8194,7 @@ export interface ResourceKubernetes {
|
|
|
7930
8194
|
/**
|
|
7931
8195
|
* 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.
|
|
7932
8196
|
*/
|
|
7933
|
-
healthcheckNamespace
|
|
8197
|
+
healthcheckNamespace: string;
|
|
7934
8198
|
/**
|
|
7935
8199
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
7936
8200
|
*/
|
|
@@ -7982,7 +8246,7 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
7982
8246
|
/**
|
|
7983
8247
|
* 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.
|
|
7984
8248
|
*/
|
|
7985
|
-
healthcheckNamespace
|
|
8249
|
+
healthcheckNamespace: string;
|
|
7986
8250
|
/**
|
|
7987
8251
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
7988
8252
|
*/
|
|
@@ -8034,7 +8298,7 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
8034
8298
|
/**
|
|
8035
8299
|
* 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.
|
|
8036
8300
|
*/
|
|
8037
|
-
healthcheckNamespace
|
|
8301
|
+
healthcheckNamespace: string;
|
|
8038
8302
|
/**
|
|
8039
8303
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8040
8304
|
*/
|
|
@@ -8091,7 +8355,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
8091
8355
|
/**
|
|
8092
8356
|
* 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.
|
|
8093
8357
|
*/
|
|
8094
|
-
healthcheckNamespace
|
|
8358
|
+
healthcheckNamespace: string;
|
|
8095
8359
|
/**
|
|
8096
8360
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8097
8361
|
*/
|
|
@@ -8152,7 +8416,7 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
8152
8416
|
/**
|
|
8153
8417
|
* 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.
|
|
8154
8418
|
*/
|
|
8155
|
-
healthcheckNamespace
|
|
8419
|
+
healthcheckNamespace: string;
|
|
8156
8420
|
/**
|
|
8157
8421
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8158
8422
|
*/
|
|
@@ -8192,7 +8456,7 @@ export interface ResourceMaria {
|
|
|
8192
8456
|
/**
|
|
8193
8457
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8194
8458
|
*/
|
|
8195
|
-
database
|
|
8459
|
+
database?: string;
|
|
8196
8460
|
/**
|
|
8197
8461
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8198
8462
|
*/
|
|
@@ -8292,7 +8556,7 @@ export interface ResourceMemsql {
|
|
|
8292
8556
|
/**
|
|
8293
8557
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8294
8558
|
*/
|
|
8295
|
-
database
|
|
8559
|
+
database?: string;
|
|
8296
8560
|
/**
|
|
8297
8561
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8298
8562
|
*/
|
|
@@ -8660,7 +8924,7 @@ export interface ResourceMtlsMysql {
|
|
|
8660
8924
|
/**
|
|
8661
8925
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8662
8926
|
*/
|
|
8663
|
-
database
|
|
8927
|
+
database?: string;
|
|
8664
8928
|
/**
|
|
8665
8929
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8666
8930
|
*/
|
|
@@ -8796,7 +9060,7 @@ export interface ResourceMysql {
|
|
|
8796
9060
|
/**
|
|
8797
9061
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8798
9062
|
*/
|
|
8799
|
-
database
|
|
9063
|
+
database?: string;
|
|
8800
9064
|
/**
|
|
8801
9065
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8802
9066
|
*/
|
|
@@ -9225,6 +9489,10 @@ export interface ResourceRdp {
|
|
|
9225
9489
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
9226
9490
|
*/
|
|
9227
9491
|
hostname: string;
|
|
9492
|
+
/**
|
|
9493
|
+
* When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
|
|
9494
|
+
*/
|
|
9495
|
+
lockRequired?: boolean;
|
|
9228
9496
|
/**
|
|
9229
9497
|
* Unique human-readable name of the Resource.
|
|
9230
9498
|
*/
|
|
@@ -9260,6 +9528,66 @@ export interface ResourceRdp {
|
|
|
9260
9528
|
*/
|
|
9261
9529
|
username?: string;
|
|
9262
9530
|
}
|
|
9531
|
+
export interface ResourceRdsPostgresIam {
|
|
9532
|
+
/**
|
|
9533
|
+
* 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.
|
|
9534
|
+
*/
|
|
9535
|
+
bindInterface: string;
|
|
9536
|
+
/**
|
|
9537
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9538
|
+
*/
|
|
9539
|
+
database: string;
|
|
9540
|
+
/**
|
|
9541
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9542
|
+
*/
|
|
9543
|
+
egressFilter?: string;
|
|
9544
|
+
/**
|
|
9545
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
9546
|
+
*/
|
|
9547
|
+
hostname: string;
|
|
9548
|
+
/**
|
|
9549
|
+
* Unique human-readable name of the Resource.
|
|
9550
|
+
*/
|
|
9551
|
+
name: string;
|
|
9552
|
+
/**
|
|
9553
|
+
* If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
|
|
9554
|
+
*/
|
|
9555
|
+
overrideDatabase?: boolean;
|
|
9556
|
+
/**
|
|
9557
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
9558
|
+
*/
|
|
9559
|
+
port?: number;
|
|
9560
|
+
/**
|
|
9561
|
+
* The local port used by clients to connect to this resource.
|
|
9562
|
+
*/
|
|
9563
|
+
portOverride: number;
|
|
9564
|
+
/**
|
|
9565
|
+
* The AWS region to connect to.
|
|
9566
|
+
*/
|
|
9567
|
+
region: string;
|
|
9568
|
+
/**
|
|
9569
|
+
* If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
|
9570
|
+
*/
|
|
9571
|
+
roleAssumptionArn?: string;
|
|
9572
|
+
/**
|
|
9573
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
9574
|
+
*/
|
|
9575
|
+
secretStoreId?: string;
|
|
9576
|
+
/**
|
|
9577
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
9578
|
+
*/
|
|
9579
|
+
subdomain: string;
|
|
9580
|
+
/**
|
|
9581
|
+
* Tags is a map of key, value pairs.
|
|
9582
|
+
*/
|
|
9583
|
+
tags?: {
|
|
9584
|
+
[key: string]: string;
|
|
9585
|
+
};
|
|
9586
|
+
/**
|
|
9587
|
+
* The username to authenticate with.
|
|
9588
|
+
*/
|
|
9589
|
+
username?: string;
|
|
9590
|
+
}
|
|
9263
9591
|
export interface ResourceRedis {
|
|
9264
9592
|
/**
|
|
9265
9593
|
* 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.
|
|
@@ -9376,7 +9704,7 @@ export interface ResourceSingleStore {
|
|
|
9376
9704
|
/**
|
|
9377
9705
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9378
9706
|
*/
|
|
9379
|
-
database
|
|
9707
|
+
database?: string;
|
|
9380
9708
|
/**
|
|
9381
9709
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9382
9710
|
*/
|
|
@@ -9521,6 +9849,10 @@ export interface ResourceSnowsight {
|
|
|
9521
9849
|
};
|
|
9522
9850
|
}
|
|
9523
9851
|
export interface ResourceSqlServer {
|
|
9852
|
+
/**
|
|
9853
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
9854
|
+
*/
|
|
9855
|
+
allowDeprecatedEncryption?: boolean;
|
|
9524
9856
|
/**
|
|
9525
9857
|
* 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.
|
|
9526
9858
|
*/
|
|
@@ -9528,7 +9860,7 @@ export interface ResourceSqlServer {
|
|
|
9528
9860
|
/**
|
|
9529
9861
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9530
9862
|
*/
|
|
9531
|
-
database
|
|
9863
|
+
database?: string;
|
|
9532
9864
|
/**
|
|
9533
9865
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9534
9866
|
*/
|
|
@@ -9581,6 +9913,10 @@ export interface ResourceSqlServer {
|
|
|
9581
9913
|
username?: string;
|
|
9582
9914
|
}
|
|
9583
9915
|
export interface ResourceSqlServerAzureAd {
|
|
9916
|
+
/**
|
|
9917
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
9918
|
+
*/
|
|
9919
|
+
allowDeprecatedEncryption?: boolean;
|
|
9584
9920
|
/**
|
|
9585
9921
|
* 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.
|
|
9586
9922
|
*/
|
|
@@ -9592,7 +9928,7 @@ export interface ResourceSqlServerAzureAd {
|
|
|
9592
9928
|
/**
|
|
9593
9929
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9594
9930
|
*/
|
|
9595
|
-
database
|
|
9931
|
+
database?: string;
|
|
9596
9932
|
/**
|
|
9597
9933
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9598
9934
|
*/
|
|
@@ -9646,6 +9982,10 @@ export interface ResourceSqlServerAzureAd {
|
|
|
9646
9982
|
tenantId?: string;
|
|
9647
9983
|
}
|
|
9648
9984
|
export interface ResourceSqlServerKerberosAd {
|
|
9985
|
+
/**
|
|
9986
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
9987
|
+
*/
|
|
9988
|
+
allowDeprecatedEncryption?: boolean;
|
|
9649
9989
|
/**
|
|
9650
9990
|
* 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.
|
|
9651
9991
|
*/
|
|
@@ -9653,7 +9993,7 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
9653
9993
|
/**
|
|
9654
9994
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9655
9995
|
*/
|
|
9656
|
-
database
|
|
9996
|
+
database?: string;
|
|
9657
9997
|
/**
|
|
9658
9998
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9659
9999
|
*/
|