@pierskarsenbarg/sdm 1.4.2 → 1.5.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/package.json +2 -2
- package/types/input.d.ts +23 -11
- package/types/output.d.ts +51 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pierskarsenbarg/sdm",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.5.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing StrongDM cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource sdm v1.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource sdm v1.5.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
|
@@ -865,7 +865,7 @@ export interface ResourceAuroraMysql {
|
|
|
865
865
|
/**
|
|
866
866
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
867
867
|
*/
|
|
868
|
-
database
|
|
868
|
+
database?: pulumi.Input<string>;
|
|
869
869
|
/**
|
|
870
870
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
871
871
|
*/
|
|
@@ -1247,7 +1247,7 @@ export interface ResourceAzureMysql {
|
|
|
1247
1247
|
/**
|
|
1248
1248
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
1249
1249
|
*/
|
|
1250
|
-
database
|
|
1250
|
+
database?: pulumi.Input<string>;
|
|
1251
1251
|
/**
|
|
1252
1252
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
1253
1253
|
*/
|
|
@@ -1579,7 +1579,7 @@ export interface ResourceClustrix {
|
|
|
1579
1579
|
/**
|
|
1580
1580
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
1581
1581
|
*/
|
|
1582
|
-
database
|
|
1582
|
+
database?: pulumi.Input<string>;
|
|
1583
1583
|
/**
|
|
1584
1584
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
1585
1585
|
*/
|
|
@@ -2752,7 +2752,7 @@ export interface ResourceMaria {
|
|
|
2752
2752
|
/**
|
|
2753
2753
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
2754
2754
|
*/
|
|
2755
|
-
database
|
|
2755
|
+
database?: pulumi.Input<string>;
|
|
2756
2756
|
/**
|
|
2757
2757
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2758
2758
|
*/
|
|
@@ -2852,7 +2852,7 @@ export interface ResourceMemsql {
|
|
|
2852
2852
|
/**
|
|
2853
2853
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
2854
2854
|
*/
|
|
2855
|
-
database
|
|
2855
|
+
database?: pulumi.Input<string>;
|
|
2856
2856
|
/**
|
|
2857
2857
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2858
2858
|
*/
|
|
@@ -3220,7 +3220,7 @@ export interface ResourceMtlsMysql {
|
|
|
3220
3220
|
/**
|
|
3221
3221
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
3222
3222
|
*/
|
|
3223
|
-
database
|
|
3223
|
+
database?: pulumi.Input<string>;
|
|
3224
3224
|
/**
|
|
3225
3225
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3226
3226
|
*/
|
|
@@ -3356,7 +3356,7 @@ export interface ResourceMysql {
|
|
|
3356
3356
|
/**
|
|
3357
3357
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
3358
3358
|
*/
|
|
3359
|
-
database
|
|
3359
|
+
database?: pulumi.Input<string>;
|
|
3360
3360
|
/**
|
|
3361
3361
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3362
3362
|
*/
|
|
@@ -3936,7 +3936,7 @@ export interface ResourceSingleStore {
|
|
|
3936
3936
|
/**
|
|
3937
3937
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
3938
3938
|
*/
|
|
3939
|
-
database
|
|
3939
|
+
database?: pulumi.Input<string>;
|
|
3940
3940
|
/**
|
|
3941
3941
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3942
3942
|
*/
|
|
@@ -4081,6 +4081,10 @@ export interface ResourceSnowsight {
|
|
|
4081
4081
|
}>;
|
|
4082
4082
|
}
|
|
4083
4083
|
export interface ResourceSqlServer {
|
|
4084
|
+
/**
|
|
4085
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4086
|
+
*/
|
|
4087
|
+
allowDeprecatedEncryption?: pulumi.Input<boolean>;
|
|
4084
4088
|
/**
|
|
4085
4089
|
* 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.
|
|
4086
4090
|
*/
|
|
@@ -4088,7 +4092,7 @@ export interface ResourceSqlServer {
|
|
|
4088
4092
|
/**
|
|
4089
4093
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
4090
4094
|
*/
|
|
4091
|
-
database
|
|
4095
|
+
database?: pulumi.Input<string>;
|
|
4092
4096
|
/**
|
|
4093
4097
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
4094
4098
|
*/
|
|
@@ -4141,6 +4145,10 @@ export interface ResourceSqlServer {
|
|
|
4141
4145
|
username?: pulumi.Input<string>;
|
|
4142
4146
|
}
|
|
4143
4147
|
export interface ResourceSqlServerAzureAd {
|
|
4148
|
+
/**
|
|
4149
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4150
|
+
*/
|
|
4151
|
+
allowDeprecatedEncryption?: pulumi.Input<boolean>;
|
|
4144
4152
|
/**
|
|
4145
4153
|
* 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.
|
|
4146
4154
|
*/
|
|
@@ -4152,7 +4160,7 @@ export interface ResourceSqlServerAzureAd {
|
|
|
4152
4160
|
/**
|
|
4153
4161
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
4154
4162
|
*/
|
|
4155
|
-
database
|
|
4163
|
+
database?: pulumi.Input<string>;
|
|
4156
4164
|
/**
|
|
4157
4165
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
4158
4166
|
*/
|
|
@@ -4206,6 +4214,10 @@ export interface ResourceSqlServerAzureAd {
|
|
|
4206
4214
|
tenantId?: pulumi.Input<string>;
|
|
4207
4215
|
}
|
|
4208
4216
|
export interface ResourceSqlServerKerberosAd {
|
|
4217
|
+
/**
|
|
4218
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4219
|
+
*/
|
|
4220
|
+
allowDeprecatedEncryption?: pulumi.Input<boolean>;
|
|
4209
4221
|
/**
|
|
4210
4222
|
* 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.
|
|
4211
4223
|
*/
|
|
@@ -4213,7 +4225,7 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
4213
4225
|
/**
|
|
4214
4226
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
4215
4227
|
*/
|
|
4216
|
-
database
|
|
4228
|
+
database?: pulumi.Input<string>;
|
|
4217
4229
|
/**
|
|
4218
4230
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
4219
4231
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -4615,6 +4615,10 @@ export interface GetResourceResourceSnowsight {
|
|
|
4615
4615
|
};
|
|
4616
4616
|
}
|
|
4617
4617
|
export interface GetResourceResourceSqlServer {
|
|
4618
|
+
/**
|
|
4619
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4620
|
+
*/
|
|
4621
|
+
allowDeprecatedEncryption?: boolean;
|
|
4618
4622
|
/**
|
|
4619
4623
|
* 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
4624
|
*/
|
|
@@ -4679,6 +4683,10 @@ export interface GetResourceResourceSqlServer {
|
|
|
4679
4683
|
username?: string;
|
|
4680
4684
|
}
|
|
4681
4685
|
export interface GetResourceResourceSqlServerAzureAd {
|
|
4686
|
+
/**
|
|
4687
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4688
|
+
*/
|
|
4689
|
+
allowDeprecatedEncryption?: boolean;
|
|
4682
4690
|
/**
|
|
4683
4691
|
* 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
4692
|
*/
|
|
@@ -4748,6 +4756,10 @@ export interface GetResourceResourceSqlServerAzureAd {
|
|
|
4748
4756
|
tenantId?: string;
|
|
4749
4757
|
}
|
|
4750
4758
|
export interface GetResourceResourceSqlServerKerberosAd {
|
|
4759
|
+
/**
|
|
4760
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
4761
|
+
*/
|
|
4762
|
+
allowDeprecatedEncryption?: boolean;
|
|
4751
4763
|
/**
|
|
4752
4764
|
* 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
4765
|
*/
|
|
@@ -5599,7 +5611,7 @@ export interface ResourceAks {
|
|
|
5599
5611
|
/**
|
|
5600
5612
|
* 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
5613
|
*/
|
|
5602
|
-
healthcheckNamespace
|
|
5614
|
+
healthcheckNamespace: string;
|
|
5603
5615
|
/**
|
|
5604
5616
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5605
5617
|
*/
|
|
@@ -5651,7 +5663,7 @@ export interface ResourceAksBasicAuth {
|
|
|
5651
5663
|
/**
|
|
5652
5664
|
* 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
5665
|
*/
|
|
5654
|
-
healthcheckNamespace
|
|
5666
|
+
healthcheckNamespace: string;
|
|
5655
5667
|
/**
|
|
5656
5668
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5657
5669
|
*/
|
|
@@ -5703,7 +5715,7 @@ export interface ResourceAksServiceAccount {
|
|
|
5703
5715
|
/**
|
|
5704
5716
|
* 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
5717
|
*/
|
|
5706
|
-
healthcheckNamespace
|
|
5718
|
+
healthcheckNamespace: string;
|
|
5707
5719
|
/**
|
|
5708
5720
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5709
5721
|
*/
|
|
@@ -5760,7 +5772,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
5760
5772
|
/**
|
|
5761
5773
|
* 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
5774
|
*/
|
|
5763
|
-
healthcheckNamespace
|
|
5775
|
+
healthcheckNamespace: string;
|
|
5764
5776
|
/**
|
|
5765
5777
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5766
5778
|
*/
|
|
@@ -5821,7 +5833,7 @@ export interface ResourceAksUserImpersonation {
|
|
|
5821
5833
|
/**
|
|
5822
5834
|
* 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
5835
|
*/
|
|
5824
|
-
healthcheckNamespace
|
|
5836
|
+
healthcheckNamespace: string;
|
|
5825
5837
|
/**
|
|
5826
5838
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5827
5839
|
*/
|
|
@@ -5881,7 +5893,7 @@ export interface ResourceAmazonEks {
|
|
|
5881
5893
|
/**
|
|
5882
5894
|
* 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
5895
|
*/
|
|
5884
|
-
healthcheckNamespace
|
|
5896
|
+
healthcheckNamespace: string;
|
|
5885
5897
|
/**
|
|
5886
5898
|
* Unique human-readable name of the Resource.
|
|
5887
5899
|
*/
|
|
@@ -5953,7 +5965,7 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
5953
5965
|
/**
|
|
5954
5966
|
* 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
5967
|
*/
|
|
5956
|
-
healthcheckNamespace
|
|
5968
|
+
healthcheckNamespace: string;
|
|
5957
5969
|
/**
|
|
5958
5970
|
* Unique human-readable name of the Resource.
|
|
5959
5971
|
*/
|
|
@@ -6021,7 +6033,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
6021
6033
|
/**
|
|
6022
6034
|
* 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
6035
|
*/
|
|
6024
|
-
healthcheckNamespace
|
|
6036
|
+
healthcheckNamespace: string;
|
|
6025
6037
|
/**
|
|
6026
6038
|
* Unique human-readable name of the Resource.
|
|
6027
6039
|
*/
|
|
@@ -6093,7 +6105,7 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
6093
6105
|
/**
|
|
6094
6106
|
* 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
6107
|
*/
|
|
6096
|
-
healthcheckNamespace
|
|
6108
|
+
healthcheckNamespace: string;
|
|
6097
6109
|
/**
|
|
6098
6110
|
* Unique human-readable name of the Resource.
|
|
6099
6111
|
*/
|
|
@@ -6305,7 +6317,7 @@ export interface ResourceAuroraMysql {
|
|
|
6305
6317
|
/**
|
|
6306
6318
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
6307
6319
|
*/
|
|
6308
|
-
database
|
|
6320
|
+
database?: string;
|
|
6309
6321
|
/**
|
|
6310
6322
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6311
6323
|
*/
|
|
@@ -6687,7 +6699,7 @@ export interface ResourceAzureMysql {
|
|
|
6687
6699
|
/**
|
|
6688
6700
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
6689
6701
|
*/
|
|
6690
|
-
database
|
|
6702
|
+
database?: string;
|
|
6691
6703
|
/**
|
|
6692
6704
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6693
6705
|
*/
|
|
@@ -7019,7 +7031,7 @@ export interface ResourceClustrix {
|
|
|
7019
7031
|
/**
|
|
7020
7032
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
7021
7033
|
*/
|
|
7022
|
-
database
|
|
7034
|
+
database?: string;
|
|
7023
7035
|
/**
|
|
7024
7036
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
7025
7037
|
*/
|
|
@@ -7607,7 +7619,7 @@ export interface ResourceGoogleGke {
|
|
|
7607
7619
|
/**
|
|
7608
7620
|
* 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
7621
|
*/
|
|
7610
|
-
healthcheckNamespace
|
|
7622
|
+
healthcheckNamespace: string;
|
|
7611
7623
|
/**
|
|
7612
7624
|
* Unique human-readable name of the Resource.
|
|
7613
7625
|
*/
|
|
@@ -7663,7 +7675,7 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
7663
7675
|
/**
|
|
7664
7676
|
* 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
7677
|
*/
|
|
7666
|
-
healthcheckNamespace
|
|
7678
|
+
healthcheckNamespace: string;
|
|
7667
7679
|
/**
|
|
7668
7680
|
* Unique human-readable name of the Resource.
|
|
7669
7681
|
*/
|
|
@@ -7930,7 +7942,7 @@ export interface ResourceKubernetes {
|
|
|
7930
7942
|
/**
|
|
7931
7943
|
* 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
7944
|
*/
|
|
7933
|
-
healthcheckNamespace
|
|
7945
|
+
healthcheckNamespace: string;
|
|
7934
7946
|
/**
|
|
7935
7947
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
7936
7948
|
*/
|
|
@@ -7982,7 +7994,7 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
7982
7994
|
/**
|
|
7983
7995
|
* 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
7996
|
*/
|
|
7985
|
-
healthcheckNamespace
|
|
7997
|
+
healthcheckNamespace: string;
|
|
7986
7998
|
/**
|
|
7987
7999
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
7988
8000
|
*/
|
|
@@ -8034,7 +8046,7 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
8034
8046
|
/**
|
|
8035
8047
|
* 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
8048
|
*/
|
|
8037
|
-
healthcheckNamespace
|
|
8049
|
+
healthcheckNamespace: string;
|
|
8038
8050
|
/**
|
|
8039
8051
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8040
8052
|
*/
|
|
@@ -8091,7 +8103,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
8091
8103
|
/**
|
|
8092
8104
|
* 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
8105
|
*/
|
|
8094
|
-
healthcheckNamespace
|
|
8106
|
+
healthcheckNamespace: string;
|
|
8095
8107
|
/**
|
|
8096
8108
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8097
8109
|
*/
|
|
@@ -8152,7 +8164,7 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
8152
8164
|
/**
|
|
8153
8165
|
* 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
8166
|
*/
|
|
8155
|
-
healthcheckNamespace
|
|
8167
|
+
healthcheckNamespace: string;
|
|
8156
8168
|
/**
|
|
8157
8169
|
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8158
8170
|
*/
|
|
@@ -8192,7 +8204,7 @@ export interface ResourceMaria {
|
|
|
8192
8204
|
/**
|
|
8193
8205
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8194
8206
|
*/
|
|
8195
|
-
database
|
|
8207
|
+
database?: string;
|
|
8196
8208
|
/**
|
|
8197
8209
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8198
8210
|
*/
|
|
@@ -8292,7 +8304,7 @@ export interface ResourceMemsql {
|
|
|
8292
8304
|
/**
|
|
8293
8305
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8294
8306
|
*/
|
|
8295
|
-
database
|
|
8307
|
+
database?: string;
|
|
8296
8308
|
/**
|
|
8297
8309
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8298
8310
|
*/
|
|
@@ -8660,7 +8672,7 @@ export interface ResourceMtlsMysql {
|
|
|
8660
8672
|
/**
|
|
8661
8673
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8662
8674
|
*/
|
|
8663
|
-
database
|
|
8675
|
+
database?: string;
|
|
8664
8676
|
/**
|
|
8665
8677
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8666
8678
|
*/
|
|
@@ -8796,7 +8808,7 @@ export interface ResourceMysql {
|
|
|
8796
8808
|
/**
|
|
8797
8809
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
8798
8810
|
*/
|
|
8799
|
-
database
|
|
8811
|
+
database?: string;
|
|
8800
8812
|
/**
|
|
8801
8813
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8802
8814
|
*/
|
|
@@ -9376,7 +9388,7 @@ export interface ResourceSingleStore {
|
|
|
9376
9388
|
/**
|
|
9377
9389
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9378
9390
|
*/
|
|
9379
|
-
database
|
|
9391
|
+
database?: string;
|
|
9380
9392
|
/**
|
|
9381
9393
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9382
9394
|
*/
|
|
@@ -9521,6 +9533,10 @@ export interface ResourceSnowsight {
|
|
|
9521
9533
|
};
|
|
9522
9534
|
}
|
|
9523
9535
|
export interface ResourceSqlServer {
|
|
9536
|
+
/**
|
|
9537
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
9538
|
+
*/
|
|
9539
|
+
allowDeprecatedEncryption?: boolean;
|
|
9524
9540
|
/**
|
|
9525
9541
|
* 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
9542
|
*/
|
|
@@ -9528,7 +9544,7 @@ export interface ResourceSqlServer {
|
|
|
9528
9544
|
/**
|
|
9529
9545
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9530
9546
|
*/
|
|
9531
|
-
database
|
|
9547
|
+
database?: string;
|
|
9532
9548
|
/**
|
|
9533
9549
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9534
9550
|
*/
|
|
@@ -9581,6 +9597,10 @@ export interface ResourceSqlServer {
|
|
|
9581
9597
|
username?: string;
|
|
9582
9598
|
}
|
|
9583
9599
|
export interface ResourceSqlServerAzureAd {
|
|
9600
|
+
/**
|
|
9601
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
9602
|
+
*/
|
|
9603
|
+
allowDeprecatedEncryption?: boolean;
|
|
9584
9604
|
/**
|
|
9585
9605
|
* 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
9606
|
*/
|
|
@@ -9592,7 +9612,7 @@ export interface ResourceSqlServerAzureAd {
|
|
|
9592
9612
|
/**
|
|
9593
9613
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9594
9614
|
*/
|
|
9595
|
-
database
|
|
9615
|
+
database?: string;
|
|
9596
9616
|
/**
|
|
9597
9617
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9598
9618
|
*/
|
|
@@ -9646,6 +9666,10 @@ export interface ResourceSqlServerAzureAd {
|
|
|
9646
9666
|
tenantId?: string;
|
|
9647
9667
|
}
|
|
9648
9668
|
export interface ResourceSqlServerKerberosAd {
|
|
9669
|
+
/**
|
|
9670
|
+
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
|
|
9671
|
+
*/
|
|
9672
|
+
allowDeprecatedEncryption?: boolean;
|
|
9649
9673
|
/**
|
|
9650
9674
|
* 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
9675
|
*/
|
|
@@ -9653,7 +9677,7 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
9653
9677
|
/**
|
|
9654
9678
|
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
9655
9679
|
*/
|
|
9656
|
-
database
|
|
9680
|
+
database?: string;
|
|
9657
9681
|
/**
|
|
9658
9682
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
9659
9683
|
*/
|