@pulumi/databricks 1.85.0 → 1.86.0-alpha.1771301280

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.
Files changed (101) hide show
  1. package/app.d.ts +3 -0
  2. package/app.js +2 -0
  3. package/app.js.map +1 -1
  4. package/appsSpace.d.ts +207 -0
  5. package/appsSpace.js +86 -0
  6. package/appsSpace.js.map +1 -0
  7. package/clusterPolicy.d.ts +3 -0
  8. package/clusterPolicy.js +2 -0
  9. package/clusterPolicy.js.map +1 -1
  10. package/dbfsFile.d.ts +14 -0
  11. package/dbfsFile.js +2 -0
  12. package/dbfsFile.js.map +1 -1
  13. package/endpoint.d.ts +159 -0
  14. package/endpoint.js +102 -0
  15. package/endpoint.js.map +1 -0
  16. package/entitlements.d.ts +14 -0
  17. package/entitlements.js +2 -0
  18. package/entitlements.js.map +1 -1
  19. package/entityTagAssignment.d.ts +24 -0
  20. package/entityTagAssignment.js +6 -0
  21. package/entityTagAssignment.js.map +1 -1
  22. package/getAppsSpace.d.ts +117 -0
  23. package/getAppsSpace.js +30 -0
  24. package/getAppsSpace.js.map +1 -0
  25. package/getAppsSpaces.d.ts +49 -0
  26. package/getAppsSpaces.js +32 -0
  27. package/getAppsSpaces.js.map +1 -0
  28. package/getDatabaseInstances.d.ts +2 -2
  29. package/getEndpoint.d.ts +94 -0
  30. package/getEndpoint.js +46 -0
  31. package/getEndpoint.js.map +1 -0
  32. package/getEndpoints.d.ts +54 -0
  33. package/getEndpoints.js +48 -0
  34. package/getEndpoints.js.map +1 -0
  35. package/getEntityTagAssignment.d.ts +12 -0
  36. package/getEntityTagAssignment.js.map +1 -1
  37. package/getPostgresProjects.d.ts +2 -2
  38. package/index.d.ts +18 -0
  39. package/index.js +30 -8
  40. package/index.js.map +1 -1
  41. package/instancePool.d.ts +3 -0
  42. package/instancePool.js +2 -0
  43. package/instancePool.js.map +1 -1
  44. package/instanceProfile.d.ts +14 -0
  45. package/instanceProfile.js +2 -0
  46. package/instanceProfile.js.map +1 -1
  47. package/metastoreProvider.d.ts +14 -0
  48. package/metastoreProvider.js +2 -0
  49. package/metastoreProvider.js.map +1 -1
  50. package/mount.d.ts +6 -0
  51. package/mount.js +5 -0
  52. package/mount.js.map +1 -1
  53. package/mwsWorkspaces.d.ts +3 -3
  54. package/notificationDestination.d.ts +12 -0
  55. package/notificationDestination.js +2 -0
  56. package/notificationDestination.js.map +1 -1
  57. package/oboToken.d.ts +14 -0
  58. package/oboToken.js +2 -0
  59. package/oboToken.js.map +1 -1
  60. package/package.json +2 -2
  61. package/permissions.d.ts +3 -0
  62. package/permissions.js +2 -0
  63. package/permissions.js.map +1 -1
  64. package/pipeline.d.ts +3 -0
  65. package/pipeline.js +2 -0
  66. package/pipeline.js.map +1 -1
  67. package/repo.d.ts +3 -0
  68. package/repo.js +2 -0
  69. package/repo.js.map +1 -1
  70. package/secretScope.d.ts +12 -0
  71. package/secretScope.js +2 -0
  72. package/secretScope.js.map +1 -1
  73. package/servicePrincipalSecret.d.ts +14 -0
  74. package/servicePrincipalSecret.js +2 -0
  75. package/servicePrincipalSecret.js.map +1 -1
  76. package/sqlDashboard.d.ts +14 -0
  77. package/sqlDashboard.js +2 -0
  78. package/sqlDashboard.js.map +1 -1
  79. package/sqlGlobalConfig.d.ts +14 -0
  80. package/sqlGlobalConfig.js +2 -0
  81. package/sqlGlobalConfig.js.map +1 -1
  82. package/sqlQuery.d.ts +3 -0
  83. package/sqlQuery.js +2 -0
  84. package/sqlQuery.js.map +1 -1
  85. package/sqlVisualization.d.ts +14 -0
  86. package/sqlVisualization.js +2 -0
  87. package/sqlVisualization.js.map +1 -1
  88. package/sqlWidget.d.ts +12 -0
  89. package/sqlWidget.js +2 -0
  90. package/sqlWidget.js.map +1 -1
  91. package/table.d.ts +3 -0
  92. package/table.js +2 -0
  93. package/table.js.map +1 -1
  94. package/token.d.ts +17 -3
  95. package/token.js +2 -0
  96. package/token.js.map +1 -1
  97. package/types/input.d.ts +312 -6
  98. package/types/output.d.ts +863 -21
  99. package/workspaceConf.d.ts +14 -0
  100. package/workspaceConf.js +2 -0
  101. package/workspaceConf.js.map +1 -1
