@pulumi/azure-native 3.22.0 → 3.23.0-alpha.1784339834
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
|
@@ -4,9 +4,9 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Information about Azure Databricks Access Connector.
|
|
6
6
|
*
|
|
7
|
-
* Uses Azure REST API version
|
|
7
|
+
* Uses Azure REST API version 2026-01-01. In version 2.x of the Azure Native provider, it used API version 2023-05-01.
|
|
8
8
|
*
|
|
9
|
-
* Other available API versions: 2023-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
9
|
+
* Other available API versions: 2023-05-01, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
10
10
|
*/
|
|
11
11
|
export declare class AccessConnector extends pulumi.CustomResource {
|
|
12
12
|
/**
|
|
@@ -28,7 +28,7 @@ export declare class AccessConnector extends pulumi.CustomResource {
|
|
|
28
28
|
*/
|
|
29
29
|
readonly azureApiVersion: pulumi.Output<string>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* The managed service identities assigned to this resource.
|
|
32
32
|
*/
|
|
33
33
|
readonly identity: pulumi.Output<outputs.databricks.ManagedServiceIdentityResponse | undefined>;
|
|
34
34
|
/**
|
|
@@ -44,7 +44,7 @@ export declare class AccessConnector extends pulumi.CustomResource {
|
|
|
44
44
|
*/
|
|
45
45
|
readonly properties: pulumi.Output<outputs.databricks.AccessConnectorPropertiesResponse>;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
48
48
|
*/
|
|
49
49
|
readonly systemData: pulumi.Output<outputs.databricks.SystemDataResponse>;
|
|
50
50
|
/**
|
|
@@ -54,7 +54,7 @@ export declare class AccessConnector extends pulumi.CustomResource {
|
|
|
54
54
|
[key: string]: string;
|
|
55
55
|
} | undefined>;
|
|
56
56
|
/**
|
|
57
|
-
* The type of the resource.
|
|
57
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
58
58
|
*/
|
|
59
59
|
readonly type: pulumi.Output<string>;
|
|
60
60
|
/**
|
|
@@ -75,7 +75,7 @@ export interface AccessConnectorArgs {
|
|
|
75
75
|
*/
|
|
76
76
|
connectorName?: pulumi.Input<string>;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* The managed service identities assigned to this resource.
|
|
79
79
|
*/
|
|
80
80
|
identity?: pulumi.Input<inputs.databricks.ManagedServiceIdentityArgs>;
|
|
81
81
|
/**
|
|
@@ -31,9 +31,9 @@ const utilities = __importStar(require("../utilities"));
|
|
|
31
31
|
/**
|
|
32
32
|
* Information about Azure Databricks Access Connector.
|
|
33
33
|
*
|
|
34
|
-
* Uses Azure REST API version
|
|
34
|
+
* Uses Azure REST API version 2026-01-01. In version 2.x of the Azure Native provider, it used API version 2023-05-01.
|
|
35
35
|
*
|
|
36
|
-
* Other available API versions: 2023-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
36
|
+
* Other available API versions: 2023-05-01, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
37
37
|
*/
|
|
38
38
|
class AccessConnector extends pulumi.CustomResource {
|
|
39
39
|
/**
|
|
@@ -3,9 +3,9 @@ import * as outputs from "../types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* Gets an Azure Databricks Access Connector.
|
|
5
5
|
*
|
|
6
|
-
* Uses Azure REST API version
|
|
6
|
+
* Uses Azure REST API version 2026-01-01.
|
|
7
7
|
*
|
|
8
|
-
* Other available API versions: 2023-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
8
|
+
* Other available API versions: 2023-05-01, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
9
9
|
*/
|
|
10
10
|
export declare function getAccessConnector(args: GetAccessConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetAccessConnectorResult>;
|
|
11
11
|
export interface GetAccessConnectorArgs {
|
|
@@ -27,11 +27,11 @@ export interface GetAccessConnectorResult {
|
|
|
27
27
|
*/
|
|
28
28
|
readonly azureApiVersion: string;
|
|
29
29
|
/**
|
|
30
|
-
* Fully qualified resource
|
|
30
|
+
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
31
31
|
*/
|
|
32
32
|
readonly id: string;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* The managed service identities assigned to this resource.
|
|
35
35
|
*/
|
|
36
36
|
readonly identity?: outputs.databricks.ManagedServiceIdentityResponse;
|
|
37
37
|
/**
|
|
@@ -47,7 +47,7 @@ export interface GetAccessConnectorResult {
|
|
|
47
47
|
*/
|
|
48
48
|
readonly properties: outputs.databricks.AccessConnectorPropertiesResponse;
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
51
51
|
*/
|
|
52
52
|
readonly systemData: outputs.databricks.SystemDataResponse;
|
|
53
53
|
/**
|
|
@@ -57,16 +57,16 @@ export interface GetAccessConnectorResult {
|
|
|
57
57
|
[key: string]: string;
|
|
58
58
|
};
|
|
59
59
|
/**
|
|
60
|
-
* The type of the resource.
|
|
60
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
61
61
|
*/
|
|
62
62
|
readonly type: string;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* Gets an Azure Databricks Access Connector.
|
|
66
66
|
*
|
|
67
|
-
* Uses Azure REST API version
|
|
67
|
+
* Uses Azure REST API version 2026-01-01.
|
|
68
68
|
*
|
|
69
|
-
* Other available API versions: 2023-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
69
|
+
* Other available API versions: 2023-05-01, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
70
70
|
*/
|
|
71
71
|
export declare function getAccessConnectorOutput(args: GetAccessConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccessConnectorResult>;
|
|
72
72
|
export interface GetAccessConnectorOutputArgs {
|
|
@@ -31,9 +31,9 @@ const utilities = __importStar(require("../utilities"));
|
|
|
31
31
|
/**
|
|
32
32
|
* Gets an Azure Databricks Access Connector.
|
|
33
33
|
*
|
|
34
|
-
* Uses Azure REST API version
|
|
34
|
+
* Uses Azure REST API version 2026-01-01.
|
|
35
35
|
*
|
|
36
|
-
* Other available API versions: 2023-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
36
|
+
* Other available API versions: 2023-05-01, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
37
37
|
*/
|
|
38
38
|
function getAccessConnector(args, opts) {
|
|
39
39
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -46,9 +46,9 @@ exports.getAccessConnector = getAccessConnector;
|
|
|
46
46
|
/**
|
|
47
47
|
* Gets an Azure Databricks Access Connector.
|
|
48
48
|
*
|
|
49
|
-
* Uses Azure REST API version
|
|
49
|
+
* Uses Azure REST API version 2026-01-01.
|
|
50
50
|
*
|
|
51
|
-
* Other available API versions: 2023-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
51
|
+
* Other available API versions: 2023-05-01, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
52
52
|
*/
|
|
53
53
|
function getAccessConnectorOutput(args, opts) {
|
|
54
54
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -3,9 +3,9 @@ import * as outputs from "../types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* Get a private endpoint connection properties for a workspace
|
|
5
5
|
*
|
|
6
|
-
* Uses Azure REST API version
|
|
6
|
+
* Uses Azure REST API version 2026-01-01.
|
|
7
7
|
*
|
|
8
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
8
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
9
9
|
*/
|
|
10
10
|
export declare function getPrivateEndpointConnection(args: GetPrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionResult>;
|
|
11
11
|
export interface GetPrivateEndpointConnectionArgs {
|
|
@@ -23,7 +23,7 @@ export interface GetPrivateEndpointConnectionArgs {
|
|
|
23
23
|
workspaceName: string;
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
|
-
* The private endpoint connection of a workspace
|
|
26
|
+
* The private endpoint connection of a workspace.
|
|
27
27
|
*/
|
|
28
28
|
export interface GetPrivateEndpointConnectionResult {
|
|
29
29
|
/**
|
|
@@ -31,11 +31,11 @@ export interface GetPrivateEndpointConnectionResult {
|
|
|
31
31
|
*/
|
|
32
32
|
readonly azureApiVersion: string;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
35
35
|
*/
|
|
36
36
|
readonly id: string;
|
|
37
37
|
/**
|
|
38
|
-
* The resource
|
|
38
|
+
* The name of the resource
|
|
39
39
|
*/
|
|
40
40
|
readonly name: string;
|
|
41
41
|
/**
|
|
@@ -43,16 +43,20 @@ export interface GetPrivateEndpointConnectionResult {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly properties: outputs.databricks.PrivateEndpointConnectionPropertiesResponse;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
47
|
+
*/
|
|
48
|
+
readonly systemData: outputs.databricks.SystemDataResponse;
|
|
49
|
+
/**
|
|
50
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
47
51
|
*/
|
|
48
52
|
readonly type: string;
|
|
49
53
|
}
|
|
50
54
|
/**
|
|
51
55
|
* Get a private endpoint connection properties for a workspace
|
|
52
56
|
*
|
|
53
|
-
* Uses Azure REST API version
|
|
57
|
+
* Uses Azure REST API version 2026-01-01.
|
|
54
58
|
*
|
|
55
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
59
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
56
60
|
*/
|
|
57
61
|
export declare function getPrivateEndpointConnectionOutput(args: GetPrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionResult>;
|
|
58
62
|
export interface GetPrivateEndpointConnectionOutputArgs {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPrivateEndpointConnection.d.ts","sourceRoot":"","sources":["../../databricks/getPrivateEndpointConnection.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,kCAAkC,CAAC,CAO7J;AAED,MAAM,WAAW,gCAAgC;IAC7C;;OAEG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;IACpF;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACzB;AACD;;;;;;GAMG;AACH,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,sCAAsC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,kCAAkC,CAAC,CAOrL;AAED,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,6BAA6B,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
1
|
+
{"version":3,"file":"getPrivateEndpointConnection.d.ts","sourceRoot":"","sources":["../../databricks/getPrivateEndpointConnection.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,kCAAkC,CAAC,CAO7J;AAED,MAAM,WAAW,gCAAgC;IAC7C;;OAEG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;IACpF;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC;IAC3D;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACzB;AACD;;;;;;GAMG;AACH,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,sCAAsC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,kCAAkC,CAAC,CAOrL;AAED,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,6BAA6B,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
@@ -31,9 +31,9 @@ const utilities = __importStar(require("../utilities"));
|
|
|
31
31
|
/**
|
|
32
32
|
* Get a private endpoint connection properties for a workspace
|
|
33
33
|
*
|
|
34
|
-
* Uses Azure REST API version
|
|
34
|
+
* Uses Azure REST API version 2026-01-01.
|
|
35
35
|
*
|
|
36
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
36
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
37
37
|
*/
|
|
38
38
|
function getPrivateEndpointConnection(args, opts) {
|
|
39
39
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -47,9 +47,9 @@ exports.getPrivateEndpointConnection = getPrivateEndpointConnection;
|
|
|
47
47
|
/**
|
|
48
48
|
* Get a private endpoint connection properties for a workspace
|
|
49
49
|
*
|
|
50
|
-
* Uses Azure REST API version
|
|
50
|
+
* Uses Azure REST API version 2026-01-01.
|
|
51
51
|
*
|
|
52
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
52
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
53
53
|
*/
|
|
54
54
|
function getPrivateEndpointConnectionOutput(args, opts) {
|
|
55
55
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -60,4 +60,4 @@ function getPrivateEndpointConnectionOutput(args, opts) {
|
|
|
60
60
|
}, opts);
|
|
61
61
|
}
|
|
62
62
|
exports.getPrivateEndpointConnectionOutput = getPrivateEndpointConnectionOutput;
|
|
63
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
63
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0UHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2RhdGFicmlja3MvZ2V0UHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsc0VBQXNFO0FBQ3RFLGlGQUFpRjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFakYsdURBQXlDO0FBSXpDLHdEQUEwQztBQUUxQzs7Ozs7O0dBTUc7QUFDSCxTQUFnQiw0QkFBNEIsQ0FBQyxJQUFzQyxFQUFFLElBQTJCO0lBQzVHLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLHNEQUFzRCxFQUFFO1FBQ2pGLCtCQUErQixFQUFFLElBQUksQ0FBQyw2QkFBNkI7UUFDbkUsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxlQUFlLEVBQUUsSUFBSSxDQUFDLGFBQWE7S0FDdEMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCxvRUFPQztBQThDRDs7Ozs7O0dBTUc7QUFDSCxTQUFnQixrQ0FBa0MsQ0FBQyxJQUE0QyxFQUFFLElBQWlDO0lBQzlILElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLHNEQUFzRCxFQUFFO1FBQ3ZGLCtCQUErQixFQUFFLElBQUksQ0FBQyw2QkFBNkI7UUFDbkUsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxlQUFlLEVBQUUsSUFBSSxDQUFDLGFBQWE7S0FDdEMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCxnRkFPQyJ9
|
|
@@ -3,9 +3,9 @@ import * as outputs from "../types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* Gets the workspace vNet Peering.
|
|
5
5
|
*
|
|
6
|
-
* Uses Azure REST API version
|
|
6
|
+
* Uses Azure REST API version 2026-01-01.
|
|
7
7
|
*
|
|
8
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
8
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
9
9
|
*/
|
|
10
10
|
export declare function getVNetPeering(args: GetVNetPeeringArgs, opts?: pulumi.InvokeOptions): Promise<GetVNetPeeringResult>;
|
|
11
11
|
export interface GetVNetPeeringArgs {
|
|
@@ -47,15 +47,15 @@ export interface GetVNetPeeringResult {
|
|
|
47
47
|
*/
|
|
48
48
|
readonly databricksAddressSpace?: outputs.databricks.AddressSpaceResponse;
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* 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).
|
|
51
51
|
*/
|
|
52
|
-
readonly databricksVirtualNetwork?: outputs.databricks.
|
|
52
|
+
readonly databricksVirtualNetwork?: outputs.databricks.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkResponse;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
55
55
|
*/
|
|
56
56
|
readonly id: string;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* The name of the resource
|
|
59
59
|
*/
|
|
60
60
|
readonly name: string;
|
|
61
61
|
/**
|
|
@@ -71,11 +71,15 @@ export interface GetVNetPeeringResult {
|
|
|
71
71
|
*/
|
|
72
72
|
readonly remoteAddressSpace?: outputs.databricks.AddressSpaceResponse;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* 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).
|
|
75
75
|
*/
|
|
76
|
-
readonly remoteVirtualNetwork: outputs.databricks.
|
|
76
|
+
readonly remoteVirtualNetwork: outputs.databricks.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkResponse;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
79
|
+
*/
|
|
80
|
+
readonly systemData: outputs.databricks.SystemDataResponse;
|
|
81
|
+
/**
|
|
82
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
79
83
|
*/
|
|
80
84
|
readonly type: string;
|
|
81
85
|
/**
|
|
@@ -86,9 +90,9 @@ export interface GetVNetPeeringResult {
|
|
|
86
90
|
/**
|
|
87
91
|
* Gets the workspace vNet Peering.
|
|
88
92
|
*
|
|
89
|
-
* Uses Azure REST API version
|
|
93
|
+
* Uses Azure REST API version 2026-01-01.
|
|
90
94
|
*
|
|
91
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
95
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
92
96
|
*/
|
|
93
97
|
export declare function getVNetPeeringOutput(args: GetVNetPeeringOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVNetPeeringResult>;
|
|
94
98
|
export interface GetVNetPeeringOutputArgs {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVNetPeering.d.ts","sourceRoot":"","sources":["../../databricks/getVNetPeering.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,kBAAkB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAOnH;AAED,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IACzC;;OAEG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IACvC;;OAEG;IACH,QAAQ,CAAC,yBAAyB,CAAC,EAAE,OAAO,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,sBAAsB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC;IAC1E;;OAEG;IACH,QAAQ,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,qEAAqE,CAAC;IAC7H;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC;IACtE;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,OAAO,CAAC,UAAU,CAAC,iEAAiE,CAAC;IACpH;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,OAAO,CAAC;CACxC;AACD;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,wBAAwB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAO3I;AAED,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAClC;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
1
|
+
{"version":3,"file":"getVNetPeering.d.ts","sourceRoot":"","sources":["../../databricks/getVNetPeering.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,kBAAkB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAOnH;AAED,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IACzC;;OAEG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IACvC;;OAEG;IACH,QAAQ,CAAC,yBAAyB,CAAC,EAAE,OAAO,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,sBAAsB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC;IAC1E;;OAEG;IACH,QAAQ,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,qEAAqE,CAAC;IAC7H;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC;IACtE;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,OAAO,CAAC,UAAU,CAAC,iEAAiE,CAAC;IACpH;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC;IAC3D;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,OAAO,CAAC;CACxC;AACD;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,wBAAwB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAO3I;AAED,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAClC;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
@@ -31,9 +31,9 @@ const utilities = __importStar(require("../utilities"));
|
|
|
31
31
|
/**
|
|
32
32
|
* Gets the workspace vNet Peering.
|
|
33
33
|
*
|
|
34
|
-
* Uses Azure REST API version
|
|
34
|
+
* Uses Azure REST API version 2026-01-01.
|
|
35
35
|
*
|
|
36
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
36
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
37
37
|
*/
|
|
38
38
|
function getVNetPeering(args, opts) {
|
|
39
39
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -47,9 +47,9 @@ exports.getVNetPeering = getVNetPeering;
|
|
|
47
47
|
/**
|
|
48
48
|
* Gets the workspace vNet Peering.
|
|
49
49
|
*
|
|
50
|
-
* Uses Azure REST API version
|
|
50
|
+
* Uses Azure REST API version 2026-01-01.
|
|
51
51
|
*
|
|
52
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
52
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
53
53
|
*/
|
|
54
54
|
function getVNetPeeringOutput(args, opts) {
|
|
55
55
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -60,4 +60,4 @@ function getVNetPeeringOutput(args, opts) {
|
|
|
60
60
|
}, opts);
|
|
61
61
|
}
|
|
62
62
|
exports.getVNetPeeringOutput = getVNetPeeringOutput;
|
|
63
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
63
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Vk5ldFBlZXJpbmcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9kYXRhYnJpY2tzL2dldFZOZXRQZWVyaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVqRix1REFBeUM7QUFJekMsd0RBQTBDO0FBRTFDOzs7Ozs7R0FNRztBQUNILFNBQWdCLGNBQWMsQ0FBQyxJQUF3QixFQUFFLElBQTJCO0lBQ2hGLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLHdDQUF3QyxFQUFFO1FBQ25FLGFBQWEsRUFBRSxJQUFJLENBQUMsV0FBVztRQUMvQixtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLGVBQWUsRUFBRSxJQUFJLENBQUMsYUFBYTtLQUN0QyxFQUFFLElBQUksQ0FBQyxDQUFDO0FBQ2IsQ0FBQztBQVBELHdDQU9DO0FBa0ZEOzs7Ozs7R0FNRztBQUNILFNBQWdCLG9CQUFvQixDQUFDLElBQThCLEVBQUUsSUFBaUM7SUFDbEcsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3pFLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsd0NBQXdDLEVBQUU7UUFDekUsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXO1FBQy9CLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsZUFBZSxFQUFFLElBQUksQ0FBQyxhQUFhO0tBQ3RDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUEQsb0RBT0MifQ==
|
|
@@ -3,9 +3,9 @@ import * as outputs from "../types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* Gets the workspace.
|
|
5
5
|
*
|
|
6
|
-
* Uses Azure REST API version
|
|
6
|
+
* Uses Azure REST API version 2026-01-01.
|
|
7
7
|
*
|
|
8
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
8
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
9
9
|
*/
|
|
10
10
|
export declare function getWorkspace(args: GetWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkspaceResult>;
|
|
11
11
|
export interface GetWorkspaceArgs {
|
|
@@ -23,9 +23,9 @@ export interface GetWorkspaceArgs {
|
|
|
23
23
|
*/
|
|
24
24
|
export interface GetWorkspaceResult {
|
|
25
25
|
/**
|
|
26
|
-
* Access Connector Resource that is going to be associated with Databricks Workspace
|
|
26
|
+
* Access Connector Resource that is going to be associated with Databricks Workspace. Not allowed in Serverless ComputeMode workspace.
|
|
27
27
|
*/
|
|
28
|
-
readonly accessConnector?: outputs.databricks.
|
|
28
|
+
readonly accessConnector?: outputs.databricks.WorkspacePropertiesAccessConnectorResponse;
|
|
29
29
|
/**
|
|
30
30
|
* The workspace provider authorizations.
|
|
31
31
|
*/
|
|
@@ -34,6 +34,10 @@ export interface GetWorkspaceResult {
|
|
|
34
34
|
* The Azure API version of the resource.
|
|
35
35
|
*/
|
|
36
36
|
readonly azureApiVersion: string;
|
|
37
|
+
/**
|
|
38
|
+
* The workspace compute mode. Required on create, cannot be changed. Possible values include: 'Serverless', 'Hybrid'
|
|
39
|
+
*/
|
|
40
|
+
readonly computeMode: string;
|
|
37
41
|
/**
|
|
38
42
|
* Indicates the Object ID, PUID and Application ID of entity that created the workspace.
|
|
39
43
|
*/
|
|
@@ -43,31 +47,31 @@ export interface GetWorkspaceResult {
|
|
|
43
47
|
*/
|
|
44
48
|
readonly createdDateTime: string;
|
|
45
49
|
/**
|
|
46
|
-
* Properties for Default Catalog configuration during workspace creation.
|
|
50
|
+
* Properties for Default Catalog configuration during workspace creation. Not allowed in Serverless ComputeMode workspace.
|
|
47
51
|
*/
|
|
48
52
|
readonly defaultCatalog?: outputs.databricks.DefaultCatalogPropertiesResponse;
|
|
49
53
|
/**
|
|
50
|
-
* Gets or Sets Default Storage Firewall configuration information
|
|
54
|
+
* Gets or Sets Default Storage Firewall configuration information. Not allowed in Serverless ComputeMode workspace.
|
|
51
55
|
*/
|
|
52
56
|
readonly defaultStorageFirewall?: string;
|
|
53
57
|
/**
|
|
54
|
-
* The resource Id of the managed disk encryption set.
|
|
58
|
+
* The resource Id of the managed disk encryption set. Not allowed in Serverless ComputeMode workspace.
|
|
55
59
|
*/
|
|
56
60
|
readonly diskEncryptionSetId: string;
|
|
57
61
|
/**
|
|
58
|
-
* Encryption properties for databricks workspace
|
|
62
|
+
* Encryption properties for databricks workspace. Supported in both Serverless and Hybrid ComputeMode workspace.
|
|
59
63
|
*/
|
|
60
|
-
readonly encryption?: outputs.databricks.
|
|
64
|
+
readonly encryption?: outputs.databricks.WorkspacePropertiesEncryptionResponse;
|
|
61
65
|
/**
|
|
62
|
-
* Contains settings related to the Enhanced Security and Compliance Add-On.
|
|
66
|
+
* Contains settings related to the Enhanced Security and Compliance Add-On. Supported in both Serverless and Hybrid ComputeMode workspace.
|
|
63
67
|
*/
|
|
64
68
|
readonly enhancedSecurityCompliance?: outputs.databricks.EnhancedSecurityComplianceDefinitionResponse;
|
|
65
69
|
/**
|
|
66
|
-
* Fully qualified resource
|
|
70
|
+
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
67
71
|
*/
|
|
68
72
|
readonly id: string;
|
|
69
73
|
/**
|
|
70
|
-
* Indicates whether unity catalog enabled for the workspace or not.
|
|
74
|
+
* Indicates whether unity catalog enabled for the workspace or not. Set as true in Serverless ComputeMode workspace.
|
|
71
75
|
*/
|
|
72
76
|
readonly isUcEnabled: boolean;
|
|
73
77
|
/**
|
|
@@ -75,13 +79,13 @@ export interface GetWorkspaceResult {
|
|
|
75
79
|
*/
|
|
76
80
|
readonly location: string;
|
|
77
81
|
/**
|
|
78
|
-
* The details of Managed Identity of Disk Encryption Set used for Managed Disk Encryption
|
|
82
|
+
* The details of Managed Identity of Disk Encryption Set used for Managed Disk Encryption. Only returned in Hybrid ComputeMode workspace.
|
|
79
83
|
*/
|
|
80
84
|
readonly managedDiskIdentity?: outputs.databricks.ManagedIdentityConfigurationResponse;
|
|
81
85
|
/**
|
|
82
|
-
* The managed resource group Id.
|
|
86
|
+
* The managed resource group Id. Required in Hybrid ComputeMode workspace. Not allowed in Serverless ComputeMode workspace.
|
|
83
87
|
*/
|
|
84
|
-
readonly managedResourceGroupId
|
|
88
|
+
readonly managedResourceGroupId?: string;
|
|
85
89
|
/**
|
|
86
90
|
* The name of the resource
|
|
87
91
|
*/
|
|
@@ -91,7 +95,7 @@ export interface GetWorkspaceResult {
|
|
|
91
95
|
*/
|
|
92
96
|
readonly parameters?: outputs.databricks.WorkspaceCustomParametersResponse;
|
|
93
97
|
/**
|
|
94
|
-
* Private endpoint connections created on the workspace
|
|
98
|
+
* Private endpoint connections created on the workspace. Supported in both Serverless and Hybrid ComputeMode workspace.
|
|
95
99
|
*/
|
|
96
100
|
readonly privateEndpointConnections: outputs.databricks.PrivateEndpointConnectionResponse[];
|
|
97
101
|
/**
|
|
@@ -99,11 +103,11 @@ export interface GetWorkspaceResult {
|
|
|
99
103
|
*/
|
|
100
104
|
readonly provisioningState: string;
|
|
101
105
|
/**
|
|
102
|
-
* The network access type for accessing workspace. Set value to disabled to access workspace only via private link.
|
|
106
|
+
* 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.
|
|
103
107
|
*/
|
|
104
108
|
readonly publicNetworkAccess?: string;
|
|
105
109
|
/**
|
|
106
|
-
* 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.
|
|
110
|
+
* 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.
|
|
107
111
|
*/
|
|
108
112
|
readonly requiredNsgRules?: string;
|
|
109
113
|
/**
|
|
@@ -111,11 +115,11 @@ export interface GetWorkspaceResult {
|
|
|
111
115
|
*/
|
|
112
116
|
readonly sku?: outputs.databricks.SkuResponse;
|
|
113
117
|
/**
|
|
114
|
-
* The details of Managed Identity of Storage Account
|
|
118
|
+
* The details of Managed Identity of Storage Account. Only returned in Hybrid ComputeMode workspace.
|
|
115
119
|
*/
|
|
116
120
|
readonly storageAccountIdentity?: outputs.databricks.ManagedIdentityConfigurationResponse;
|
|
117
121
|
/**
|
|
118
|
-
*
|
|
122
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
119
123
|
*/
|
|
120
124
|
readonly systemData: outputs.databricks.SystemDataResponse;
|
|
121
125
|
/**
|
|
@@ -125,7 +129,7 @@ export interface GetWorkspaceResult {
|
|
|
125
129
|
[key: string]: string;
|
|
126
130
|
};
|
|
127
131
|
/**
|
|
128
|
-
* The type of the resource.
|
|
132
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
129
133
|
*/
|
|
130
134
|
readonly type: string;
|
|
131
135
|
/**
|
|
@@ -148,9 +152,9 @@ export interface GetWorkspaceResult {
|
|
|
148
152
|
/**
|
|
149
153
|
* Gets the workspace.
|
|
150
154
|
*
|
|
151
|
-
* Uses Azure REST API version
|
|
155
|
+
* Uses Azure REST API version 2026-01-01.
|
|
152
156
|
*
|
|
153
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
157
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
154
158
|
*/
|
|
155
159
|
export declare function getWorkspaceOutput(args: GetWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkspaceResult>;
|
|
156
160
|
export interface GetWorkspaceOutputArgs {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkspace.d.ts","sourceRoot":"","sources":["../../databricks/getWorkspace.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,gBAAgB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAM7G;AAED,MAAM,WAAW,gBAAgB;IAC7B;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,0CAA0C,CAAC;IACzF;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,sCAAsC,EAAE,CAAC;IACtF;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC;IAC1D;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,gCAAgC,CAAC;IAC9E;;OAEG;IACH,QAAQ,CAAC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IACzC;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC;;OAEG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,qCAAqC,CAAC;IAC/E;;OAEG;IACH,QAAQ,CAAC,0BAA0B,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,4CAA4C,CAAC;IACtG;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oCAAoC,CAAC;IACvF;;OAEG;IACH,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"getWorkspace.d.ts","sourceRoot":"","sources":["../../databricks/getWorkspace.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,gBAAgB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAM7G;AAED,MAAM,WAAW,gBAAgB;IAC7B;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,0CAA0C,CAAC;IACzF;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,sCAAsC,EAAE,CAAC;IACtF;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC;IAC1D;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,gCAAgC,CAAC;IAC9E;;OAEG;IACH,QAAQ,CAAC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IACzC;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC;;OAEG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,qCAAqC,CAAC;IAC/E;;OAEG;IACH,QAAQ,CAAC,0BAA0B,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,4CAA4C,CAAC;IACtG;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oCAAoC,CAAC;IACvF;;OAEG;IACH,QAAQ,CAAC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IACzC;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,iCAAiC,CAAC;IAC3E;;OAEG;IACH,QAAQ,CAAC,0BAA0B,EAAE,OAAO,CAAC,UAAU,CAAC,iCAAiC,EAAE,CAAC;IAC5F;;OAEG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IACtC;;OAEG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,WAAW,CAAC;IAC9C;;OAEG;IACH,QAAQ,CAAC,sBAAsB,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,oCAAoC,CAAC;IAC1F;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC;IAC3D;;OAEG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,CAAC;IACxC;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;IAClC;;OAEG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC;IAC1D;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;CACjC;AACD;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,sBAAsB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAMrI;AAED,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
@@ -31,9 +31,9 @@ const utilities = __importStar(require("../utilities"));
|
|
|
31
31
|
/**
|
|
32
32
|
* Gets the workspace.
|
|
33
33
|
*
|
|
34
|
-
* Uses Azure REST API version
|
|
34
|
+
* Uses Azure REST API version 2026-01-01.
|
|
35
35
|
*
|
|
36
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
36
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
37
37
|
*/
|
|
38
38
|
function getWorkspace(args, opts) {
|
|
39
39
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -46,9 +46,9 @@ exports.getWorkspace = getWorkspace;
|
|
|
46
46
|
/**
|
|
47
47
|
* Gets the workspace.
|
|
48
48
|
*
|
|
49
|
-
* Uses Azure REST API version
|
|
49
|
+
* Uses Azure REST API version 2026-01-01.
|
|
50
50
|
*
|
|
51
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
51
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
52
52
|
*/
|
|
53
53
|
function getWorkspaceOutput(args, opts) {
|
|
54
54
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -58,4 +58,4 @@ function getWorkspaceOutput(args, opts) {
|
|
|
58
58
|
}, opts);
|
|
59
59
|
}
|
|
60
60
|
exports.getWorkspaceOutput = getWorkspaceOutput;
|
|
61
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0V29ya3NwYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vZGF0YWJyaWNrcy9nZXRXb3Jrc3BhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHNFQUFzRTtBQUN0RSxpRkFBaUY7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRWpGLHVEQUF5QztBQUl6Qyx3REFBMEM7QUFFMUM7Ozs7OztHQU1HO0FBQ0gsU0FBZ0IsWUFBWSxDQUFDLElBQXNCLEVBQUUsSUFBMkI7SUFDNUUsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3pFLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsc0NBQXNDLEVBQUU7UUFDakUsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxlQUFlLEVBQUUsSUFBSSxDQUFDLGFBQWE7S0FDdEMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFORCxvQ0FNQztBQThJRDs7Ozs7O0dBTUc7QUFDSCxTQUFnQixrQkFBa0IsQ0FBQyxJQUE0QixFQUFFLElBQWlDO0lBQzlGLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLHNDQUFzQyxFQUFFO1FBQ3ZFLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsZUFBZSxFQUFFLElBQUksQ0FBQyxhQUFhO0tBQ3RDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBTkQsZ0RBTUMifQ==
|
|
@@ -2,11 +2,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
-
* The private endpoint connection of a workspace
|
|
5
|
+
* The private endpoint connection of a workspace.
|
|
6
6
|
*
|
|
7
|
-
* Uses Azure REST API version
|
|
7
|
+
* Uses Azure REST API version 2026-01-01. In version 2.x of the Azure Native provider, it used API version 2023-02-01.
|
|
8
8
|
*
|
|
9
|
-
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview
|
|
9
|
+
* Other available API versions: 2023-02-01, 2023-09-15-preview, 2024-05-01, 2024-09-01-preview, 2025-03-01-preview, 2025-08-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databricks [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
10
10
|
*/
|
|
11
11
|
export declare class PrivateEndpointConnection extends pulumi.CustomResource {
|
|
12
12
|
/**
|
|
@@ -28,7 +28,7 @@ export declare class PrivateEndpointConnection extends pulumi.CustomResource {
|
|
|
28
28
|
*/
|
|
29
29
|
readonly azureApiVersion: pulumi.Output<string>;
|
|
30
30
|
/**
|
|
31
|
-
* The resource
|
|
31
|
+
* The name of the resource
|
|
32
32
|
*/
|
|
33
33
|
readonly name: pulumi.Output<string>;
|
|
34
34
|
/**
|
|
@@ -36,7 +36,11 @@ export declare class PrivateEndpointConnection extends pulumi.CustomResource {
|
|
|
36
36
|
*/
|
|
37
37
|
readonly properties: pulumi.Output<outputs.databricks.PrivateEndpointConnectionPropertiesResponse>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
40
|
+
*/
|
|
41
|
+
readonly systemData: pulumi.Output<outputs.databricks.SystemDataResponse>;
|
|
42
|
+
/**
|
|
43
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
40
44
|
*/
|
|
41
45
|
readonly type: pulumi.Output<string>;
|
|
42
46
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"privateEndpointConnection.d.ts","sourceRoot":"","sources":["../../databricks/privateEndpointConnection.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,qBAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;OAOG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,yBAAyB;IAO5H;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,yBAAyB;IAOpE;;OAEG;IACH,SAAgC,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACvE;;OAEG;IACH,SAAgC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5D;;OAEG;IACH,SAAwB,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC,CAAC;IAClH;;OAEG;IACH,SAAgC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE5D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,6BAA6B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;
|
|
1
|
+
{"version":3,"file":"privateEndpointConnection.d.ts","sourceRoot":"","sources":["../../databricks/privateEndpointConnection.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;GAMG;AACH,qBAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;OAOG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,yBAAyB;IAO5H;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,yBAAyB;IAOpE;;OAEG;IACH,SAAgC,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACvE;;OAEG;IACH,SAAgC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5D;;OAEG;IACH,SAAwB,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC,CAAC;IAClH;;OAEG;IACH,SAAgC,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC;IACjG;;OAEG;IACH,SAAgC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE5D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,6BAA6B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAiCrG;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;OAEG;IACH,6BAA6B,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACrD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,uCAAuC,CAAC,CAAC;IACpF;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|