@pierskarsenbarg/sdm 1.0.1 → 1.1.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
@@ -1,4 +1,4 @@
1
- import { output as outputs } from "../types";
1
+ import * as outputs from "../types/output";
2
2
  export interface AccountService {
3
3
  /**
4
4
  * Unique human-readable name of the Service.
@@ -312,6 +312,7 @@ export interface GetResourceResource {
312
312
  sybaseIqs: outputs.GetResourceResourceSybaseIq[];
313
313
  sybases: outputs.GetResourceResourceSybase[];
314
314
  teradatas: outputs.GetResourceResourceTeradata[];
315
+ trinos: outputs.GetResourceResourceTrino[];
315
316
  }
316
317
  export interface GetResourceResourceAk {
317
318
  /**
@@ -918,6 +919,7 @@ export interface GetResourceResourceAw {
918
919
  * Unique human-readable name of the Resource.
919
920
  */
920
921
  name?: string;
922
+ portOverride?: number;
921
923
  roleArn?: string;
922
924
  roleExternalId?: string;
923
925
  secretAccessKey?: string;
@@ -925,6 +927,10 @@ export interface GetResourceResourceAw {
925
927
  * ID of the secret store containing credentials for this resource, if any.
926
928
  */
927
929
  secretStoreId?: string;
930
+ /**
931
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
932
+ */
933
+ subdomain?: string;
928
934
  /**
929
935
  * Tags is a map of key, value pairs.
930
936
  */
@@ -1032,10 +1038,15 @@ export interface GetResourceResourceAzure {
1032
1038
  */
1033
1039
  name?: string;
1034
1040
  password?: string;
1041
+ portOverride?: number;
1035
1042
  /**
1036
1043
  * ID of the secret store containing credentials for this resource, if any.
1037
1044
  */
1038
1045
  secretStoreId?: string;
1046
+ /**
1047
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1048
+ */
1049
+ subdomain?: string;
1039
1050
  /**
1040
1051
  * Tags is a map of key, value pairs.
1041
1052
  */
@@ -1066,10 +1077,15 @@ export interface GetResourceResourceAzureCertificate {
1066
1077
  * Unique human-readable name of the Resource.
1067
1078
  */
1068
1079
  name?: string;
1080
+ portOverride?: number;
1069
1081
  /**
1070
1082
  * ID of the secret store containing credentials for this resource, if any.
1071
1083
  */
1072
1084
  secretStoreId?: string;
1085
+ /**
1086
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1087
+ */
1088
+ subdomain?: string;
1073
1089
  /**
1074
1090
  * Tags is a map of key, value pairs.
1075
1091
  */
@@ -1672,11 +1688,16 @@ export interface GetResourceResourceGcp {
1672
1688
  * Unique human-readable name of the Resource.
1673
1689
  */
1674
1690
  name?: string;
1691
+ portOverride?: number;
1675
1692
  scopes?: string;
1676
1693
  /**
1677
1694
  * ID of the secret store containing credentials for this resource, if any.
1678
1695
  */
1679
1696
  secretStoreId?: string;
1697
+ /**
1698
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1699
+ */
1700
+ subdomain?: string;
1680
1701
  /**
1681
1702
  * Tags is a map of key, value pairs.
1682
1703
  */
@@ -3336,6 +3357,44 @@ export interface GetResourceResourceTeradata {
3336
3357
  };
3337
3358
  username?: string;
3338
3359
  }
3360
+ export interface GetResourceResourceTrino {
3361
+ /**
3362
+ * Bind interface
3363
+ */
3364
+ bindInterface?: string;
3365
+ database?: string;
3366
+ /**
3367
+ * A filter applied to the routing logic to pin datasource to nodes.
3368
+ */
3369
+ egressFilter?: string;
3370
+ hostname?: string;
3371
+ /**
3372
+ * Unique identifier of the Resource.
3373
+ */
3374
+ id?: string;
3375
+ /**
3376
+ * Unique human-readable name of the Resource.
3377
+ */
3378
+ name?: string;
3379
+ password?: string;
3380
+ port?: number;
3381
+ portOverride?: number;
3382
+ /**
3383
+ * ID of the secret store containing credentials for this resource, if any.
3384
+ */
3385
+ secretStoreId?: string;
3386
+ /**
3387
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3388
+ */
3389
+ subdomain?: string;
3390
+ /**
3391
+ * Tags is a map of key, value pairs.
3392
+ */
3393
+ tags?: {
3394
+ [key: string]: string;
3395
+ };
3396
+ username?: string;
3397
+ }
3339
3398
  export interface GetRoleRole {
3340
3399
  /**
3341
3400
  * AccessRules is a list of access rules defining the resources this Role has access to.
@@ -3694,6 +3753,9 @@ export interface ResourceAksBasicAuth {
3694
3753
  secretStoreId?: string;
3695
3754
  secretStorePasswordKey?: string;
3696
3755
  secretStorePasswordPath?: string;
3756
+ /**
3757
+ * * trino:
3758
+ */
3697
3759
  secretStoreUsernameKey?: string;
3698
3760
  secretStoreUsernamePath?: string;
3699
3761
  /**
@@ -4096,6 +4158,9 @@ export interface ResourceAmazonmqAmqp091 {
4096
4158
  secretStoreId?: string;
4097
4159
  secretStorePasswordKey?: string;
4098
4160
  secretStorePasswordPath?: string;
4161
+ /**
4162
+ * * trino:
4163
+ */
4099
4164
  secretStoreUsernameKey?: string;
4100
4165
  secretStoreUsernamePath?: string;
4101
4166
  /**
@@ -4113,6 +4178,7 @@ export interface ResourceAmazonmqAmqp091 {
4113
4178
  }
4114
4179
  export interface ResourceAthena {
4115
4180
  accessKey?: string;
4181
+ athenaOutput: string;
4116
4182
  /**
4117
4183
  * Bind interface
4118
4184
  */
@@ -4125,7 +4191,6 @@ export interface ResourceAthena {
4125
4191
  * Unique human-readable name of the Resource.
4126
4192
  */
4127
4193
  name: string;
4128
- output: string;
4129
4194
  portOverride: number;
4130
4195
  region?: string;
4131
4196
  roleArn?: string;
@@ -4178,6 +4243,9 @@ export interface ResourceAuroraMysql {
4178
4243
  secretStoreId?: string;
4179
4244
  secretStorePasswordKey?: string;
4180
4245
  secretStorePasswordPath?: string;
4246
+ /**
4247
+ * * trino:
4248
+ */
4181
4249
  secretStoreUsernameKey?: string;
4182
4250
  secretStoreUsernamePath?: string;
4183
4251
  /**
@@ -4217,6 +4285,9 @@ export interface ResourceAuroraPostgres {
4217
4285
  secretStoreId?: string;
4218
4286
  secretStorePasswordKey?: string;
4219
4287
  secretStorePasswordPath?: string;
4288
+ /**
4289
+ * * trino:
4290
+ */
4220
4291
  secretStoreUsernameKey?: string;
4221
4292
  secretStoreUsernamePath?: string;
4222
4293
  /**
@@ -4246,6 +4317,7 @@ export interface ResourceAws {
4246
4317
  * Unique human-readable name of the Resource.
4247
4318
  */
4248
4319
  name: string;
4320
+ portOverride: number;
4249
4321
  roleArn?: string;
4250
4322
  roleExternalId?: string;
4251
4323
  secretAccessKey?: string;
@@ -4261,6 +4333,10 @@ export interface ResourceAws {
4261
4333
  secretStoreRoleExternalIdPath?: string;
4262
4334
  secretStoreSecretAccessKeyKey?: string;
4263
4335
  secretStoreSecretAccessKeyPath?: string;
4336
+ /**
4337
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4338
+ */
4339
+ subdomain: string;
4264
4340
  /**
4265
4341
  * Tags is a map of key, value pairs.
4266
4342
  */
@@ -4368,6 +4444,7 @@ export interface ResourceAzure {
4368
4444
  */
4369
4445
  name: string;
4370
4446
  password?: string;
4447
+ portOverride: number;
4371
4448
  secretStoreAppIdKey?: string;
4372
4449
  secretStoreAppIdPath?: string;
4373
4450
  /**
@@ -4381,6 +4458,10 @@ export interface ResourceAzure {
4381
4458
  */
4382
4459
  secretStoreTenantIdKey?: string;
4383
4460
  secretStoreTenantIdPath?: string;
4461
+ /**
4462
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4463
+ */
4464
+ subdomain: string;
4384
4465
  /**
4385
4466
  * Tags is a map of key, value pairs.
4386
4467
  */
@@ -4404,6 +4485,7 @@ export interface ResourceAzureCertificate {
4404
4485
  * Unique human-readable name of the Resource.
4405
4486
  */
4406
4487
  name: string;
4488
+ portOverride: number;
4407
4489
  secretStoreAppIdKey?: string;
4408
4490
  secretStoreAppIdPath?: string;
4409
4491
  secretStoreClientCertificateKey?: string;
@@ -4417,6 +4499,10 @@ export interface ResourceAzureCertificate {
4417
4499
  */
4418
4500
  secretStoreTenantIdKey?: string;
4419
4501
  secretStoreTenantIdPath?: string;
4502
+ /**
4503
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4504
+ */
4505
+ subdomain: string;
4420
4506
  /**
4421
4507
  * Tags is a map of key, value pairs.
4422
4508
  */
@@ -4449,6 +4535,9 @@ export interface ResourceAzureMysql {
4449
4535
  secretStoreId?: string;
4450
4536
  secretStorePasswordKey?: string;
4451
4537
  secretStorePasswordPath?: string;
4538
+ /**
4539
+ * * trino:
4540
+ */
4452
4541
  secretStoreUsernameKey?: string;
4453
4542
  secretStoreUsernamePath?: string;
4454
4543
  /**
@@ -4488,6 +4577,9 @@ export interface ResourceAzurePostgres {
4488
4577
  secretStoreId?: string;
4489
4578
  secretStorePasswordKey?: string;
4490
4579
  secretStorePasswordPath?: string;
4580
+ /**
4581
+ * * trino:
4582
+ */
4491
4583
  secretStoreUsernameKey?: string;
4492
4584
  secretStoreUsernamePath?: string;
4493
4585
  /**
@@ -4560,6 +4652,9 @@ export interface ResourceCassandra {
4560
4652
  secretStoreId?: string;
4561
4653
  secretStorePasswordKey?: string;
4562
4654
  secretStorePasswordPath?: string;
4655
+ /**
4656
+ * * trino:
4657
+ */
4563
4658
  secretStoreUsernameKey?: string;
4564
4659
  secretStoreUsernamePath?: string;
4565
4660
  /**
@@ -4600,6 +4695,9 @@ export interface ResourceCitus {
4600
4695
  secretStoreId?: string;
4601
4696
  secretStorePasswordKey?: string;
4602
4697
  secretStorePasswordPath?: string;
4698
+ /**
4699
+ * * trino:
4700
+ */
4603
4701
  secretStoreUsernameKey?: string;
4604
4702
  secretStoreUsernamePath?: string;
4605
4703
  /**
@@ -4638,6 +4736,9 @@ export interface ResourceClustrix {
4638
4736
  secretStoreId?: string;
4639
4737
  secretStorePasswordKey?: string;
4640
4738
  secretStorePasswordPath?: string;
4739
+ /**
4740
+ * * trino:
4741
+ */
4641
4742
  secretStoreUsernameKey?: string;
4642
4743
  secretStoreUsernamePath?: string;
4643
4744
  /**
@@ -4677,6 +4778,9 @@ export interface ResourceCockroach {
4677
4778
  secretStoreId?: string;
4678
4779
  secretStorePasswordKey?: string;
4679
4780
  secretStorePasswordPath?: string;
4781
+ /**
4782
+ * * trino:
4783
+ */
4680
4784
  secretStoreUsernameKey?: string;
4681
4785
  secretStoreUsernamePath?: string;
4682
4786
  /**
@@ -4714,6 +4818,9 @@ export interface ResourceDb2I {
4714
4818
  secretStoreId?: string;
4715
4819
  secretStorePasswordKey?: string;
4716
4820
  secretStorePasswordPath?: string;
4821
+ /**
4822
+ * * trino:
4823
+ */
4717
4824
  secretStoreUsernameKey?: string;
4718
4825
  secretStoreUsernamePath?: string;
4719
4826
  /**
@@ -4753,6 +4860,9 @@ export interface ResourceDb2Luw {
4753
4860
  secretStoreId?: string;
4754
4861
  secretStorePasswordKey?: string;
4755
4862
  secretStorePasswordPath?: string;
4863
+ /**
4864
+ * * trino:
4865
+ */
4756
4866
  secretStoreUsernameKey?: string;
4757
4867
  secretStoreUsernamePath?: string;
4758
4868
  /**
@@ -4791,6 +4901,9 @@ export interface ResourceDocumentDbHost {
4791
4901
  secretStoreId?: string;
4792
4902
  secretStorePasswordKey?: string;
4793
4903
  secretStorePasswordPath?: string;
4904
+ /**
4905
+ * * trino:
4906
+ */
4794
4907
  secretStoreUsernameKey?: string;
4795
4908
  secretStoreUsernamePath?: string;
4796
4909
  /**
@@ -4830,6 +4943,9 @@ export interface ResourceDocumentDbReplicaSet {
4830
4943
  secretStoreId?: string;
4831
4944
  secretStorePasswordKey?: string;
4832
4945
  secretStorePasswordPath?: string;
4946
+ /**
4947
+ * * trino:
4948
+ */
4833
4949
  secretStoreUsernameKey?: string;
4834
4950
  secretStoreUsernamePath?: string;
4835
4951
  /**
@@ -4867,6 +4983,9 @@ export interface ResourceDruid {
4867
4983
  secretStoreId?: string;
4868
4984
  secretStorePasswordKey?: string;
4869
4985
  secretStorePasswordPath?: string;
4986
+ /**
4987
+ * * trino:
4988
+ */
4870
4989
  secretStoreUsernameKey?: string;
4871
4990
  secretStoreUsernamePath?: string;
4872
4991
  /**
@@ -4947,6 +5066,9 @@ export interface ResourceElastic {
4947
5066
  secretStoreId?: string;
4948
5067
  secretStorePasswordKey?: string;
4949
5068
  secretStorePasswordPath?: string;
5069
+ /**
5070
+ * * trino:
5071
+ */
4950
5072
  secretStoreUsernameKey?: string;
4951
5073
  secretStoreUsernamePath?: string;
4952
5074
  /**
@@ -4985,6 +5107,9 @@ export interface ResourceElasticacheRedis {
4985
5107
  secretStoreId?: string;
4986
5108
  secretStorePasswordKey?: string;
4987
5109
  secretStorePasswordPath?: string;
5110
+ /**
5111
+ * * trino:
5112
+ */
4988
5113
  secretStoreUsernameKey?: string;
4989
5114
  secretStoreUsernamePath?: string;
4990
5115
  /**
@@ -5014,6 +5139,7 @@ export interface ResourceGcp {
5014
5139
  * Unique human-readable name of the Resource.
5015
5140
  */
5016
5141
  name: string;
5142
+ portOverride: number;
5017
5143
  scopes: string;
5018
5144
  /**
5019
5145
  * ID of the secret store containing credentials for this resource, if any.
@@ -5021,6 +5147,10 @@ export interface ResourceGcp {
5021
5147
  secretStoreId?: string;
5022
5148
  secretStoreKeyfileKey?: string;
5023
5149
  secretStoreKeyfilePath?: string;
5150
+ /**
5151
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5152
+ */
5153
+ subdomain: string;
5024
5154
  /**
5025
5155
  * Tags is a map of key, value pairs.
5026
5156
  */
@@ -5133,6 +5263,9 @@ export interface ResourceGreenplum {
5133
5263
  secretStoreId?: string;
5134
5264
  secretStorePasswordKey?: string;
5135
5265
  secretStorePasswordPath?: string;
5266
+ /**
5267
+ * * trino:
5268
+ */
5136
5269
  secretStoreUsernameKey?: string;
5137
5270
  secretStoreUsernamePath?: string;
5138
5271
  /**
@@ -5210,6 +5343,9 @@ export interface ResourceHttpBasicAuth {
5210
5343
  secretStoreId?: string;
5211
5344
  secretStorePasswordKey?: string;
5212
5345
  secretStorePasswordPath?: string;
5346
+ /**
5347
+ * * trino:
5348
+ */
5213
5349
  secretStoreUsernameKey?: string;
5214
5350
  secretStoreUsernamePath?: string;
5215
5351
  /**
@@ -5337,6 +5473,9 @@ export interface ResourceKubernetesBasicAuth {
5337
5473
  secretStoreId?: string;
5338
5474
  secretStorePasswordKey?: string;
5339
5475
  secretStorePasswordPath?: string;
5476
+ /**
5477
+ * * trino:
5478
+ */
5340
5479
  secretStoreUsernameKey?: string;
5341
5480
  secretStoreUsernamePath?: string;
5342
5481
  /**
@@ -5503,6 +5642,9 @@ export interface ResourceMaria {
5503
5642
  secretStoreId?: string;
5504
5643
  secretStorePasswordKey?: string;
5505
5644
  secretStorePasswordPath?: string;
5645
+ /**
5646
+ * * trino:
5647
+ */
5506
5648
  secretStoreUsernameKey?: string;
5507
5649
  secretStoreUsernamePath?: string;
5508
5650
  /**
@@ -5572,6 +5714,9 @@ export interface ResourceMemsql {
5572
5714
  secretStoreId?: string;
5573
5715
  secretStorePasswordKey?: string;
5574
5716
  secretStorePasswordPath?: string;
5717
+ /**
5718
+ * * trino:
5719
+ */
5575
5720
  secretStoreUsernameKey?: string;
5576
5721
  secretStoreUsernamePath?: string;
5577
5722
  /**
@@ -5610,6 +5755,9 @@ export interface ResourceMongoHost {
5610
5755
  secretStoreId?: string;
5611
5756
  secretStorePasswordKey?: string;
5612
5757
  secretStorePasswordPath?: string;
5758
+ /**
5759
+ * * trino:
5760
+ */
5613
5761
  secretStoreUsernameKey?: string;
5614
5762
  secretStoreUsernamePath?: string;
5615
5763
  /**
@@ -5650,6 +5798,9 @@ export interface ResourceMongoLegacyHost {
5650
5798
  secretStoreId?: string;
5651
5799
  secretStorePasswordKey?: string;
5652
5800
  secretStorePasswordPath?: string;
5801
+ /**
5802
+ * * trino:
5803
+ */
5653
5804
  secretStoreUsernameKey?: string;
5654
5805
  secretStoreUsernamePath?: string;
5655
5806
  /**
@@ -5691,6 +5842,9 @@ export interface ResourceMongoLegacyReplicaset {
5691
5842
  secretStoreId?: string;
5692
5843
  secretStorePasswordKey?: string;
5693
5844
  secretStorePasswordPath?: string;
5845
+ /**
5846
+ * * trino:
5847
+ */
5694
5848
  secretStoreUsernameKey?: string;
5695
5849
  secretStoreUsernamePath?: string;
5696
5850
  /**
@@ -5732,6 +5886,9 @@ export interface ResourceMongoReplicaSet {
5732
5886
  secretStoreId?: string;
5733
5887
  secretStorePasswordKey?: string;
5734
5888
  secretStorePasswordPath?: string;
5889
+ /**
5890
+ * * trino:
5891
+ */
5735
5892
  secretStoreUsernameKey?: string;
5736
5893
  secretStoreUsernamePath?: string;
5737
5894
  /**
@@ -5770,6 +5927,9 @@ export interface ResourceMongoShardedCluster {
5770
5927
  secretStoreId?: string;
5771
5928
  secretStorePasswordKey?: string;
5772
5929
  secretStorePasswordPath?: string;
5930
+ /**
5931
+ * * trino:
5932
+ */
5773
5933
  secretStoreUsernameKey?: string;
5774
5934
  secretStoreUsernamePath?: string;
5775
5935
  /**
@@ -5818,6 +5978,9 @@ export interface ResourceMtlsMysql {
5818
5978
  secretStoreId?: string;
5819
5979
  secretStorePasswordKey?: string;
5820
5980
  secretStorePasswordPath?: string;
5981
+ /**
5982
+ * * trino:
5983
+ */
5821
5984
  secretStoreUsernameKey?: string;
5822
5985
  secretStoreUsernamePath?: string;
5823
5986
  serverName?: string;
@@ -5867,6 +6030,9 @@ export interface ResourceMtlsPostgres {
5867
6030
  secretStoreId?: string;
5868
6031
  secretStorePasswordKey?: string;
5869
6032
  secretStorePasswordPath?: string;
6033
+ /**
6034
+ * * trino:
6035
+ */
5870
6036
  secretStoreUsernameKey?: string;
5871
6037
  secretStoreUsernamePath?: string;
5872
6038
  serverName?: string;
@@ -5906,6 +6072,9 @@ export interface ResourceMysql {
5906
6072
  secretStoreId?: string;
5907
6073
  secretStorePasswordKey?: string;
5908
6074
  secretStorePasswordPath?: string;
6075
+ /**
6076
+ * * trino:
6077
+ */
5909
6078
  secretStoreUsernameKey?: string;
5910
6079
  secretStoreUsernamePath?: string;
5911
6080
  /**
@@ -6019,6 +6188,9 @@ export interface ResourceOracle {
6019
6188
  secretStoreId?: string;
6020
6189
  secretStorePasswordKey?: string;
6021
6190
  secretStorePasswordPath?: string;
6191
+ /**
6192
+ * * trino:
6193
+ */
6022
6194
  secretStoreUsernameKey?: string;
6023
6195
  secretStoreUsernamePath?: string;
6024
6196
  /**
@@ -6059,6 +6231,9 @@ export interface ResourcePostgres {
6059
6231
  secretStoreId?: string;
6060
6232
  secretStorePasswordKey?: string;
6061
6233
  secretStorePasswordPath?: string;
6234
+ /**
6235
+ * * trino:
6236
+ */
6062
6237
  secretStoreUsernameKey?: string;
6063
6238
  secretStoreUsernamePath?: string;
6064
6239
  /**
@@ -6133,6 +6308,9 @@ export interface ResourceRabbitmqAmqp091 {
6133
6308
  secretStoreId?: string;
6134
6309
  secretStorePasswordKey?: string;
6135
6310
  secretStorePasswordPath?: string;
6311
+ /**
6312
+ * * trino:
6313
+ */
6136
6314
  secretStoreUsernameKey?: string;
6137
6315
  secretStoreUsernamePath?: string;
6138
6316
  /**
@@ -6203,6 +6381,9 @@ export interface ResourceRdp {
6203
6381
  secretStoreId?: string;
6204
6382
  secretStorePasswordKey?: string;
6205
6383
  secretStorePasswordPath?: string;
6384
+ /**
6385
+ * * trino:
6386
+ */
6206
6387
  secretStoreUsernameKey?: string;
6207
6388
  secretStoreUsernamePath?: string;
6208
6389
  /**
@@ -6240,6 +6421,9 @@ export interface ResourceRedis {
6240
6421
  secretStoreId?: string;
6241
6422
  secretStorePasswordKey?: string;
6242
6423
  secretStorePasswordPath?: string;
6424
+ /**
6425
+ * * trino:
6426
+ */
6243
6427
  secretStoreUsernameKey?: string;
6244
6428
  secretStoreUsernamePath?: string;
6245
6429
  /**
@@ -6280,6 +6464,9 @@ export interface ResourceRedshift {
6280
6464
  secretStoreId?: string;
6281
6465
  secretStorePasswordKey?: string;
6282
6466
  secretStorePasswordPath?: string;
6467
+ /**
6468
+ * * trino:
6469
+ */
6283
6470
  secretStoreUsernameKey?: string;
6284
6471
  secretStoreUsernamePath?: string;
6285
6472
  /**
@@ -6318,6 +6505,9 @@ export interface ResourceSingleStore {
6318
6505
  secretStoreId?: string;
6319
6506
  secretStorePasswordKey?: string;
6320
6507
  secretStorePasswordPath?: string;
6508
+ /**
6509
+ * * trino:
6510
+ */
6321
6511
  secretStoreUsernameKey?: string;
6322
6512
  secretStoreUsernamePath?: string;
6323
6513
  /**
@@ -6356,6 +6546,9 @@ export interface ResourceSnowflake {
6356
6546
  secretStoreId?: string;
6357
6547
  secretStorePasswordKey?: string;
6358
6548
  secretStorePasswordPath?: string;
6549
+ /**
6550
+ * * trino:
6551
+ */
6359
6552
  secretStoreUsernameKey?: string;
6360
6553
  secretStoreUsernamePath?: string;
6361
6554
  /**
@@ -6429,6 +6622,9 @@ export interface ResourceSqlServer {
6429
6622
  secretStoreId?: string;
6430
6623
  secretStorePasswordKey?: string;
6431
6624
  secretStorePasswordPath?: string;
6625
+ /**
6626
+ * * trino:
6627
+ */
6432
6628
  secretStoreUsernameKey?: string;
6433
6629
  secretStoreUsernamePath?: string;
6434
6630
  /**
@@ -6467,6 +6663,9 @@ export interface ResourceSsh {
6467
6663
  * ID of the secret store containing credentials for this resource, if any.
6468
6664
  */
6469
6665
  secretStoreId?: string;
6666
+ /**
6667
+ * * trino:
6668
+ */
6470
6669
  secretStoreUsernameKey?: string;
6471
6670
  secretStoreUsernamePath?: string;
6472
6671
  /**
@@ -6506,6 +6705,9 @@ export interface ResourceSshCert {
6506
6705
  * ID of the secret store containing credentials for this resource, if any.
6507
6706
  */
6508
6707
  secretStoreId?: string;
6708
+ /**
6709
+ * * trino:
6710
+ */
6509
6711
  secretStoreUsernameKey?: string;
6510
6712
  secretStoreUsernamePath?: string;
6511
6713
  /**
@@ -6545,6 +6747,9 @@ export interface ResourceSshCustomerKey {
6545
6747
  secretStoreId?: string;
6546
6748
  secretStorePrivateKeyKey?: string;
6547
6749
  secretStorePrivateKeyPath?: string;
6750
+ /**
6751
+ * * trino:
6752
+ */
6548
6753
  secretStoreUsernameKey?: string;
6549
6754
  secretStoreUsernamePath?: string;
6550
6755
  /**
@@ -6582,6 +6787,9 @@ export interface ResourceSybase {
6582
6787
  secretStoreId?: string;
6583
6788
  secretStorePasswordKey?: string;
6584
6789
  secretStorePasswordPath?: string;
6790
+ /**
6791
+ * * trino:
6792
+ */
6585
6793
  secretStoreUsernameKey?: string;
6586
6794
  secretStoreUsernamePath?: string;
6587
6795
  /**
@@ -6619,6 +6827,9 @@ export interface ResourceSybaseIq {
6619
6827
  secretStoreId?: string;
6620
6828
  secretStorePasswordKey?: string;
6621
6829
  secretStorePasswordPath?: string;
6830
+ /**
6831
+ * * trino:
6832
+ */
6622
6833
  secretStoreUsernameKey?: string;
6623
6834
  secretStoreUsernamePath?: string;
6624
6835
  /**
@@ -6656,6 +6867,9 @@ export interface ResourceTeradata {
6656
6867
  secretStoreId?: string;
6657
6868
  secretStorePasswordKey?: string;
6658
6869
  secretStorePasswordPath?: string;
6870
+ /**
6871
+ * * trino:
6872
+ */
6659
6873
  secretStoreUsernameKey?: string;
6660
6874
  secretStoreUsernamePath?: string;
6661
6875
  /**
@@ -6670,6 +6884,42 @@ export interface ResourceTeradata {
6670
6884
  };
6671
6885
  username?: string;
6672
6886
  }
6887
+ export interface ResourceTrino {
6888
+ /**
6889
+ * Bind interface
6890
+ */
6891
+ bindInterface: string;
6892
+ database: string;
6893
+ /**
6894
+ * A filter applied to the routing logic to pin datasource to nodes.
6895
+ */
6896
+ egressFilter?: string;
6897
+ hostname: string;
6898
+ /**
6899
+ * Unique human-readable name of the Resource.
6900
+ */
6901
+ name: string;
6902
+ password?: string;
6903
+ port?: number;
6904
+ portOverride: number;
6905
+ /**
6906
+ * ID of the secret store containing credentials for this resource, if any.
6907
+ */
6908
+ secretStoreId?: string;
6909
+ secretStorePasswordKey?: string;
6910
+ secretStorePasswordPath?: string;
6911
+ /**
6912
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6913
+ */
6914
+ subdomain: string;
6915
+ /**
6916
+ * Tags is a map of key, value pairs.
6917
+ */
6918
+ tags?: {
6919
+ [key: string]: string;
6920
+ };
6921
+ username?: string;
6922
+ }
6673
6923
  export interface SecretStoreAws {
6674
6924
  /**
6675
6925
  * Unique human-readable name of the SecretStore.
package/utilities.js CHANGED
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.resourceOptsDefaults = exports.getVersion = exports.getEnvNumber = exports.getEnvBoolean = exports.getEnv = void 0;
5
+ exports.lazyLoad = exports.resourceOptsDefaults = exports.getVersion = exports.getEnvNumber = exports.getEnvBoolean = exports.getEnv = void 0;
6
6
  function getEnv(...vars) {
7
7
  for (const v of vars) {
8
8
  const value = process.env[v];
@@ -54,4 +54,16 @@ function resourceOptsDefaults() {
54
54
  return { version: getVersion(), pluginDownloadURL: "github://api.github.com/pierskarsenbarg/pulumi-sdm" };
55
55
  }
56
56
  exports.resourceOptsDefaults = resourceOptsDefaults;
57
+ /** @internal */
58
+ function lazyLoad(exports, props, loadModule) {
59
+ for (let property of props) {
60
+ Object.defineProperty(exports, property, {
61
+ enumerable: true,
62
+ get: function () {
63
+ return loadModule()[property];
64
+ },
65
+ });
66
+ }
67
+ }
68
+ exports.lazyLoad = lazyLoad;
57
69
  //# sourceMappingURL=utilities.js.map