@pulumi/databricks 1.8.0 → 1.10.0-alpha.1678903612
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/clusterPolicy.d.ts +2 -2
- package/clusterPolicy.js +2 -2
- package/config/vars.d.ts +1 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/dbfsFile.d.ts +3 -3
- package/dbfsFile.js +1 -1
- package/directory.d.ts +1 -1
- package/directory.js +1 -1
- package/externalLocation.d.ts +3 -3
- package/getAwsBucketPolicy.d.ts +2 -2
- package/getAwsBucketPolicy.js +2 -2
- package/getCluster.d.ts +2 -2
- package/getCluster.js +2 -2
- package/getClusters.d.ts +2 -2
- package/getClusters.js +2 -2
- package/getDbfsFile.d.ts +2 -2
- package/getDbfsFile.js +2 -2
- package/getDbfsFilePaths.d.ts +2 -2
- package/getDbfsFilePaths.js +2 -2
- package/getNodeType.d.ts +11 -6
- package/getNodeType.js +3 -3
- package/getNodeType.js.map +1 -1
- package/getServicePrincipal.d.ts +2 -2
- package/getServicePrincipal.js +2 -2
- package/getServicePrincipals.d.ts +2 -2
- package/getServicePrincipals.js +2 -2
- package/getSparkVersion.d.ts +2 -2
- package/getSparkVersion.js +2 -2
- package/getUser.d.ts +2 -2
- package/getUser.js +2 -2
- package/gitCredential.d.ts +4 -4
- package/gitCredential.js +1 -9
- package/gitCredential.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +12 -2
- package/index.js.map +1 -1
- package/metastoreDataAccess.d.ts +3 -0
- package/metastoreDataAccess.js +2 -0
- package/metastoreDataAccess.js.map +1 -1
- package/mlflowModel.d.ts +2 -1
- package/mlflowModel.js +2 -1
- package/mlflowModel.js.map +1 -1
- package/modelServing.d.ts +121 -0
- package/modelServing.js +113 -0
- package/modelServing.js.map +1 -0
- package/mwsNetworks.d.ts +3 -3
- package/mwsPrivateAccessSettings.d.ts +12 -12
- package/mwsVpcEndpoint.d.ts +27 -13
- package/mwsVpcEndpoint.js +2 -6
- package/mwsVpcEndpoint.js.map +1 -1
- package/mwsWorkspaces.d.ts +21 -12
- package/mwsWorkspaces.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/provider.d.ts +2 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/repo.d.ts +3 -3
- package/sqlAlert.d.ts +112 -0
- package/sqlAlert.js +77 -0
- package/sqlAlert.js.map +1 -0
- package/sqlQuery.d.ts +9 -0
- package/sqlQuery.js.map +1 -1
- package/storageCredential.d.ts +20 -15
- package/storageCredential.js +19 -15
- package/storageCredential.js.map +1 -1
- package/types/input.d.ts +139 -1
- package/types/output.d.ts +127 -1
package/mwsNetworks.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare class MwsNetworks extends pulumi.CustomResource {
|
|
|
43
43
|
readonly securityGroupIds: pulumi.Output<string[] | undefined>;
|
|
44
44
|
readonly subnetIds: pulumi.Output<string[] | undefined>;
|
|
45
45
|
/**
|
|
46
|
-
* mapping of databricks.MwsVpcEndpoint for PrivateLink connections
|
|
46
|
+
* mapping of databricks.MwsVpcEndpoint for PrivateLink or Private Service Connect connections
|
|
47
47
|
*/
|
|
48
48
|
readonly vpcEndpoints: pulumi.Output<outputs.MwsNetworksVpcEndpoints>;
|
|
49
49
|
/**
|
|
@@ -92,7 +92,7 @@ export interface MwsNetworksState {
|
|
|
92
92
|
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
93
93
|
subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
94
94
|
/**
|
|
95
|
-
* mapping of databricks.MwsVpcEndpoint for PrivateLink connections
|
|
95
|
+
* mapping of databricks.MwsVpcEndpoint for PrivateLink or Private Service Connect connections
|
|
96
96
|
*/
|
|
97
97
|
vpcEndpoints?: pulumi.Input<inputs.MwsNetworksVpcEndpoints>;
|
|
98
98
|
/**
|
|
@@ -133,7 +133,7 @@ export interface MwsNetworksArgs {
|
|
|
133
133
|
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
134
134
|
subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135
135
|
/**
|
|
136
|
-
* mapping of databricks.MwsVpcEndpoint for PrivateLink connections
|
|
136
|
+
* mapping of databricks.MwsVpcEndpoint for PrivateLink or Private Service Connect connections
|
|
137
137
|
*/
|
|
138
138
|
vpcEndpoints?: pulumi.Input<inputs.MwsNetworksVpcEndpoints>;
|
|
139
139
|
/**
|
|
@@ -21,7 +21,7 @@ export declare class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
21
21
|
*/
|
|
22
22
|
static isInstance(obj: any): obj is MwsPrivateAccessSettings;
|
|
23
23
|
/**
|
|
24
|
-
* Account Id that could be found in the
|
|
24
|
+
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
25
25
|
*/
|
|
26
26
|
readonly accountId: pulumi.Output<string | undefined>;
|
|
27
27
|
/**
|
|
@@ -41,15 +41,15 @@ export declare class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly privateAccessSettingsName: pulumi.Output<string>;
|
|
43
43
|
/**
|
|
44
|
-
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false
|
|
44
|
+
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network.
|
|
45
45
|
*/
|
|
46
46
|
readonly publicAccessEnabled: pulumi.Output<boolean | undefined>;
|
|
47
47
|
/**
|
|
48
|
-
* Region of AWS VPC
|
|
48
|
+
* Region of AWS VPC or the Google Cloud VPC network
|
|
49
49
|
*/
|
|
50
50
|
readonly region: pulumi.Output<string>;
|
|
51
51
|
/**
|
|
52
|
-
* Status of Private Access Settings
|
|
52
|
+
* (AWS only) Status of Private Access Settings
|
|
53
53
|
*/
|
|
54
54
|
readonly status: pulumi.Output<string>;
|
|
55
55
|
/**
|
|
@@ -66,7 +66,7 @@ export declare class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
66
66
|
*/
|
|
67
67
|
export interface MwsPrivateAccessSettingsState {
|
|
68
68
|
/**
|
|
69
|
-
* Account Id that could be found in the
|
|
69
|
+
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
70
70
|
*/
|
|
71
71
|
accountId?: pulumi.Input<string>;
|
|
72
72
|
/**
|
|
@@ -86,15 +86,15 @@ export interface MwsPrivateAccessSettingsState {
|
|
|
86
86
|
*/
|
|
87
87
|
privateAccessSettingsName?: pulumi.Input<string>;
|
|
88
88
|
/**
|
|
89
|
-
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false
|
|
89
|
+
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network.
|
|
90
90
|
*/
|
|
91
91
|
publicAccessEnabled?: pulumi.Input<boolean>;
|
|
92
92
|
/**
|
|
93
|
-
* Region of AWS VPC
|
|
93
|
+
* Region of AWS VPC or the Google Cloud VPC network
|
|
94
94
|
*/
|
|
95
95
|
region?: pulumi.Input<string>;
|
|
96
96
|
/**
|
|
97
|
-
* Status of Private Access Settings
|
|
97
|
+
* (AWS only) Status of Private Access Settings
|
|
98
98
|
*/
|
|
99
99
|
status?: pulumi.Input<string>;
|
|
100
100
|
}
|
|
@@ -103,7 +103,7 @@ export interface MwsPrivateAccessSettingsState {
|
|
|
103
103
|
*/
|
|
104
104
|
export interface MwsPrivateAccessSettingsArgs {
|
|
105
105
|
/**
|
|
106
|
-
* Account Id that could be found in the
|
|
106
|
+
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
107
107
|
*/
|
|
108
108
|
accountId?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
@@ -123,15 +123,15 @@ export interface MwsPrivateAccessSettingsArgs {
|
|
|
123
123
|
*/
|
|
124
124
|
privateAccessSettingsName: pulumi.Input<string>;
|
|
125
125
|
/**
|
|
126
|
-
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false
|
|
126
|
+
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network.
|
|
127
127
|
*/
|
|
128
128
|
publicAccessEnabled?: pulumi.Input<boolean>;
|
|
129
129
|
/**
|
|
130
|
-
* Region of AWS VPC
|
|
130
|
+
* Region of AWS VPC or the Google Cloud VPC network
|
|
131
131
|
*/
|
|
132
132
|
region: pulumi.Input<string>;
|
|
133
133
|
/**
|
|
134
|
-
* Status of Private Access Settings
|
|
134
|
+
* (AWS only) Status of Private Access Settings
|
|
135
135
|
*/
|
|
136
136
|
status?: pulumi.Input<string>;
|
|
137
137
|
}
|
package/mwsVpcEndpoint.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
5
|
* ## Import
|
|
4
6
|
*
|
|
@@ -21,21 +23,25 @@ export declare class MwsVpcEndpoint extends pulumi.CustomResource {
|
|
|
21
23
|
*/
|
|
22
24
|
static isInstance(obj: any): obj is MwsVpcEndpoint;
|
|
23
25
|
/**
|
|
24
|
-
* Account Id that could be found in the
|
|
26
|
+
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
25
27
|
*/
|
|
26
28
|
readonly accountId: pulumi.Output<string | undefined>;
|
|
27
29
|
readonly awsAccountId: pulumi.Output<string>;
|
|
28
30
|
/**
|
|
29
|
-
* The ID of the Databricks endpoint service that this VPC endpoint is connected to. Please find the list of endpoint service IDs for each supported region in the [Databricks PrivateLink documentation](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html)
|
|
31
|
+
* (AWS Only) The ID of the Databricks endpoint service that this VPC endpoint is connected to. Please find the list of endpoint service IDs for each supported region in the [Databricks PrivateLink documentation](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html)
|
|
30
32
|
*/
|
|
31
33
|
readonly awsEndpointServiceId: pulumi.Output<string>;
|
|
32
|
-
readonly awsVpcEndpointId: pulumi.Output<string>;
|
|
34
|
+
readonly awsVpcEndpointId: pulumi.Output<string | undefined>;
|
|
35
|
+
/**
|
|
36
|
+
* a block consists of Google Cloud specific information for this PSC endpoint. It has the following fields:
|
|
37
|
+
*/
|
|
38
|
+
readonly gcpVpcEndpointInfo: pulumi.Output<outputs.MwsVpcEndpointGcpVpcEndpointInfo | undefined>;
|
|
33
39
|
/**
|
|
34
40
|
* Region of AWS VPC
|
|
35
41
|
*/
|
|
36
|
-
readonly region: pulumi.Output<string>;
|
|
42
|
+
readonly region: pulumi.Output<string | undefined>;
|
|
37
43
|
/**
|
|
38
|
-
* State of VPC Endpoint
|
|
44
|
+
* (AWS Only) State of VPC Endpoint
|
|
39
45
|
*/
|
|
40
46
|
readonly state: pulumi.Output<string>;
|
|
41
47
|
readonly useCase: pulumi.Output<string>;
|
|
@@ -61,21 +67,25 @@ export declare class MwsVpcEndpoint extends pulumi.CustomResource {
|
|
|
61
67
|
*/
|
|
62
68
|
export interface MwsVpcEndpointState {
|
|
63
69
|
/**
|
|
64
|
-
* Account Id that could be found in the
|
|
70
|
+
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
65
71
|
*/
|
|
66
72
|
accountId?: pulumi.Input<string>;
|
|
67
73
|
awsAccountId?: pulumi.Input<string>;
|
|
68
74
|
/**
|
|
69
|
-
* The ID of the Databricks endpoint service that this VPC endpoint is connected to. Please find the list of endpoint service IDs for each supported region in the [Databricks PrivateLink documentation](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html)
|
|
75
|
+
* (AWS Only) The ID of the Databricks endpoint service that this VPC endpoint is connected to. Please find the list of endpoint service IDs for each supported region in the [Databricks PrivateLink documentation](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html)
|
|
70
76
|
*/
|
|
71
77
|
awsEndpointServiceId?: pulumi.Input<string>;
|
|
72
78
|
awsVpcEndpointId?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* a block consists of Google Cloud specific information for this PSC endpoint. It has the following fields:
|
|
81
|
+
*/
|
|
82
|
+
gcpVpcEndpointInfo?: pulumi.Input<inputs.MwsVpcEndpointGcpVpcEndpointInfo>;
|
|
73
83
|
/**
|
|
74
84
|
* Region of AWS VPC
|
|
75
85
|
*/
|
|
76
86
|
region?: pulumi.Input<string>;
|
|
77
87
|
/**
|
|
78
|
-
* State of VPC Endpoint
|
|
88
|
+
* (AWS Only) State of VPC Endpoint
|
|
79
89
|
*/
|
|
80
90
|
state?: pulumi.Input<string>;
|
|
81
91
|
useCase?: pulumi.Input<string>;
|
|
@@ -93,21 +103,25 @@ export interface MwsVpcEndpointState {
|
|
|
93
103
|
*/
|
|
94
104
|
export interface MwsVpcEndpointArgs {
|
|
95
105
|
/**
|
|
96
|
-
* Account Id that could be found in the
|
|
106
|
+
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
97
107
|
*/
|
|
98
108
|
accountId?: pulumi.Input<string>;
|
|
99
109
|
awsAccountId?: pulumi.Input<string>;
|
|
100
110
|
/**
|
|
101
|
-
* The ID of the Databricks endpoint service that this VPC endpoint is connected to. Please find the list of endpoint service IDs for each supported region in the [Databricks PrivateLink documentation](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html)
|
|
111
|
+
* (AWS Only) The ID of the Databricks endpoint service that this VPC endpoint is connected to. Please find the list of endpoint service IDs for each supported region in the [Databricks PrivateLink documentation](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html)
|
|
102
112
|
*/
|
|
103
113
|
awsEndpointServiceId?: pulumi.Input<string>;
|
|
104
|
-
awsVpcEndpointId
|
|
114
|
+
awsVpcEndpointId?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* a block consists of Google Cloud specific information for this PSC endpoint. It has the following fields:
|
|
117
|
+
*/
|
|
118
|
+
gcpVpcEndpointInfo?: pulumi.Input<inputs.MwsVpcEndpointGcpVpcEndpointInfo>;
|
|
105
119
|
/**
|
|
106
120
|
* Region of AWS VPC
|
|
107
121
|
*/
|
|
108
|
-
region
|
|
122
|
+
region?: pulumi.Input<string>;
|
|
109
123
|
/**
|
|
110
|
-
* State of VPC Endpoint
|
|
124
|
+
* (AWS Only) State of VPC Endpoint
|
|
111
125
|
*/
|
|
112
126
|
state?: pulumi.Input<string>;
|
|
113
127
|
useCase?: pulumi.Input<string>;
|
package/mwsVpcEndpoint.js
CHANGED
|
@@ -42,6 +42,7 @@ class MwsVpcEndpoint extends pulumi.CustomResource {
|
|
|
42
42
|
resourceInputs["awsAccountId"] = state ? state.awsAccountId : undefined;
|
|
43
43
|
resourceInputs["awsEndpointServiceId"] = state ? state.awsEndpointServiceId : undefined;
|
|
44
44
|
resourceInputs["awsVpcEndpointId"] = state ? state.awsVpcEndpointId : undefined;
|
|
45
|
+
resourceInputs["gcpVpcEndpointInfo"] = state ? state.gcpVpcEndpointInfo : undefined;
|
|
45
46
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
46
47
|
resourceInputs["state"] = state ? state.state : undefined;
|
|
47
48
|
resourceInputs["useCase"] = state ? state.useCase : undefined;
|
|
@@ -50,12 +51,6 @@ class MwsVpcEndpoint extends pulumi.CustomResource {
|
|
|
50
51
|
}
|
|
51
52
|
else {
|
|
52
53
|
const args = argsOrState;
|
|
53
|
-
if ((!args || args.awsVpcEndpointId === undefined) && !opts.urn) {
|
|
54
|
-
throw new Error("Missing required property 'awsVpcEndpointId'");
|
|
55
|
-
}
|
|
56
|
-
if ((!args || args.region === undefined) && !opts.urn) {
|
|
57
|
-
throw new Error("Missing required property 'region'");
|
|
58
|
-
}
|
|
59
54
|
if ((!args || args.vpcEndpointName === undefined) && !opts.urn) {
|
|
60
55
|
throw new Error("Missing required property 'vpcEndpointName'");
|
|
61
56
|
}
|
|
@@ -63,6 +58,7 @@ class MwsVpcEndpoint extends pulumi.CustomResource {
|
|
|
63
58
|
resourceInputs["awsAccountId"] = args ? args.awsAccountId : undefined;
|
|
64
59
|
resourceInputs["awsEndpointServiceId"] = args ? args.awsEndpointServiceId : undefined;
|
|
65
60
|
resourceInputs["awsVpcEndpointId"] = args ? args.awsVpcEndpointId : undefined;
|
|
61
|
+
resourceInputs["gcpVpcEndpointInfo"] = args ? args.gcpVpcEndpointInfo : undefined;
|
|
66
62
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
67
63
|
resourceInputs["state"] = args ? args.state : undefined;
|
|
68
64
|
resourceInputs["useCase"] = args ? args.useCase : undefined;
|
package/mwsVpcEndpoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsVpcEndpoint.js","sourceRoot":"","sources":["../mwsVpcEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"mwsVpcEndpoint.js","sourceRoot":"","sources":["../mwsVpcEndpoint.ts"],"names":[],"mappings":"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"}
|
package/mwsWorkspaces.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
27
27
|
*/
|
|
28
28
|
readonly accountId: pulumi.Output<string>;
|
|
29
29
|
/**
|
|
30
|
-
* region of VPC
|
|
30
|
+
* region of VPC.
|
|
31
31
|
*/
|
|
32
32
|
readonly awsRegion: pulumi.Output<string | undefined>;
|
|
33
33
|
readonly cloud: pulumi.Output<string>;
|
|
@@ -56,7 +56,7 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
56
56
|
readonly gkeConfig: pulumi.Output<outputs.MwsWorkspacesGkeConfig | undefined>;
|
|
57
57
|
readonly isNoPublicIpEnabled: pulumi.Output<boolean | undefined>;
|
|
58
58
|
/**
|
|
59
|
-
* region of the subnet
|
|
59
|
+
* region of the subnet.
|
|
60
60
|
*/
|
|
61
61
|
readonly location: pulumi.Output<string | undefined>;
|
|
62
62
|
/**
|
|
@@ -68,16 +68,19 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
68
68
|
*/
|
|
69
69
|
readonly networkId: pulumi.Output<string | undefined>;
|
|
70
70
|
readonly pricingTier: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* Canonical unique identifier of databricks.MwsPrivateAccessSettings in Databricks Account.
|
|
73
|
+
*/
|
|
71
74
|
readonly privateAccessSettingsId: pulumi.Output<string | undefined>;
|
|
72
75
|
/**
|
|
73
|
-
* `storageConfigurationId` from storage configuration
|
|
76
|
+
* `storageConfigurationId` from storage configuration.
|
|
74
77
|
*/
|
|
75
78
|
readonly storageConfigurationId: pulumi.Output<string | undefined>;
|
|
76
79
|
readonly storageCustomerManagedKeyId: pulumi.Output<string | undefined>;
|
|
77
80
|
readonly token: pulumi.Output<outputs.MwsWorkspacesToken | undefined>;
|
|
78
81
|
readonly workspaceId: pulumi.Output<number>;
|
|
79
82
|
/**
|
|
80
|
-
* name of the workspace, will appear on UI
|
|
83
|
+
* name of the workspace, will appear on UI.
|
|
81
84
|
*/
|
|
82
85
|
readonly workspaceName: pulumi.Output<string>;
|
|
83
86
|
/**
|
|
@@ -110,7 +113,7 @@ export interface MwsWorkspacesState {
|
|
|
110
113
|
*/
|
|
111
114
|
accountId?: pulumi.Input<string>;
|
|
112
115
|
/**
|
|
113
|
-
* region of VPC
|
|
116
|
+
* region of VPC.
|
|
114
117
|
*/
|
|
115
118
|
awsRegion?: pulumi.Input<string>;
|
|
116
119
|
cloud?: pulumi.Input<string>;
|
|
@@ -139,7 +142,7 @@ export interface MwsWorkspacesState {
|
|
|
139
142
|
gkeConfig?: pulumi.Input<inputs.MwsWorkspacesGkeConfig>;
|
|
140
143
|
isNoPublicIpEnabled?: pulumi.Input<boolean>;
|
|
141
144
|
/**
|
|
142
|
-
* region of the subnet
|
|
145
|
+
* region of the subnet.
|
|
143
146
|
*/
|
|
144
147
|
location?: pulumi.Input<string>;
|
|
145
148
|
/**
|
|
@@ -151,16 +154,19 @@ export interface MwsWorkspacesState {
|
|
|
151
154
|
*/
|
|
152
155
|
networkId?: pulumi.Input<string>;
|
|
153
156
|
pricingTier?: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* Canonical unique identifier of databricks.MwsPrivateAccessSettings in Databricks Account.
|
|
159
|
+
*/
|
|
154
160
|
privateAccessSettingsId?: pulumi.Input<string>;
|
|
155
161
|
/**
|
|
156
|
-
* `storageConfigurationId` from storage configuration
|
|
162
|
+
* `storageConfigurationId` from storage configuration.
|
|
157
163
|
*/
|
|
158
164
|
storageConfigurationId?: pulumi.Input<string>;
|
|
159
165
|
storageCustomerManagedKeyId?: pulumi.Input<string>;
|
|
160
166
|
token?: pulumi.Input<inputs.MwsWorkspacesToken>;
|
|
161
167
|
workspaceId?: pulumi.Input<number>;
|
|
162
168
|
/**
|
|
163
|
-
* name of the workspace, will appear on UI
|
|
169
|
+
* name of the workspace, will appear on UI.
|
|
164
170
|
*/
|
|
165
171
|
workspaceName?: pulumi.Input<string>;
|
|
166
172
|
/**
|
|
@@ -185,7 +191,7 @@ export interface MwsWorkspacesArgs {
|
|
|
185
191
|
*/
|
|
186
192
|
accountId: pulumi.Input<string>;
|
|
187
193
|
/**
|
|
188
|
-
* region of VPC
|
|
194
|
+
* region of VPC.
|
|
189
195
|
*/
|
|
190
196
|
awsRegion?: pulumi.Input<string>;
|
|
191
197
|
cloud?: pulumi.Input<string>;
|
|
@@ -214,7 +220,7 @@ export interface MwsWorkspacesArgs {
|
|
|
214
220
|
gkeConfig?: pulumi.Input<inputs.MwsWorkspacesGkeConfig>;
|
|
215
221
|
isNoPublicIpEnabled?: pulumi.Input<boolean>;
|
|
216
222
|
/**
|
|
217
|
-
* region of the subnet
|
|
223
|
+
* region of the subnet.
|
|
218
224
|
*/
|
|
219
225
|
location?: pulumi.Input<string>;
|
|
220
226
|
/**
|
|
@@ -226,16 +232,19 @@ export interface MwsWorkspacesArgs {
|
|
|
226
232
|
*/
|
|
227
233
|
networkId?: pulumi.Input<string>;
|
|
228
234
|
pricingTier?: pulumi.Input<string>;
|
|
235
|
+
/**
|
|
236
|
+
* Canonical unique identifier of databricks.MwsPrivateAccessSettings in Databricks Account.
|
|
237
|
+
*/
|
|
229
238
|
privateAccessSettingsId?: pulumi.Input<string>;
|
|
230
239
|
/**
|
|
231
|
-
* `storageConfigurationId` from storage configuration
|
|
240
|
+
* `storageConfigurationId` from storage configuration.
|
|
232
241
|
*/
|
|
233
242
|
storageConfigurationId?: pulumi.Input<string>;
|
|
234
243
|
storageCustomerManagedKeyId?: pulumi.Input<string>;
|
|
235
244
|
token?: pulumi.Input<inputs.MwsWorkspacesToken>;
|
|
236
245
|
workspaceId?: pulumi.Input<number>;
|
|
237
246
|
/**
|
|
238
|
-
* name of the workspace, will appear on UI
|
|
247
|
+
* name of the workspace, will appear on UI.
|
|
239
248
|
*/
|
|
240
249
|
workspaceName: pulumi.Input<string>;
|
|
241
250
|
/**
|
package/mwsWorkspaces.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;
|
|
1
|
+
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.10.0-alpha.1678903612+0fc1d612",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks 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 databricks v1.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.10.0-alpha.1678903612+0fc1d612"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.10.0-alpha.1678903612+0fc1d612",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks 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 databricks v1.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.10.0-alpha.1678903612+0fc1d612"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/provider.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
19
19
|
readonly azureLoginAppId: pulumi.Output<string | undefined>;
|
|
20
20
|
readonly azureTenantId: pulumi.Output<string | undefined>;
|
|
21
21
|
readonly azureWorkspaceResourceId: pulumi.Output<string | undefined>;
|
|
22
|
+
readonly bricksCliPath: pulumi.Output<string | undefined>;
|
|
22
23
|
readonly clientId: pulumi.Output<string | undefined>;
|
|
23
24
|
readonly clientSecret: pulumi.Output<string | undefined>;
|
|
24
25
|
readonly configFile: pulumi.Output<string | undefined>;
|
|
@@ -51,6 +52,7 @@ export interface ProviderArgs {
|
|
|
51
52
|
azureTenantId?: pulumi.Input<string>;
|
|
52
53
|
azureUseMsi?: pulumi.Input<boolean>;
|
|
53
54
|
azureWorkspaceResourceId?: pulumi.Input<string>;
|
|
55
|
+
bricksCliPath?: pulumi.Input<string>;
|
|
54
56
|
clientId?: pulumi.Input<string>;
|
|
55
57
|
clientSecret?: pulumi.Input<string>;
|
|
56
58
|
configFile?: pulumi.Input<string>;
|
package/provider.js
CHANGED
|
@@ -42,6 +42,7 @@ class Provider extends pulumi.ProviderResource {
|
|
|
42
42
|
resourceInputs["azureTenantId"] = args ? args.azureTenantId : undefined;
|
|
43
43
|
resourceInputs["azureUseMsi"] = pulumi.output(args ? args.azureUseMsi : undefined).apply(JSON.stringify);
|
|
44
44
|
resourceInputs["azureWorkspaceResourceId"] = args ? args.azureWorkspaceResourceId : undefined;
|
|
45
|
+
resourceInputs["bricksCliPath"] = args ? args.bricksCliPath : undefined;
|
|
45
46
|
resourceInputs["clientId"] = args ? args.clientId : undefined;
|
|
46
47
|
resourceInputs["clientSecret"] = (args === null || args === void 0 ? void 0 : args.clientSecret) ? pulumi.secret(args.clientSecret) : undefined;
|
|
47
48
|
resourceInputs["configFile"] = args ? args.configFile : undefined;
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"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"}
|
package/repo.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export declare class Repo extends pulumi.CustomResource {
|
|
|
35
35
|
*/
|
|
36
36
|
readonly commitHash: pulumi.Output<string>;
|
|
37
37
|
/**
|
|
38
|
-
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`,
|
|
38
|
+
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`.
|
|
39
39
|
*/
|
|
40
40
|
readonly gitProvider: pulumi.Output<string>;
|
|
41
41
|
/**
|
|
@@ -73,7 +73,7 @@ export interface RepoState {
|
|
|
73
73
|
*/
|
|
74
74
|
commitHash?: pulumi.Input<string>;
|
|
75
75
|
/**
|
|
76
|
-
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`,
|
|
76
|
+
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`.
|
|
77
77
|
*/
|
|
78
78
|
gitProvider?: pulumi.Input<string>;
|
|
79
79
|
/**
|
|
@@ -103,7 +103,7 @@ export interface RepoArgs {
|
|
|
103
103
|
*/
|
|
104
104
|
commitHash?: pulumi.Input<string>;
|
|
105
105
|
/**
|
|
106
|
-
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`,
|
|
106
|
+
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`.
|
|
107
107
|
*/
|
|
108
108
|
gitProvider?: pulumi.Input<string>;
|
|
109
109
|
/**
|
package/sqlAlert.d.ts
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource allows you to manage [Databricks SQL Alerts](https://docs.databricks.com/sql/user/queries/index.html).
|
|
6
|
+
*
|
|
7
|
+
* **Note:** To manage [SQLA resources](https://docs.databricks.com/sql/get-started/concepts.html) you must have `databricksSqlAccess` on your databricks.Group or databricks_user.
|
|
8
|
+
*
|
|
9
|
+
* ## Related Resources
|
|
10
|
+
*
|
|
11
|
+
* The following resources are often used in the same context:
|
|
12
|
+
*
|
|
13
|
+
* * End to end workspace management guide.
|
|
14
|
+
* * databricks.SqlQuery to manage Databricks SQL [Queries](https://docs.databricks.com/sql/user/queries/index.html).
|
|
15
|
+
* * databricks.SqlEndpoint to manage Databricks SQL [Endpoints](https://docs.databricks.com/sql/admin/sql-endpoints.html).
|
|
16
|
+
* * databricks.Directory to manage directories in [Databricks Workpace](https://docs.databricks.com/workspace/workspace-objects.html).
|
|
17
|
+
*/
|
|
18
|
+
export declare class SqlAlert extends pulumi.CustomResource {
|
|
19
|
+
/**
|
|
20
|
+
* Get an existing SqlAlert resource's state with the given name, ID, and optional extra
|
|
21
|
+
* properties used to qualify the lookup.
|
|
22
|
+
*
|
|
23
|
+
* @param name The _unique_ name of the resulting resource.
|
|
24
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
25
|
+
* @param state Any extra arguments used during the lookup.
|
|
26
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
27
|
+
*/
|
|
28
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SqlAlertState, opts?: pulumi.CustomResourceOptions): SqlAlert;
|
|
29
|
+
/**
|
|
30
|
+
* Returns true if the given object is an instance of SqlAlert. This is designed to work even
|
|
31
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
32
|
+
*/
|
|
33
|
+
static isInstance(obj: any): obj is SqlAlert;
|
|
34
|
+
/**
|
|
35
|
+
* Name of the alert.
|
|
36
|
+
*/
|
|
37
|
+
readonly name: pulumi.Output<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Alert configuration options.
|
|
40
|
+
*/
|
|
41
|
+
readonly options: pulumi.Output<outputs.SqlAlertOptions>;
|
|
42
|
+
/**
|
|
43
|
+
* The identifier of the workspace folder containing the alert. The default is ther user's home folder. The folder identifier is formatted as `folder/<folder_id>`.
|
|
44
|
+
*/
|
|
45
|
+
readonly parent: pulumi.Output<string | undefined>;
|
|
46
|
+
/**
|
|
47
|
+
* ID of the query evaluated by the alert.
|
|
48
|
+
*/
|
|
49
|
+
readonly queryId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Number of seconds after being triggered before the alert rearms itself and can be triggered again. If not defined, alert will never be triggered again.
|
|
52
|
+
*/
|
|
53
|
+
readonly rearm: pulumi.Output<number | undefined>;
|
|
54
|
+
/**
|
|
55
|
+
* Create a SqlAlert resource with the given unique name, arguments, and options.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resource.
|
|
58
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
59
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
60
|
+
*/
|
|
61
|
+
constructor(name: string, args: SqlAlertArgs, opts?: pulumi.CustomResourceOptions);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Input properties used for looking up and filtering SqlAlert resources.
|
|
65
|
+
*/
|
|
66
|
+
export interface SqlAlertState {
|
|
67
|
+
/**
|
|
68
|
+
* Name of the alert.
|
|
69
|
+
*/
|
|
70
|
+
name?: pulumi.Input<string>;
|
|
71
|
+
/**
|
|
72
|
+
* Alert configuration options.
|
|
73
|
+
*/
|
|
74
|
+
options?: pulumi.Input<inputs.SqlAlertOptions>;
|
|
75
|
+
/**
|
|
76
|
+
* The identifier of the workspace folder containing the alert. The default is ther user's home folder. The folder identifier is formatted as `folder/<folder_id>`.
|
|
77
|
+
*/
|
|
78
|
+
parent?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* ID of the query evaluated by the alert.
|
|
81
|
+
*/
|
|
82
|
+
queryId?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Number of seconds after being triggered before the alert rearms itself and can be triggered again. If not defined, alert will never be triggered again.
|
|
85
|
+
*/
|
|
86
|
+
rearm?: pulumi.Input<number>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a SqlAlert resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface SqlAlertArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Name of the alert.
|
|
94
|
+
*/
|
|
95
|
+
name?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Alert configuration options.
|
|
98
|
+
*/
|
|
99
|
+
options: pulumi.Input<inputs.SqlAlertOptions>;
|
|
100
|
+
/**
|
|
101
|
+
* The identifier of the workspace folder containing the alert. The default is ther user's home folder. The folder identifier is formatted as `folder/<folder_id>`.
|
|
102
|
+
*/
|
|
103
|
+
parent?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* ID of the query evaluated by the alert.
|
|
106
|
+
*/
|
|
107
|
+
queryId: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Number of seconds after being triggered before the alert rearms itself and can be triggered again. If not defined, alert will never be triggered again.
|
|
110
|
+
*/
|
|
111
|
+
rearm?: pulumi.Input<number>;
|
|
112
|
+
}
|