@pulumi/azure-native 3.22.0 → 3.23.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/databricks/accessConnector.d.ts +6 -6
- package/databricks/accessConnector.js +2 -2
- package/databricks/getAccessConnector.d.ts +8 -8
- package/databricks/getAccessConnector.js +4 -4
- package/databricks/getPrivateEndpointConnection.d.ts +12 -8
- package/databricks/getPrivateEndpointConnection.d.ts.map +1 -1
- package/databricks/getPrivateEndpointConnection.js +5 -5
- package/databricks/getVNetPeering.d.ts +15 -11
- package/databricks/getVNetPeering.d.ts.map +1 -1
- package/databricks/getVNetPeering.js +5 -5
- package/databricks/getWorkspace.d.ts +27 -23
- package/databricks/getWorkspace.d.ts.map +1 -1
- package/databricks/getWorkspace.js +5 -5
- package/databricks/privateEndpointConnection.d.ts +9 -5
- package/databricks/privateEndpointConnection.d.ts.map +1 -1
- package/databricks/privateEndpointConnection.js +6 -4
- package/databricks/vnetPeering.d.ts +14 -10
- package/databricks/vnetPeering.d.ts.map +1 -1
- package/databricks/vnetPeering.js +5 -3
- package/databricks/workspace.d.ts +37 -29
- package/databricks/workspace.d.ts.map +1 -1
- package/databricks/workspace.js +5 -6
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/types/enums/databricks/index.d.ts +114 -3
- package/types/enums/databricks/index.d.ts.map +1 -1
- package/types/enums/databricks/index.js +105 -2
- package/types/input.d.ts +42 -26
- package/types/input.d.ts.map +1 -1
- package/types/input.js +1 -1
- package/types/output.d.ts +74 -70
- package/types/output.d.ts.map +1 -1
- package/types/output.js +1 -1
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
export declare const AutomaticClusterUpdateValue: {
|
|
2
|
+
/**
|
|
3
|
+
* Enabled
|
|
4
|
+
*/
|
|
2
5
|
readonly Enabled: "Enabled";
|
|
6
|
+
/**
|
|
7
|
+
* Disabled
|
|
8
|
+
*/
|
|
3
9
|
readonly Disabled: "Disabled";
|
|
4
10
|
};
|
|
5
11
|
export type AutomaticClusterUpdateValue = (typeof AutomaticClusterUpdateValue)[keyof typeof AutomaticClusterUpdateValue];
|
|
6
12
|
export declare const ComplianceSecurityProfileValue: {
|
|
13
|
+
/**
|
|
14
|
+
* Enabled
|
|
15
|
+
*/
|
|
7
16
|
readonly Enabled: "Enabled";
|
|
17
|
+
/**
|
|
18
|
+
* Disabled
|
|
19
|
+
*/
|
|
8
20
|
readonly Disabled: "Disabled";
|
|
9
21
|
};
|
|
10
22
|
export type ComplianceSecurityProfileValue = (typeof ComplianceSecurityProfileValue)[keyof typeof ComplianceSecurityProfileValue];
|
|
@@ -12,20 +24,68 @@ export declare const ComplianceStandard: {
|
|
|
12
24
|
readonly NONE: "NONE";
|
|
13
25
|
readonly HIPAA: "HIPAA";
|
|
14
26
|
readonly PCI_DSS: "PCI_DSS";
|
|
27
|
+
readonly CYBER_ESSENTIAL_PLUS: "CYBER_ESSENTIAL_PLUS";
|
|
28
|
+
readonly FEDRAMP_HIGH: "FEDRAMP_HIGH";
|
|
29
|
+
readonly CANADA_PROTECTED_B: "CANADA_PROTECTED_B";
|
|
30
|
+
readonly IRAP_PROTECTED: "IRAP_PROTECTED";
|
|
31
|
+
readonly ISMAP: "ISMAP";
|
|
32
|
+
readonly HITRUST: "HITRUST";
|
|
33
|
+
readonly K_FSI: "K_FSI";
|
|
15
34
|
};
|
|
16
35
|
/**
|
|
17
36
|
* Compliance standard that can be associated with a workspace.
|
|
18
37
|
*/
|
|
19
38
|
export type ComplianceStandard = (typeof ComplianceStandard)[keyof typeof ComplianceStandard];
|
|
39
|
+
export declare const ComputeMode: {
|
|
40
|
+
/**
|
|
41
|
+
* Serverless
|
|
42
|
+
*/
|
|
43
|
+
readonly Serverless: "Serverless";
|
|
44
|
+
/**
|
|
45
|
+
* Hybrid
|
|
46
|
+
*/
|
|
47
|
+
readonly Hybrid: "Hybrid";
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* The workspace compute mode. Required on create, cannot be changed. Possible values include: 'Serverless', 'Hybrid'
|
|
51
|
+
*/
|
|
52
|
+
export type ComputeMode = (typeof ComputeMode)[keyof typeof ComputeMode];
|
|
53
|
+
export declare const CustomParameterType: {
|
|
54
|
+
/**
|
|
55
|
+
* Bool
|
|
56
|
+
*/
|
|
57
|
+
readonly Bool: "Bool";
|
|
58
|
+
/**
|
|
59
|
+
* Object
|
|
60
|
+
*/
|
|
61
|
+
readonly Object: "Object";
|
|
62
|
+
/**
|
|
63
|
+
* String
|
|
64
|
+
*/
|
|
65
|
+
readonly String: "String";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* The type of variable that this is
|
|
69
|
+
*/
|
|
70
|
+
export type CustomParameterType = (typeof CustomParameterType)[keyof typeof CustomParameterType];
|
|
20
71
|
export declare const DefaultStorageFirewall: {
|
|
72
|
+
/**
|
|
73
|
+
* Disabled
|
|
74
|
+
*/
|
|
21
75
|
readonly Disabled: "Disabled";
|
|
76
|
+
/**
|
|
77
|
+
* Enabled
|
|
78
|
+
*/
|
|
22
79
|
readonly Enabled: "Enabled";
|
|
23
80
|
};
|
|
24
81
|
/**
|
|
25
|
-
* Gets or Sets Default Storage Firewall configuration information
|
|
82
|
+
* Gets or Sets Default Storage Firewall configuration information. Not allowed in Serverless ComputeMode workspace.
|
|
26
83
|
*/
|
|
27
84
|
export type DefaultStorageFirewall = (typeof DefaultStorageFirewall)[keyof typeof DefaultStorageFirewall];
|
|
28
85
|
export declare const EncryptionKeySource: {
|
|
86
|
+
/**
|
|
87
|
+
* Microsoft.Keyvault
|
|
88
|
+
*/
|
|
29
89
|
readonly Microsoft_Keyvault: "Microsoft.Keyvault";
|
|
30
90
|
};
|
|
31
91
|
/**
|
|
@@ -33,12 +93,24 @@ export declare const EncryptionKeySource: {
|
|
|
33
93
|
*/
|
|
34
94
|
export type EncryptionKeySource = (typeof EncryptionKeySource)[keyof typeof EncryptionKeySource];
|
|
35
95
|
export declare const EnhancedSecurityMonitoringValue: {
|
|
96
|
+
/**
|
|
97
|
+
* Enabled
|
|
98
|
+
*/
|
|
36
99
|
readonly Enabled: "Enabled";
|
|
100
|
+
/**
|
|
101
|
+
* Disabled
|
|
102
|
+
*/
|
|
37
103
|
readonly Disabled: "Disabled";
|
|
38
104
|
};
|
|
39
105
|
export type EnhancedSecurityMonitoringValue = (typeof EnhancedSecurityMonitoringValue)[keyof typeof EnhancedSecurityMonitoringValue];
|
|
40
106
|
export declare const IdentityType: {
|
|
107
|
+
/**
|
|
108
|
+
* SystemAssigned
|
|
109
|
+
*/
|
|
41
110
|
readonly SystemAssigned: "SystemAssigned";
|
|
111
|
+
/**
|
|
112
|
+
* UserAssigned
|
|
113
|
+
*/
|
|
42
114
|
readonly UserAssigned: "UserAssigned";
|
|
43
115
|
};
|
|
44
116
|
/**
|
|
@@ -46,7 +118,13 @@ export declare const IdentityType: {
|
|
|
46
118
|
*/
|
|
47
119
|
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
48
120
|
export declare const InitialType: {
|
|
121
|
+
/**
|
|
122
|
+
* HiveMetastore
|
|
123
|
+
*/
|
|
49
124
|
readonly HiveMetastore: "HiveMetastore";
|
|
125
|
+
/**
|
|
126
|
+
* UnityCatalog
|
|
127
|
+
*/
|
|
50
128
|
readonly UnityCatalog: "UnityCatalog";
|
|
51
129
|
};
|
|
52
130
|
/**
|
|
@@ -54,7 +132,13 @@ export declare const InitialType: {
|
|
|
54
132
|
*/
|
|
55
133
|
export type InitialType = (typeof InitialType)[keyof typeof InitialType];
|
|
56
134
|
export declare const KeySource: {
|
|
135
|
+
/**
|
|
136
|
+
* Default
|
|
137
|
+
*/
|
|
57
138
|
readonly Default: "Default";
|
|
139
|
+
/**
|
|
140
|
+
* Microsoft.Keyvault
|
|
141
|
+
*/
|
|
58
142
|
readonly Microsoft_Keyvault: "Microsoft.Keyvault";
|
|
59
143
|
};
|
|
60
144
|
/**
|
|
@@ -72,9 +156,21 @@ export declare const ManagedServiceIdentityType: {
|
|
|
72
156
|
*/
|
|
73
157
|
export type ManagedServiceIdentityType = (typeof ManagedServiceIdentityType)[keyof typeof ManagedServiceIdentityType];
|
|
74
158
|
export declare const PrivateLinkServiceConnectionStatus: {
|
|
159
|
+
/**
|
|
160
|
+
* Pending
|
|
161
|
+
*/
|
|
75
162
|
readonly Pending: "Pending";
|
|
163
|
+
/**
|
|
164
|
+
* Approved
|
|
165
|
+
*/
|
|
76
166
|
readonly Approved: "Approved";
|
|
167
|
+
/**
|
|
168
|
+
* Rejected
|
|
169
|
+
*/
|
|
77
170
|
readonly Rejected: "Rejected";
|
|
171
|
+
/**
|
|
172
|
+
* Disconnected
|
|
173
|
+
*/
|
|
78
174
|
readonly Disconnected: "Disconnected";
|
|
79
175
|
};
|
|
80
176
|
/**
|
|
@@ -82,20 +178,35 @@ export declare const PrivateLinkServiceConnectionStatus: {
|
|
|
82
178
|
*/
|
|
83
179
|
export type PrivateLinkServiceConnectionStatus = (typeof PrivateLinkServiceConnectionStatus)[keyof typeof PrivateLinkServiceConnectionStatus];
|
|
84
180
|
export declare const PublicNetworkAccess: {
|
|
181
|
+
/**
|
|
182
|
+
* Enabled
|
|
183
|
+
*/
|
|
85
184
|
readonly Enabled: "Enabled";
|
|
185
|
+
/**
|
|
186
|
+
* Disabled
|
|
187
|
+
*/
|
|
86
188
|
readonly Disabled: "Disabled";
|
|
87
189
|
};
|
|
88
190
|
/**
|
|
89
|
-
* The network access type for accessing workspace. Set value to disabled to access workspace only via private link.
|
|
191
|
+
* The network access type for accessing workspace. Set value to disabled to access workspace only via private link. Used to configure front-end only private link for Serverless ComputeMode workspace.
|
|
90
192
|
*/
|
|
91
193
|
export type PublicNetworkAccess = (typeof PublicNetworkAccess)[keyof typeof PublicNetworkAccess];
|
|
92
194
|
export declare const RequiredNsgRules: {
|
|
195
|
+
/**
|
|
196
|
+
* AllRules
|
|
197
|
+
*/
|
|
93
198
|
readonly AllRules: "AllRules";
|
|
199
|
+
/**
|
|
200
|
+
* NoAzureDatabricksRules
|
|
201
|
+
*/
|
|
94
202
|
readonly NoAzureDatabricksRules: "NoAzureDatabricksRules";
|
|
203
|
+
/**
|
|
204
|
+
* NoAzureServiceRules
|
|
205
|
+
*/
|
|
95
206
|
readonly NoAzureServiceRules: "NoAzureServiceRules";
|
|
96
207
|
};
|
|
97
208
|
/**
|
|
98
|
-
* Gets or sets a value indicating whether data plane (clusters) to control plane communication happen over private endpoint. Supported values are 'AllRules' and 'NoAzureDatabricksRules'. 'NoAzureServiceRules' value is for internal use only.
|
|
209
|
+
* Gets or sets a value indicating whether data plane (clusters) to control plane communication happen over private endpoint. Supported values are 'AllRules' and 'NoAzureDatabricksRules'. 'NoAzureServiceRules' value is for internal use only. Not allowed in Serverless ComputeMode workspace.
|
|
99
210
|
*/
|
|
100
211
|
export type RequiredNsgRules = (typeof RequiredNsgRules)[keyof typeof RequiredNsgRules];
|
|
101
212
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../types/enums/databricks/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../types/enums/databricks/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,41 +2,117 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.RequiredNsgRules = exports.PublicNetworkAccess = exports.PrivateLinkServiceConnectionStatus = exports.ManagedServiceIdentityType = exports.KeySource = exports.InitialType = exports.IdentityType = exports.EnhancedSecurityMonitoringValue = exports.EncryptionKeySource = exports.DefaultStorageFirewall = exports.ComplianceStandard = exports.ComplianceSecurityProfileValue = exports.AutomaticClusterUpdateValue = void 0;
|
|
5
|
+
exports.RequiredNsgRules = exports.PublicNetworkAccess = exports.PrivateLinkServiceConnectionStatus = exports.ManagedServiceIdentityType = exports.KeySource = exports.InitialType = exports.IdentityType = exports.EnhancedSecurityMonitoringValue = exports.EncryptionKeySource = exports.DefaultStorageFirewall = exports.CustomParameterType = exports.ComputeMode = exports.ComplianceStandard = exports.ComplianceSecurityProfileValue = exports.AutomaticClusterUpdateValue = void 0;
|
|
6
6
|
exports.AutomaticClusterUpdateValue = {
|
|
7
|
+
/**
|
|
8
|
+
* Enabled
|
|
9
|
+
*/
|
|
7
10
|
Enabled: "Enabled",
|
|
11
|
+
/**
|
|
12
|
+
* Disabled
|
|
13
|
+
*/
|
|
8
14
|
Disabled: "Disabled",
|
|
9
15
|
};
|
|
10
16
|
exports.ComplianceSecurityProfileValue = {
|
|
17
|
+
/**
|
|
18
|
+
* Enabled
|
|
19
|
+
*/
|
|
11
20
|
Enabled: "Enabled",
|
|
21
|
+
/**
|
|
22
|
+
* Disabled
|
|
23
|
+
*/
|
|
12
24
|
Disabled: "Disabled",
|
|
13
25
|
};
|
|
14
26
|
exports.ComplianceStandard = {
|
|
15
27
|
NONE: "NONE",
|
|
16
28
|
HIPAA: "HIPAA",
|
|
17
29
|
PCI_DSS: "PCI_DSS",
|
|
30
|
+
CYBER_ESSENTIAL_PLUS: "CYBER_ESSENTIAL_PLUS",
|
|
31
|
+
FEDRAMP_HIGH: "FEDRAMP_HIGH",
|
|
32
|
+
CANADA_PROTECTED_B: "CANADA_PROTECTED_B",
|
|
33
|
+
IRAP_PROTECTED: "IRAP_PROTECTED",
|
|
34
|
+
ISMAP: "ISMAP",
|
|
35
|
+
HITRUST: "HITRUST",
|
|
36
|
+
K_FSI: "K_FSI",
|
|
37
|
+
};
|
|
38
|
+
exports.ComputeMode = {
|
|
39
|
+
/**
|
|
40
|
+
* Serverless
|
|
41
|
+
*/
|
|
42
|
+
Serverless: "Serverless",
|
|
43
|
+
/**
|
|
44
|
+
* Hybrid
|
|
45
|
+
*/
|
|
46
|
+
Hybrid: "Hybrid",
|
|
47
|
+
};
|
|
48
|
+
exports.CustomParameterType = {
|
|
49
|
+
/**
|
|
50
|
+
* Bool
|
|
51
|
+
*/
|
|
52
|
+
Bool: "Bool",
|
|
53
|
+
/**
|
|
54
|
+
* Object
|
|
55
|
+
*/
|
|
56
|
+
Object: "Object",
|
|
57
|
+
/**
|
|
58
|
+
* String
|
|
59
|
+
*/
|
|
60
|
+
String: "String",
|
|
18
61
|
};
|
|
19
62
|
exports.DefaultStorageFirewall = {
|
|
63
|
+
/**
|
|
64
|
+
* Disabled
|
|
65
|
+
*/
|
|
20
66
|
Disabled: "Disabled",
|
|
67
|
+
/**
|
|
68
|
+
* Enabled
|
|
69
|
+
*/
|
|
21
70
|
Enabled: "Enabled",
|
|
22
71
|
};
|
|
23
72
|
exports.EncryptionKeySource = {
|
|
73
|
+
/**
|
|
74
|
+
* Microsoft.Keyvault
|
|
75
|
+
*/
|
|
24
76
|
Microsoft_Keyvault: "Microsoft.Keyvault",
|
|
25
77
|
};
|
|
26
78
|
exports.EnhancedSecurityMonitoringValue = {
|
|
79
|
+
/**
|
|
80
|
+
* Enabled
|
|
81
|
+
*/
|
|
27
82
|
Enabled: "Enabled",
|
|
83
|
+
/**
|
|
84
|
+
* Disabled
|
|
85
|
+
*/
|
|
28
86
|
Disabled: "Disabled",
|
|
29
87
|
};
|
|
30
88
|
exports.IdentityType = {
|
|
89
|
+
/**
|
|
90
|
+
* SystemAssigned
|
|
91
|
+
*/
|
|
31
92
|
SystemAssigned: "SystemAssigned",
|
|
93
|
+
/**
|
|
94
|
+
* UserAssigned
|
|
95
|
+
*/
|
|
32
96
|
UserAssigned: "UserAssigned",
|
|
33
97
|
};
|
|
34
98
|
exports.InitialType = {
|
|
99
|
+
/**
|
|
100
|
+
* HiveMetastore
|
|
101
|
+
*/
|
|
35
102
|
HiveMetastore: "HiveMetastore",
|
|
103
|
+
/**
|
|
104
|
+
* UnityCatalog
|
|
105
|
+
*/
|
|
36
106
|
UnityCatalog: "UnityCatalog",
|
|
37
107
|
};
|
|
38
108
|
exports.KeySource = {
|
|
109
|
+
/**
|
|
110
|
+
* Default
|
|
111
|
+
*/
|
|
39
112
|
Default: "Default",
|
|
113
|
+
/**
|
|
114
|
+
* Microsoft.Keyvault
|
|
115
|
+
*/
|
|
40
116
|
Microsoft_Keyvault: "Microsoft.Keyvault",
|
|
41
117
|
};
|
|
42
118
|
exports.ManagedServiceIdentityType = {
|
|
@@ -46,18 +122,45 @@ exports.ManagedServiceIdentityType = {
|
|
|
46
122
|
SystemAssigned_UserAssigned: "SystemAssigned,UserAssigned",
|
|
47
123
|
};
|
|
48
124
|
exports.PrivateLinkServiceConnectionStatus = {
|
|
125
|
+
/**
|
|
126
|
+
* Pending
|
|
127
|
+
*/
|
|
49
128
|
Pending: "Pending",
|
|
129
|
+
/**
|
|
130
|
+
* Approved
|
|
131
|
+
*/
|
|
50
132
|
Approved: "Approved",
|
|
133
|
+
/**
|
|
134
|
+
* Rejected
|
|
135
|
+
*/
|
|
51
136
|
Rejected: "Rejected",
|
|
137
|
+
/**
|
|
138
|
+
* Disconnected
|
|
139
|
+
*/
|
|
52
140
|
Disconnected: "Disconnected",
|
|
53
141
|
};
|
|
54
142
|
exports.PublicNetworkAccess = {
|
|
143
|
+
/**
|
|
144
|
+
* Enabled
|
|
145
|
+
*/
|
|
55
146
|
Enabled: "Enabled",
|
|
147
|
+
/**
|
|
148
|
+
* Disabled
|
|
149
|
+
*/
|
|
56
150
|
Disabled: "Disabled",
|
|
57
151
|
};
|
|
58
152
|
exports.RequiredNsgRules = {
|
|
153
|
+
/**
|
|
154
|
+
* AllRules
|
|
155
|
+
*/
|
|
59
156
|
AllRules: "AllRules",
|
|
157
|
+
/**
|
|
158
|
+
* NoAzureDatabricksRules
|
|
159
|
+
*/
|
|
60
160
|
NoAzureDatabricksRules: "NoAzureDatabricksRules",
|
|
161
|
+
/**
|
|
162
|
+
* NoAzureServiceRules
|
|
163
|
+
*/
|
|
61
164
|
NoAzureServiceRules: "NoAzureServiceRules",
|
|
62
165
|
};
|
|
63
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
166
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90eXBlcy9lbnVtcy9kYXRhYnJpY2tzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7QUFHcEUsUUFBQSwyQkFBMkIsR0FBRztJQUN2Qzs7T0FFRztJQUNILE9BQU8sRUFBRSxTQUFTO0lBQ2xCOztPQUVHO0lBQ0gsUUFBUSxFQUFFLFVBQVU7Q0FDZCxDQUFDO0FBSUUsUUFBQSw4QkFBOEIsR0FBRztJQUMxQzs7T0FFRztJQUNILE9BQU8sRUFBRSxTQUFTO0lBQ2xCOztPQUVHO0lBQ0gsUUFBUSxFQUFFLFVBQVU7Q0FDZCxDQUFDO0FBSUUsUUFBQSxrQkFBa0IsR0FBRztJQUM5QixJQUFJLEVBQUUsTUFBTTtJQUNaLEtBQUssRUFBRSxPQUFPO0lBQ2QsT0FBTyxFQUFFLFNBQVM7SUFDbEIsb0JBQW9CLEVBQUUsc0JBQXNCO0lBQzVDLFlBQVksRUFBRSxjQUFjO0lBQzVCLGtCQUFrQixFQUFFLG9CQUFvQjtJQUN4QyxjQUFjLEVBQUUsZ0JBQWdCO0lBQ2hDLEtBQUssRUFBRSxPQUFPO0lBQ2QsT0FBTyxFQUFFLFNBQVM7SUFDbEIsS0FBSyxFQUFFLE9BQU87Q0FDUixDQUFDO0FBT0UsUUFBQSxXQUFXLEdBQUc7SUFDdkI7O09BRUc7SUFDSCxVQUFVLEVBQUUsWUFBWTtJQUN4Qjs7T0FFRztJQUNILE1BQU0sRUFBRSxRQUFRO0NBQ1YsQ0FBQztBQU9FLFFBQUEsbUJBQW1CLEdBQUc7SUFDL0I7O09BRUc7SUFDSCxJQUFJLEVBQUUsTUFBTTtJQUNaOztPQUVHO0lBQ0gsTUFBTSxFQUFFLFFBQVE7SUFDaEI7O09BRUc7SUFDSCxNQUFNLEVBQUUsUUFBUTtDQUNWLENBQUM7QUFPRSxRQUFBLHNCQUFzQixHQUFHO0lBQ2xDOztPQUVHO0lBQ0gsUUFBUSxFQUFFLFVBQVU7SUFDcEI7O09BRUc7SUFDSCxPQUFPLEVBQUUsU0FBUztDQUNaLENBQUM7QUFPRSxRQUFBLG1CQUFtQixHQUFHO0lBQy9COztPQUVHO0lBQ0gsa0JBQWtCLEVBQUUsb0JBQW9CO0NBQ2xDLENBQUM7QUFPRSxRQUFBLCtCQUErQixHQUFHO0lBQzNDOztPQUVHO0lBQ0gsT0FBTyxFQUFFLFNBQVM7SUFDbEI7O09BRUc7SUFDSCxRQUFRLEVBQUUsVUFBVTtDQUNkLENBQUM7QUFJRSxRQUFBLFlBQVksR0FBRztJQUN4Qjs7T0FFRztJQUNILGNBQWMsRUFBRSxnQkFBZ0I7SUFDaEM7O09BRUc7SUFDSCxZQUFZLEVBQUUsY0FBYztDQUN0QixDQUFDO0FBT0UsUUFBQSxXQUFXLEdBQUc7SUFDdkI7O09BRUc7SUFDSCxhQUFhLEVBQUUsZUFBZTtJQUM5Qjs7T0FFRztJQUNILFlBQVksRUFBRSxjQUFjO0NBQ3RCLENBQUM7QUFPRSxRQUFBLFNBQVMsR0FBRztJQUNyQjs7T0FFRztJQUNILE9BQU8sRUFBRSxTQUFTO0lBQ2xCOztPQUVHO0lBQ0gsa0JBQWtCLEVBQUUsb0JBQW9CO0NBQ2xDLENBQUM7QUFPRSxRQUFBLDBCQUEwQixHQUFHO0lBQ3RDLElBQUksRUFBRSxNQUFNO0lBQ1osY0FBYyxFQUFFLGdCQUFnQjtJQUNoQyxZQUFZLEVBQUUsY0FBYztJQUM1QiwyQkFBMkIsRUFBRSw2QkFBNkI7Q0FDcEQsQ0FBQztBQU9FLFFBQUEsa0NBQWtDLEdBQUc7SUFDOUM7O09BRUc7SUFDSCxPQUFPLEVBQUUsU0FBUztJQUNsQjs7T0FFRztJQUNILFFBQVEsRUFBRSxVQUFVO0lBQ3BCOztPQUVHO0lBQ0gsUUFBUSxFQUFFLFVBQVU7SUFDcEI7O09BRUc7SUFDSCxZQUFZLEVBQUUsY0FBYztDQUN0QixDQUFDO0FBT0UsUUFBQSxtQkFBbUIsR0FBRztJQUMvQjs7T0FFRztJQUNILE9BQU8sRUFBRSxTQUFTO0lBQ2xCOztPQUVHO0lBQ0gsUUFBUSxFQUFFLFVBQVU7Q0FDZCxDQUFDO0FBT0UsUUFBQSxnQkFBZ0IsR0FBRztJQUM1Qjs7T0FFRztJQUNILFFBQVEsRUFBRSxVQUFVO0lBQ3BCOztPQUVHO0lBQ0gsc0JBQXNCLEVBQUUsd0JBQXdCO0lBQ2hEOztPQUVHO0lBQ0gsbUJBQW1CLEVBQUUscUJBQXFCO0NBQ3BDLENBQUMifQ==
|
package/types/input.d.ts
CHANGED
|
@@ -62221,7 +62221,7 @@ export declare namespace databricks {
|
|
|
62221
62221
|
value?: pulumi.Input<string | enums.databricks.ComplianceSecurityProfileValue>;
|
|
62222
62222
|
}
|
|
62223
62223
|
/**
|
|
62224
|
-
* These properties lets user specify default catalog properties during workspace creation.
|
|
62224
|
+
* These properties lets user specify default catalog properties during workspace creation. Not allowed in Serverless ComputeMode workspace.
|
|
62225
62225
|
*/
|
|
62226
62226
|
interface DefaultCatalogPropertiesArgs {
|
|
62227
62227
|
/**
|
|
@@ -62267,11 +62267,11 @@ export declare namespace databricks {
|
|
|
62267
62267
|
*/
|
|
62268
62268
|
interface EncryptionEntitiesDefinitionArgs {
|
|
62269
62269
|
/**
|
|
62270
|
-
* Encryption properties for the databricks managed disks.
|
|
62270
|
+
* Encryption properties for the databricks managed disks. Not allowed in Serverless ComputeMode workspace.
|
|
62271
62271
|
*/
|
|
62272
62272
|
managedDisk?: pulumi.Input<inputs.databricks.ManagedDiskEncryptionArgs>;
|
|
62273
62273
|
/**
|
|
62274
|
-
* Encryption properties for the databricks managed services.
|
|
62274
|
+
* Encryption properties for the databricks managed services. Supported in both Serverless and Hybrid ComputeMode.
|
|
62275
62275
|
*/
|
|
62276
62276
|
managedServices?: pulumi.Input<inputs.databricks.EncryptionV2Args>;
|
|
62277
62277
|
}
|
|
@@ -62333,7 +62333,7 @@ export declare namespace databricks {
|
|
|
62333
62333
|
*/
|
|
62334
62334
|
interface ManagedDiskEncryptionArgs {
|
|
62335
62335
|
/**
|
|
62336
|
-
* The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Keyvault
|
|
62336
|
+
* The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Keyvault. Not allowed in Serverless ComputeMode workspace.
|
|
62337
62337
|
*/
|
|
62338
62338
|
keySource: pulumi.Input<string | enums.databricks.EncryptionKeySource>;
|
|
62339
62339
|
/**
|
|
@@ -62376,7 +62376,7 @@ export declare namespace databricks {
|
|
|
62376
62376
|
userAssignedIdentities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
62377
62377
|
}
|
|
62378
62378
|
/**
|
|
62379
|
-
* The properties of a private endpoint connection
|
|
62379
|
+
* The properties of a private endpoint connection.
|
|
62380
62380
|
*/
|
|
62381
62381
|
interface PrivateEndpointConnectionPropertiesArgs {
|
|
62382
62382
|
/**
|
|
@@ -62389,7 +62389,7 @@ export declare namespace databricks {
|
|
|
62389
62389
|
privateLinkServiceConnectionState: pulumi.Input<inputs.databricks.PrivateLinkServiceConnectionStateArgs>;
|
|
62390
62390
|
}
|
|
62391
62391
|
/**
|
|
62392
|
-
* The current state of a private endpoint connection
|
|
62392
|
+
* The current state of a private endpoint connection.
|
|
62393
62393
|
*/
|
|
62394
62394
|
interface PrivateLinkServiceConnectionStateArgs {
|
|
62395
62395
|
/**
|
|
@@ -62419,7 +62419,7 @@ export declare namespace databricks {
|
|
|
62419
62419
|
tier?: pulumi.Input<string>;
|
|
62420
62420
|
}
|
|
62421
62421
|
/**
|
|
62422
|
-
*
|
|
62422
|
+
* The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
|
|
62423
62423
|
*/
|
|
62424
62424
|
interface VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkArgs {
|
|
62425
62425
|
/**
|
|
@@ -62428,7 +62428,7 @@ export declare namespace databricks {
|
|
|
62428
62428
|
id?: pulumi.Input<string>;
|
|
62429
62429
|
}
|
|
62430
62430
|
/**
|
|
62431
|
-
*
|
|
62431
|
+
* The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
|
|
62432
62432
|
*/
|
|
62433
62433
|
interface VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs {
|
|
62434
62434
|
/**
|
|
@@ -62440,73 +62440,77 @@ export declare namespace databricks {
|
|
|
62440
62440
|
* The value which should be used for this field.
|
|
62441
62441
|
*/
|
|
62442
62442
|
interface WorkspaceCustomBooleanParameterArgs {
|
|
62443
|
+
/**
|
|
62444
|
+
* The type of variable that this is
|
|
62445
|
+
*/
|
|
62446
|
+
type?: pulumi.Input<string | enums.databricks.CustomParameterType>;
|
|
62443
62447
|
/**
|
|
62444
62448
|
* The value which should be used for this field.
|
|
62445
62449
|
*/
|
|
62446
62450
|
value: pulumi.Input<boolean>;
|
|
62447
62451
|
}
|
|
62448
62452
|
/**
|
|
62449
|
-
* Custom Parameters used for
|
|
62453
|
+
* Custom Parameters used for Workspace Creation. Not allowed in Serverless ComputeMode workspace.
|
|
62450
62454
|
*/
|
|
62451
62455
|
interface WorkspaceCustomParametersArgs {
|
|
62452
62456
|
/**
|
|
62453
|
-
* The ID of a Azure Machine Learning workspace to link with Databricks workspace
|
|
62457
|
+
* The ID of a Azure Machine Learning workspace to link with Databricks workspace. Not allowed in Serverless ComputeMode workspace.
|
|
62454
62458
|
*/
|
|
62455
62459
|
amlWorkspaceId?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62456
62460
|
/**
|
|
62457
|
-
* The name of the Private Subnet within the Virtual Network
|
|
62461
|
+
* The name of the Private Subnet within the Virtual Network. Not allowed in Serverless ComputeMode workspace.
|
|
62458
62462
|
*/
|
|
62459
62463
|
customPrivateSubnetName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62460
62464
|
/**
|
|
62461
|
-
* The name of a Public Subnet within the Virtual Network
|
|
62465
|
+
* The name of a Public Subnet within the Virtual Network. Not allowed in Serverless ComputeMode workspace.
|
|
62462
62466
|
*/
|
|
62463
62467
|
customPublicSubnetName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62464
62468
|
/**
|
|
62465
|
-
* The ID of a Virtual Network where this Databricks Cluster should be created
|
|
62469
|
+
* The ID of a Virtual Network where this Databricks Cluster should be created. Not allowed in Serverless ComputeMode workspace.
|
|
62466
62470
|
*/
|
|
62467
62471
|
customVirtualNetworkId?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62468
62472
|
/**
|
|
62469
|
-
* Boolean indicating whether the public IP should be disabled. Default value is true
|
|
62473
|
+
* Boolean indicating whether the public IP should be disabled. Default value is true. Not allowed in Serverless ComputeMode workspace.
|
|
62470
62474
|
*/
|
|
62471
62475
|
enableNoPublicIp?: pulumi.Input<inputs.databricks.WorkspaceNoPublicIPBooleanParameterArgs>;
|
|
62472
62476
|
/**
|
|
62473
|
-
* Contains the encryption details for Customer-Managed Key (CMK) enabled workspace.
|
|
62477
|
+
* Contains the encryption details for Customer-Managed Key (CMK) enabled workspace.Not allowed in Serverless ComputeMode workspace.
|
|
62474
62478
|
*/
|
|
62475
62479
|
encryption?: pulumi.Input<inputs.databricks.WorkspaceEncryptionParameterArgs>;
|
|
62476
62480
|
/**
|
|
62477
|
-
* Name of the outbound Load Balancer Backend Pool for Secure Cluster Connectivity (No Public IP).
|
|
62481
|
+
* Name of the outbound Load Balancer Backend Pool for Secure Cluster Connectivity (No Public IP). Not allowed in Serverless ComputeMode workspace.
|
|
62478
62482
|
*/
|
|
62479
62483
|
loadBalancerBackendPoolName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62480
62484
|
/**
|
|
62481
|
-
* Resource URI of Outbound Load balancer for Secure Cluster Connectivity (No Public IP) workspace.
|
|
62485
|
+
* Resource URI of Outbound Load balancer for Secure Cluster Connectivity (No Public IP) workspace. Not allowed in Serverless ComputeMode workspace.
|
|
62482
62486
|
*/
|
|
62483
62487
|
loadBalancerId?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62484
62488
|
/**
|
|
62485
|
-
* Name of the NAT gateway for Secure Cluster Connectivity (No Public IP) workspace subnets.
|
|
62489
|
+
* Name of the NAT gateway for Secure Cluster Connectivity (No Public IP) workspace subnets. Not allowed in Serverless ComputeMode workspace.
|
|
62486
62490
|
*/
|
|
62487
62491
|
natGatewayName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62488
62492
|
/**
|
|
62489
|
-
* Prepare the workspace for encryption. Enables the Managed Identity for managed storage account.
|
|
62493
|
+
* Prepare the workspace for encryption. Enables the Managed Identity for managed storage account. Not allowed in Serverless ComputeMode workspace.
|
|
62490
62494
|
*/
|
|
62491
62495
|
prepareEncryption?: pulumi.Input<inputs.databricks.WorkspaceCustomBooleanParameterArgs>;
|
|
62492
62496
|
/**
|
|
62493
|
-
* Name of the Public IP for No Public IP workspace with managed vNet.
|
|
62497
|
+
* Name of the Public IP for No Public IP workspace with managed vNet. Not allowed in Serverless ComputeMode workspace.
|
|
62494
62498
|
*/
|
|
62495
62499
|
publicIpName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62496
62500
|
/**
|
|
62497
|
-
* A boolean indicating whether or not the DBFS root file system will be enabled with secondary layer of encryption with platform managed keys for data at rest.
|
|
62501
|
+
* A boolean indicating whether or not the DBFS root file system will be enabled with secondary layer of encryption with platform managed keys for data at rest. Not allowed in Serverless ComputeMode workspace.
|
|
62498
62502
|
*/
|
|
62499
62503
|
requireInfrastructureEncryption?: pulumi.Input<inputs.databricks.WorkspaceCustomBooleanParameterArgs>;
|
|
62500
62504
|
/**
|
|
62501
|
-
* Default DBFS storage account name.
|
|
62505
|
+
* Default DBFS storage account name. Not allowed in Serverless ComputeMode workspace.
|
|
62502
62506
|
*/
|
|
62503
62507
|
storageAccountName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62504
62508
|
/**
|
|
62505
|
-
* Storage account SKU name, ex: Standard_GRS, Standard_LRS. Refer https://aka.ms/storageskus for valid inputs.
|
|
62509
|
+
* Storage account SKU name, ex: Standard_GRS, Standard_LRS. Refer https://aka.ms/storageskus for valid inputs. Not allowed in Serverless ComputeMode workspace.
|
|
62506
62510
|
*/
|
|
62507
62511
|
storageAccountSkuName?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62508
62512
|
/**
|
|
62509
|
-
* Address prefix for Managed virtual network. Default value for this input is 10.139.
|
|
62513
|
+
* Address prefix for Managed virtual network. Default value for this input is 10.139. Not allowed in Serverless ComputeMode workspace.
|
|
62510
62514
|
*/
|
|
62511
62515
|
vnetAddressPrefix?: pulumi.Input<inputs.databricks.WorkspaceCustomStringParameterArgs>;
|
|
62512
62516
|
}
|
|
@@ -62518,6 +62522,10 @@ export declare namespace databricks {
|
|
|
62518
62522
|
* The Value.
|
|
62519
62523
|
*/
|
|
62520
62524
|
interface WorkspaceCustomStringParameterArgs {
|
|
62525
|
+
/**
|
|
62526
|
+
* The type of variable that this is
|
|
62527
|
+
*/
|
|
62528
|
+
type?: pulumi.Input<string | enums.databricks.CustomParameterType>;
|
|
62521
62529
|
/**
|
|
62522
62530
|
* The value which should be used for this field.
|
|
62523
62531
|
*/
|
|
@@ -62527,6 +62535,10 @@ export declare namespace databricks {
|
|
|
62527
62535
|
* The object that contains details of encryption used on the workspace.
|
|
62528
62536
|
*/
|
|
62529
62537
|
interface WorkspaceEncryptionParameterArgs {
|
|
62538
|
+
/**
|
|
62539
|
+
* The type of variable that this is
|
|
62540
|
+
*/
|
|
62541
|
+
type?: pulumi.Input<string | enums.databricks.CustomParameterType>;
|
|
62530
62542
|
/**
|
|
62531
62543
|
* The value which should be used for this field.
|
|
62532
62544
|
*/
|
|
@@ -62540,13 +62552,17 @@ export declare namespace databricks {
|
|
|
62540
62552
|
* The value which should be used for this field.
|
|
62541
62553
|
*/
|
|
62542
62554
|
interface WorkspaceNoPublicIPBooleanParameterArgs {
|
|
62555
|
+
/**
|
|
62556
|
+
* The type of variable that this is
|
|
62557
|
+
*/
|
|
62558
|
+
type?: pulumi.Input<string | enums.databricks.CustomParameterType>;
|
|
62543
62559
|
/**
|
|
62544
62560
|
* The value which should be used for this field.
|
|
62545
62561
|
*/
|
|
62546
62562
|
value: pulumi.Input<boolean>;
|
|
62547
62563
|
}
|
|
62548
62564
|
/**
|
|
62549
|
-
* Access Connector Resource that is going to be associated with Databricks Workspace
|
|
62565
|
+
* Access Connector Resource that is going to be associated with Databricks Workspace. Not allowed in Serverless ComputeMode workspace.
|
|
62550
62566
|
*/
|
|
62551
62567
|
interface WorkspacePropertiesAccessConnectorArgs {
|
|
62552
62568
|
/**
|
|
@@ -62563,7 +62579,7 @@ export declare namespace databricks {
|
|
|
62563
62579
|
userAssignedIdentityId?: pulumi.Input<string>;
|
|
62564
62580
|
}
|
|
62565
62581
|
/**
|
|
62566
|
-
* Encryption properties for databricks workspace
|
|
62582
|
+
* Encryption properties for databricks workspace. Supported in both Serverless and Hybrid ComputeMode workspace.
|
|
62567
62583
|
*/
|
|
62568
62584
|
interface WorkspacePropertiesEncryptionArgs {
|
|
62569
62585
|
/**
|