package/app.d.ts CHANGED
@@ -134,6 +134,7 @@ export declare class App extends pulumi.CustomResource {
134
134
  * name of the app service principal
135
135
  */
136
136
  readonly servicePrincipalName: pulumi.Output<string>;
137
+ readonly space: pulumi.Output<string | undefined>;
137
138
  /**
138
139
  * The update time of the app.
139
140
  */
@@ -232,6 +233,7 @@ export interface AppState {
232
233
  * name of the app service principal
233
234
  */
234
235
  servicePrincipalName?: pulumi.Input<string>;
236
+ space?: pulumi.Input<string>;
235
237
  /**
236
238
  * The update time of the app.
237
239
  */
@@ -277,6 +279,7 @@ export interface AppArgs {
277
279
  * A list of resources that the app have access to.
278
280
  */
279
281
  resources?: pulumi.Input<pulumi.Input<inputs.AppResource>[]>;
282
+ space?: pulumi.Input<string>;
280
283
  usagePolicyId?: pulumi.Input<string>;
281
284
  /**
282
285
  * A list of api scopes granted to the user access token.
package/app.js CHANGED
@@ -105,6 +105,7 @@ class App extends pulumi.CustomResource {
105
105
  resourceInputs["servicePrincipalClientId"] = state?.servicePrincipalClientId;
106
106
  resourceInputs["servicePrincipalId"] = state?.servicePrincipalId;
107
107
  resourceInputs["servicePrincipalName"] = state?.servicePrincipalName;
108
+ resourceInputs["space"] = state?.space;
108
109
  resourceInputs["updateTime"] = state?.updateTime;
109
110
  resourceInputs["updater"] = state?.updater;
110
111
  resourceInputs["url"] = state?.url;
@@ -121,6 +122,7 @@ class App extends pulumi.CustomResource {
121
122
  resourceInputs["noCompute"] = args?.noCompute;
122
123
  resourceInputs["providerConfig"] = args?.providerConfig;
123
124
  resourceInputs["resources"] = args?.resources;
125
+ resourceInputs["space"] = args?.space;
124
126
  resourceInputs["usagePolicyId"] = args?.usagePolicyId;
125
127
  resourceInputs["userApiScopes"] = args?.userApiScopes;
126
128
  resourceInputs["activeDeployment"] = undefined /*out*/;
package/app.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.js","sourceRoot":"","sources":["../app.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"app.js","sourceRoot":"","sources":["../app.ts"],"names":[],"mappings":"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"}
package/appsSpace.d.ts ADDED
@@ -0,0 +1,207 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
+ */
7
+ export declare class AppsSpace extends pulumi.CustomResource {
8
+ /**
9
+ * Get an existing AppsSpace resource's state with the given name, ID, and optional extra
10
+ * properties used to qualify the lookup.
11
+ *
12
+ * @param name The _unique_ name of the resulting resource.
13
+ * @param id The _unique_ provider ID of the resource to lookup.
14
+ * @param state Any extra arguments used during the lookup.
15
+ * @param opts Optional settings to control the behavior of the CustomResource.
16
+ */
17
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppsSpaceState, opts?: pulumi.CustomResourceOptions): AppsSpace;
18
+ /**
19
+ * Returns true if the given object is an instance of AppsSpace. This is designed to work even
20
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
21
+ */
22
+ static isInstance(obj: any): obj is AppsSpace;
23
+ /**
24
+ * (string) - The creation time of the app space. Formatted timestamp in ISO 6801
25
+ */
26
+ readonly createTime: pulumi.Output<string>;
27
+ /**
28
+ * (string) - The email of the user that created the app space
29
+ */
30
+ readonly creator: pulumi.Output<string>;
31
+ /**
32
+ * The description of the app space
33
+ */
34
+ readonly description: pulumi.Output<string | undefined>;
35
+ /**
36
+ * (string) - The effective usage policy ID used by apps in the space
37
+ */
38
+ readonly effectiveUsagePolicyId: pulumi.Output<string>;
39
+ /**
40
+ * (list of string) - The effective api scopes granted to the user access token
41
+ */
42
+ readonly effectiveUserApiScopes: pulumi.Output<string[]>;
43
+ /**
44
+ * (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
45
+ * It must be unique within the workspace
46
+ */
47
+ readonly name: pulumi.Output<string>;
48
+ /**
49
+ * (string) - The OAuth2 app client ID for the app space
50
+ */
51
+ readonly oauth2AppClientId: pulumi.Output<string>;
52
+ /**
53
+ * (string) - The OAuth2 app integration ID for the app space
54
+ */
55
+ readonly oauth2AppIntegrationId: pulumi.Output<string>;
56
+ /**
57
+ * Configure the provider for management through account provider.
58
+ */
59
+ readonly providerConfig: pulumi.Output<outputs.AppsSpaceProviderConfig | undefined>;
60
+ /**
61
+ * Resources for the app space. Resources configured at the space level are available to all apps in the space
62
+ */
63
+ readonly resources: pulumi.Output<outputs.AppsSpaceResource[] | undefined>;
64
+ /**
65
+ * (string) - The service principal client ID for the app space
66
+ */
67
+ readonly servicePrincipalClientId: pulumi.Output<string>;
68
+ /**
69
+ * (integer) - The service principal ID for the app space
70
+ */
71
+ readonly servicePrincipalId: pulumi.Output<number>;
72
+ /**
73
+ * (string) - The service principal name for the app space
74
+ */
75
+ readonly servicePrincipalName: pulumi.Output<string>;
76
+ /**
77
+ * (SpaceStatus) - The status of the app space
78
+ */
79
+ readonly status: pulumi.Output<outputs.AppsSpaceStatus>;
80
+ /**
81
+ * (string) - The update time of the app space. Formatted timestamp in ISO 6801
82
+ */
83
+ readonly updateTime: pulumi.Output<string>;
84
+ /**
85
+ * (string) - The email of the user that last updated the app space
86
+ */
87
+ readonly updater: pulumi.Output<string>;
88
+ /**
89
+ * The usage policy ID for managing cost at the space level
90
+ */
91
+ readonly usagePolicyId: pulumi.Output<string | undefined>;
92
+ /**
93
+ * OAuth scopes for apps in the space
94
+ */
95
+ readonly userApiScopes: pulumi.Output<string[] | undefined>;
96
+ /**
97
+ * Create a AppsSpace resource with the given unique name, arguments, and options.
98
+ *
99
+ * @param name The _unique_ name of the resource.
100
+ * @param args The arguments to use to populate this resource's properties.
101
+ * @param opts A bag of options that control this resource's behavior.
102
+ */
103
+ constructor(name: string, args?: AppsSpaceArgs, opts?: pulumi.CustomResourceOptions);
104
+ }
105
+ /**
106
+ * Input properties used for looking up and filtering AppsSpace resources.
107
+ */
108
+ export interface AppsSpaceState {
109
+ /**
110
+ * (string) - The creation time of the app space. Formatted timestamp in ISO 6801
111
+ */
112
+ createTime?: pulumi.Input<string>;
113
+ /**
114
+ * (string) - The email of the user that created the app space
115
+ */
116
+ creator?: pulumi.Input<string>;
117
+ /**
118
+ * The description of the app space
119
+ */
120
+ description?: pulumi.Input<string>;
121
+ /**
122
+ * (string) - The effective usage policy ID used by apps in the space
123
+ */
124
+ effectiveUsagePolicyId?: pulumi.Input<string>;
125
+ /**
126
+ * (list of string) - The effective api scopes granted to the user access token
127
+ */
128
+ effectiveUserApiScopes?: pulumi.Input<pulumi.Input<string>[]>;
129
+ /**
130
+ * (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
131
+ * It must be unique within the workspace
132
+ */
133
+ name?: pulumi.Input<string>;
134
+ /**
135
+ * (string) - The OAuth2 app client ID for the app space
136
+ */
137
+ oauth2AppClientId?: pulumi.Input<string>;
138
+ /**
139
+ * (string) - The OAuth2 app integration ID for the app space
140
+ */
141
+ oauth2AppIntegrationId?: pulumi.Input<string>;
142
+ /**
143
+ * Configure the provider for management through account provider.
144
+ */
145
+ providerConfig?: pulumi.Input<inputs.AppsSpaceProviderConfig>;
146
+ /**
147
+ * Resources for the app space. Resources configured at the space level are available to all apps in the space
148
+ */
149
+ resources?: pulumi.Input<pulumi.Input<inputs.AppsSpaceResource>[]>;
150
+ /**
151
+ * (string) - The service principal client ID for the app space
152
+ */
153
+ servicePrincipalClientId?: pulumi.Input<string>;
154
+ /**
155
+ * (integer) - The service principal ID for the app space
156
+ */
157
+ servicePrincipalId?: pulumi.Input<number>;
158
+ /**
159
+ * (string) - The service principal name for the app space
160
+ */
161
+ servicePrincipalName?: pulumi.Input<string>;
162
+ /**
163
+ * (SpaceStatus) - The status of the app space
164
+ */
165
+ status?: pulumi.Input<inputs.AppsSpaceStatus>;
166
+ /**
167
+ * (string) - The update time of the app space. Formatted timestamp in ISO 6801
168
+ */
169
+ updateTime?: pulumi.Input<string>;
170
+ /**
171
+ * (string) - The email of the user that last updated the app space
172
+ */
173
+ updater?: pulumi.Input<string>;
174
+ /**
175
+ * The usage policy ID for managing cost at the space level
176
+ */
177
+ usagePolicyId?: pulumi.Input<string>;
178
+ /**
179
+ * OAuth scopes for apps in the space
180
+ */
181
+ userApiScopes?: pulumi.Input<pulumi.Input<string>[]>;
182
+ }
183
+ /**
184
+ * The set of arguments for constructing a AppsSpace resource.
185
+ */
186
+ export interface AppsSpaceArgs {
187
+ /**
188
+ * The description of the app space
189
+ */
190
+ description?: pulumi.Input<string>;
191
+ /**
192
+ * Configure the provider for management through account provider.
193
+ */
194
+ providerConfig?: pulumi.Input<inputs.AppsSpaceProviderConfig>;
195
+ /**
196
+ * Resources for the app space. Resources configured at the space level are available to all apps in the space
197
+ */
198
+ resources?: pulumi.Input<pulumi.Input<inputs.AppsSpaceResource>[]>;
199
+ /**
200
+ * The usage policy ID for managing cost at the space level
201
+ */
202
+ usagePolicyId?: pulumi.Input<string>;
203
+ /**
204
+ * OAuth scopes for apps in the space
205
+ */
206
+ userApiScopes?: pulumi.Input<pulumi.Input<string>[]>;
207
+ }
package/appsSpace.js ADDED
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.AppsSpace = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
10
+ */
11
+ class AppsSpace extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing AppsSpace resource's state with the given name, ID, and optional extra
14
+ * properties used to qualify the lookup.
15
+ *
16
+ * @param name The _unique_ name of the resulting resource.
17
+ * @param id The _unique_ provider ID of the resource to lookup.
18
+ * @param state Any extra arguments used during the lookup.
19
+ * @param opts Optional settings to control the behavior of the CustomResource.
20
+ */
21
+ static get(name, id, state, opts) {
22
+ return new AppsSpace(name, state, { ...opts, id: id });
23
+ }
24
+ /**
25
+ * Returns true if the given object is an instance of AppsSpace. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj) {
29
+ if (obj === undefined || obj === null) {
30
+ return false;
31
+ }
32
+ return obj['__pulumiType'] === AppsSpace.__pulumiType;
33
+ }
34
+ constructor(name, argsOrState, opts) {
35
+ let resourceInputs = {};
36
+ opts = opts || {};
37
+ if (opts.id) {
38
+ const state = argsOrState;
39
+ resourceInputs["createTime"] = state?.createTime;
40
+ resourceInputs["creator"] = state?.creator;
41
+ resourceInputs["description"] = state?.description;
42
+ resourceInputs["effectiveUsagePolicyId"] = state?.effectiveUsagePolicyId;
43
+ resourceInputs["effectiveUserApiScopes"] = state?.effectiveUserApiScopes;
44
+ resourceInputs["name"] = state?.name;
45
+ resourceInputs["oauth2AppClientId"] = state?.oauth2AppClientId;
46
+ resourceInputs["oauth2AppIntegrationId"] = state?.oauth2AppIntegrationId;
47
+ resourceInputs["providerConfig"] = state?.providerConfig;
48
+ resourceInputs["resources"] = state?.resources;
49
+ resourceInputs["servicePrincipalClientId"] = state?.servicePrincipalClientId;
50
+ resourceInputs["servicePrincipalId"] = state?.servicePrincipalId;
51
+ resourceInputs["servicePrincipalName"] = state?.servicePrincipalName;
52
+ resourceInputs["status"] = state?.status;
53
+ resourceInputs["updateTime"] = state?.updateTime;
54
+ resourceInputs["updater"] = state?.updater;
55
+ resourceInputs["usagePolicyId"] = state?.usagePolicyId;
56
+ resourceInputs["userApiScopes"] = state?.userApiScopes;
57
+ }
58
+ else {
59
+ const args = argsOrState;
60
+ resourceInputs["description"] = args?.description;
61
+ resourceInputs["providerConfig"] = args?.providerConfig;
62
+ resourceInputs["resources"] = args?.resources;
63
+ resourceInputs["usagePolicyId"] = args?.usagePolicyId;
64
+ resourceInputs["userApiScopes"] = args?.userApiScopes;
65
+ resourceInputs["createTime"] = undefined /*out*/;
66
+ resourceInputs["creator"] = undefined /*out*/;
67
+ resourceInputs["effectiveUsagePolicyId"] = undefined /*out*/;
68
+ resourceInputs["effectiveUserApiScopes"] = undefined /*out*/;
69
+ resourceInputs["name"] = undefined /*out*/;
70
+ resourceInputs["oauth2AppClientId"] = undefined /*out*/;
71
+ resourceInputs["oauth2AppIntegrationId"] = undefined /*out*/;
72
+ resourceInputs["servicePrincipalClientId"] = undefined /*out*/;
73
+ resourceInputs["servicePrincipalId"] = undefined /*out*/;
74
+ resourceInputs["servicePrincipalName"] = undefined /*out*/;
75
+ resourceInputs["status"] = undefined /*out*/;
76
+ resourceInputs["updateTime"] = undefined /*out*/;
77
+ resourceInputs["updater"] = undefined /*out*/;
78
+ }
79
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
80
+ super(AppsSpace.__pulumiType, name, resourceInputs, opts);
81
+ }
82
+ }
83
+ exports.AppsSpace = AppsSpace;
84
+ /** @internal */
85
+ AppsSpace.__pulumiType = 'databricks:index/appsSpace:AppsSpace';
86
+ //# sourceMappingURL=appsSpace.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appsSpace.js","sourceRoot":"","sources":["../appsSpace.ts"],"names":[],"mappings":"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"}
@@ -179,6 +179,7 @@ export declare class ClusterPolicy extends pulumi.CustomResource {
179
179
  * Canonical unique identifier for the cluster policy.
180
180
  */
181
181
  readonly policyId: pulumi.Output<string>;
182
+ readonly providerConfig: pulumi.Output<outputs.ClusterPolicyProviderConfig | undefined>;
182
183
  /**
183
184
  * Create a ClusterPolicy resource with the given unique name, arguments, and options.
184
185
  *
@@ -221,6 +222,7 @@ export interface ClusterPolicyState {
221
222
  * Canonical unique identifier for the cluster policy.
222
223
  */
223
224
  policyId?: pulumi.Input<string>;
225
+ providerConfig?: pulumi.Input<inputs.ClusterPolicyProviderConfig>;
224
226
  }
225
227
  /**
226
228
  * The set of arguments for constructing a ClusterPolicy resource.
@@ -251,4 +253,5 @@ export interface ClusterPolicyArgs {
251
253
  * ID of the policy family. The cluster policy's policy definition inherits the policy family's policy definition. Cannot be used with `definition`. Use `policyFamilyDefinitionOverrides` instead to customize the policy definition.
252
254
  */
253
255
  policyFamilyId?: pulumi.Input<string>;
256
+ providerConfig?: pulumi.Input<inputs.ClusterPolicyProviderConfig>;
254
257
  }
package/clusterPolicy.js CHANGED
@@ -174,6 +174,7 @@ class ClusterPolicy extends pulumi.CustomResource {
174
174
  resourceInputs["policyFamilyDefinitionOverrides"] = state?.policyFamilyDefinitionOverrides;
175
175
  resourceInputs["policyFamilyId"] = state?.policyFamilyId;
176
176
  resourceInputs["policyId"] = state?.policyId;
177
+ resourceInputs["providerConfig"] = state?.providerConfig;
177
178
  }
178
179
  else {
179
180
  const args = argsOrState;
@@ -184,6 +185,7 @@ class ClusterPolicy extends pulumi.CustomResource {
184
185
  resourceInputs["name"] = args?.name;
185
186
  resourceInputs["policyFamilyDefinitionOverrides"] = args?.policyFamilyDefinitionOverrides;
186
187
  resourceInputs["policyFamilyId"] = args?.policyFamilyId;
188
+ resourceInputs["providerConfig"] = args?.providerConfig;
187
189
  resourceInputs["policyId"] = undefined /*out*/;
188
190
  }
189
191
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"clusterPolicy.js","sourceRoot":"","sources":["../clusterPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoIG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAwCD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,iCAAiC,CAAC,GAAG,KAAK,EAAE,+BAA+B,CAAC;YAC3F,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;SAChD;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,iCAAiC,CAAC,GAAG,IAAI,EAAE,+BAA+B,CAAC;YAC1F,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AA5FL,sCA6FC;AA/EG,gBAAgB;AACO,0BAAY,GAAG,8CAA8C,CAAC"}
1
+ {"version":3,"file":"clusterPolicy.js","sourceRoot":"","sources":["../clusterPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoIG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAyCD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,iCAAiC,CAAC,GAAG,KAAK,EAAE,+BAA+B,CAAC;YAC3F,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;SAC5D;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,iCAAiC,CAAC,GAAG,IAAI,EAAE,+BAA+B,CAAC;YAC1F,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AA/FL,sCAgGC;AAlFG,gBAAgB;AACO,0BAAY,GAAG,8CAA8C,CAAC"}
package/dbfsFile.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
  * > Please switch to databricks.File or databricks.WorkspaceFile to manage files. Databricks recommends against storing any production data or sensitive information in the DBFS root.
4
6
  *
@@ -39,6 +41,10 @@ export declare class DbfsFile extends pulumi.CustomResource {
39
41
  * The path of the file in which you wish to save.
40
42
  */
41
43
  readonly path: pulumi.Output<string>;
44
+ /**
45
+ * Configure the provider for management through account provider. This block consists of the following fields:
46
+ */
47
+ readonly providerConfig: pulumi.Output<outputs.DbfsFileProviderConfig | undefined>;
42
48
  /**
43
49
  * The full absolute path to the file. Conflicts with `contentBase64`.
44
50
  */
@@ -73,6 +79,10 @@ export interface DbfsFileState {
73
79
  * The path of the file in which you wish to save.
74
80
  */
75
81
  path?: pulumi.Input<string>;
82
+ /**
83
+ * Configure the provider for management through account provider. This block consists of the following fields:
84
+ */
85
+ providerConfig?: pulumi.Input<inputs.DbfsFileProviderConfig>;
76
86
  /**
77
87
  * The full absolute path to the file. Conflicts with `contentBase64`.
78
88
  */
@@ -91,6 +101,10 @@ export interface DbfsFileArgs {
91
101
  * The path of the file in which you wish to save.
92
102
  */
93
103
  path: pulumi.Input<string>;
104
+ /**
105
+ * Configure the provider for management through account provider. This block consists of the following fields:
106
+ */
107
+ providerConfig?: pulumi.Input<inputs.DbfsFileProviderConfig>;
94
108
  /**
95
109
  * The full absolute path to the file. Conflicts with `contentBase64`.
96
110
  */
package/dbfsFile.js CHANGED
@@ -45,6 +45,7 @@ class DbfsFile extends pulumi.CustomResource {
45
45
  resourceInputs["fileSize"] = state?.fileSize;
46
46
  resourceInputs["md5"] = state?.md5;
47
47
  resourceInputs["path"] = state?.path;
48
+ resourceInputs["providerConfig"] = state?.providerConfig;
48
49
  resourceInputs["source"] = state?.source;
49
50
  }
50
51
  else {
@@ -55,6 +56,7 @@ class DbfsFile extends pulumi.CustomResource {
55
56
  resourceInputs["contentBase64"] = args?.contentBase64;
56
57
  resourceInputs["md5"] = args?.md5;
57
58
  resourceInputs["path"] = args?.path;
59
+ resourceInputs["providerConfig"] = args?.providerConfig;
58
60
  resourceInputs["source"] = args?.source;
59
61
  resourceInputs["dbfsPath"] = undefined /*out*/;
60
62
  resourceInputs["fileSize"] = undefined /*out*/;
package/dbfsFile.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"dbfsFile.js","sourceRoot":"","sources":["../dbfsFile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAgCD,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AAnFL,4BAoFC;AAtEG,gBAAgB;AACO,qBAAY,GAAG,oCAAoC,CAAC"}
1
+ {"version":3,"file":"dbfsFile.js","sourceRoot":"","sources":["../dbfsFile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAoCD,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AAzFL,4BA0FC;AA5EG,gBAAgB;AACO,qBAAY,GAAG,oCAAoC,CAAC"}
package/endpoint.d.ts ADDED
@@ -0,0 +1,159 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
+ *
7
+ * Endpoint resource manages network connectivity endpoints for private access to Databricks workspaces.
8
+ *
9
+ * > **Note** This resource can only be used with an account-level provider!
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ### Example for Azure cloud
14
+ * This is an example for creating an endpoint in Azure cloud:
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as databricks from "@pulumi/databricks";
18
+ *
19
+ * const _this = new databricks.Endpoint("this", {
20
+ * accountId: "eae3abf6-1496-494e-9983-4660a5ad5aab",
21
+ * endpointName: "my-private-endpoint",
22
+ * region: "westus",
23
+ * azurePrivateEndpointInfo: {
24
+ * privateEndpointName: "my-pe",
25
+ * privateEndpointResourceGuid: "12345678-1234-1234-1234-123456789abc",
26
+ * },
27
+ * });
28
+ * ```
29
+ */
30
+ export declare class Endpoint extends pulumi.CustomResource {
31
+ /**
32
+ * Get an existing Endpoint resource's state with the given name, ID, and optional extra
33
+ * properties used to qualify the lookup.
34
+ *
35
+ * @param name The _unique_ name of the resulting resource.
36
+ * @param id The _unique_ provider ID of the resource to lookup.
37
+ * @param state Any extra arguments used during the lookup.
38
+ * @param opts Optional settings to control the behavior of the CustomResource.
39
+ */
40
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EndpointState, opts?: pulumi.CustomResourceOptions): Endpoint;
41
+ /**
42
+ * Returns true if the given object is an instance of Endpoint. This is designed to work even
43
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
44
+ */
45
+ static isInstance(obj: any): obj is Endpoint;
46
+ /**
47
+ * (string) - The Databricks Account in which the endpoint object exists
48
+ */
49
+ readonly accountId: pulumi.Output<string>;
50
+ /**
51
+ * Info for an Azure private endpoint
52
+ */
53
+ readonly azurePrivateEndpointInfo: pulumi.Output<outputs.EndpointAzurePrivateEndpointInfo | undefined>;
54
+ /**
55
+ * (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
56
+ */
57
+ readonly createTime: pulumi.Output<string>;
58
+ /**
59
+ * The human-readable display name of this endpoint.
60
+ * The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens,
61
+ * with the first character a letter, the last a letter or a number, and a 63 character maximum
62
+ */
63
+ readonly displayName: pulumi.Output<string>;
64
+ /**
65
+ * (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
66
+ */
67
+ readonly endpointId: pulumi.Output<string>;
68
+ /**
69
+ * (string) - The resource name of the endpoint, which uniquely identifies the endpoint
70
+ */
71
+ readonly name: pulumi.Output<string>;
72
+ readonly parent: pulumi.Output<string>;
73
+ /**
74
+ * The cloud provider region where this endpoint is located
75
+ */
76
+ readonly region: pulumi.Output<string>;
77
+ /**
78
+ * (string) - The state of the endpoint. The endpoint can only be used if the state is `APPROVED`. Possible values are: `APPROVED`, `DISCONNECTED`, `FAILED`, `PENDING`
79
+ */
80
+ readonly state: pulumi.Output<string>;
81
+ /**
82
+ * (string) - The use case that determines the type of network connectivity this endpoint provides.
83
+ * This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: `SERVICE_DIRECT`
84
+ */
85
+ readonly useCase: pulumi.Output<string>;
86
+ /**
87
+ * Create a Endpoint resource with the given unique name, arguments, and options.
88
+ *
89
+ * @param name The _unique_ name of the resource.
90
+ * @param args The arguments to use to populate this resource's properties.
91
+ * @param opts A bag of options that control this resource's behavior.
92
+ */
93
+ constructor(name: string, args: EndpointArgs, opts?: pulumi.CustomResourceOptions);
94
+ }
95
+ /**
96
+ * Input properties used for looking up and filtering Endpoint resources.
97
+ */
98
+ export interface EndpointState {
99
+ /**
100
+ * (string) - The Databricks Account in which the endpoint object exists
101
+ */
102
+ accountId?: pulumi.Input<string>;
103
+ /**
104
+ * Info for an Azure private endpoint
105
+ */
106
+ azurePrivateEndpointInfo?: pulumi.Input<inputs.EndpointAzurePrivateEndpointInfo>;
107
+ /**
108
+ * (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
109
+ */
110
+ createTime?: pulumi.Input<string>;
111
+ /**
112
+ * The human-readable display name of this endpoint.
113
+ * The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens,
114
+ * with the first character a letter, the last a letter or a number, and a 63 character maximum
115
+ */
116
+ displayName?: pulumi.Input<string>;
117
+ /**
118
+ * (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
119
+ */
120
+ endpointId?: pulumi.Input<string>;
121
+ /**
122
+ * (string) - The resource name of the endpoint, which uniquely identifies the endpoint
123
+ */
124
+ name?: pulumi.Input<string>;
125
+ parent?: pulumi.Input<string>;
126
+ /**
127
+ * The cloud provider region where this endpoint is located
128
+ */
129
+ region?: pulumi.Input<string>;
130
+ /**
131
+ * (string) - The state of the endpoint. The endpoint can only be used if the state is `APPROVED`. Possible values are: `APPROVED`, `DISCONNECTED`, `FAILED`, `PENDING`
132
+ */
133
+ state?: pulumi.Input<string>;
134
+ /**
135
+ * (string) - The use case that determines the type of network connectivity this endpoint provides.
136
+ * This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: `SERVICE_DIRECT`
137
+ */
138
+ useCase?: pulumi.Input<string>;
139
+ }
140
+ /**
141
+ * The set of arguments for constructing a Endpoint resource.
142
+ */
143
+ export interface EndpointArgs {
144
+ /**
145
+ * Info for an Azure private endpoint
146
+ */
147
+ azurePrivateEndpointInfo?: pulumi.Input<inputs.EndpointAzurePrivateEndpointInfo>;
148
+ /**
149
+ * The human-readable display name of this endpoint.
150
+ * The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens,
151
+ * with the first character a letter, the last a letter or a number, and a 63 character maximum
152
+ */
153
+ displayName: pulumi.Input<string>;
154
+ parent: pulumi.Input<string>;
155
+ /**
156
+ * The cloud provider region where this endpoint is located
157
+ */
158
+ region: pulumi.Input<string>;
159
+ }