@pulumi/databricks 1.100.0-alpha.1784183363 → 1.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accountNetworkPolicy.d.ts +23 -0
- package/accountNetworkPolicy.d.ts.map +1 -1
- package/accountNetworkPolicy.js +23 -0
- package/accountNetworkPolicy.js.map +1 -1
- package/aiSearchEndpoint.d.ts +1 -1
- package/aiSearchEndpoint.js +1 -1
- package/aiSearchIndex.d.ts +1 -1
- package/aiSearchIndex.js +1 -1
- package/alertV2.d.ts +1 -1
- package/alertV2.js +1 -1
- package/disasterRecoveryFailoverGroup.d.ts +1 -1
- package/disasterRecoveryFailoverGroup.js +1 -1
- package/disasterRecoveryStableUrl.d.ts +33 -1
- package/disasterRecoveryStableUrl.d.ts.map +1 -1
- package/disasterRecoveryStableUrl.js +5 -1
- package/disasterRecoveryStableUrl.js.map +1 -1
- package/getAiSearchEndpoint.d.ts +2 -2
- package/getAiSearchEndpoint.js +2 -2
- package/getAiSearchEndpoints.d.ts +2 -2
- package/getAiSearchEndpoints.js +2 -2
- package/getAiSearchIndex.d.ts +2 -2
- package/getAiSearchIndex.js +2 -2
- package/getAiSearchIndexes.d.ts +2 -2
- package/getAiSearchIndexes.js +2 -2
- package/getAlertV2.d.ts +2 -2
- package/getAlertV2.js +2 -2
- package/getAlertsV2.d.ts +2 -2
- package/getAlertsV2.js +2 -2
- package/getDisasterRecoveryFailoverGroup.d.ts +2 -2
- package/getDisasterRecoveryFailoverGroup.js +2 -2
- package/getDisasterRecoveryFailoverGroups.d.ts +2 -2
- package/getDisasterRecoveryFailoverGroups.js +2 -2
- package/getDisasterRecoveryStableUrl.d.ts +18 -2
- package/getDisasterRecoveryStableUrl.d.ts.map +1 -1
- package/getDisasterRecoveryStableUrl.js +2 -2
- package/getDisasterRecoveryStableUrl.js.map +1 -1
- package/getDisasterRecoveryStableUrls.d.ts +2 -2
- package/getDisasterRecoveryStableUrls.js +2 -2
- package/getMlflowExperiment.d.ts +3 -0
- package/getMlflowExperiment.d.ts.map +1 -1
- package/getMlflowExperiment.js +2 -0
- package/getMlflowExperiment.js.map +1 -1
- package/getPostgresCdfConfig.d.ts +115 -0
- package/getPostgresCdfConfig.d.ts.map +1 -0
- package/getPostgresCdfConfig.js +89 -0
- package/getPostgresCdfConfig.js.map +1 -0
- package/getPostgresCdfConfigs.d.ts +97 -0
- package/getPostgresCdfConfigs.d.ts.map +1 -0
- package/getPostgresCdfConfigs.js +91 -0
- package/getPostgresCdfConfigs.js.map +1 -0
- package/getPostgresCdfStatus.d.ts +123 -0
- package/getPostgresCdfStatus.d.ts.map +1 -0
- package/getPostgresCdfStatus.js +89 -0
- package/getPostgresCdfStatus.js.map +1 -0
- package/getPostgresCdfStatuses.d.ts +97 -0
- package/getPostgresCdfStatuses.d.ts.map +1 -0
- package/getPostgresCdfStatuses.js +91 -0
- package/getPostgresCdfStatuses.js.map +1 -0
- package/getSupervisorAgentTool.d.ts +1 -1
- package/index.d.ts +15 -0
- package/index.d.ts.map +1 -1
- package/index.js +22 -5
- package/index.js.map +1 -1
- package/job.d.ts +3 -0
- package/job.d.ts.map +1 -1
- package/job.js +2 -0
- package/job.js.map +1 -1
- package/mlflowExperiment.d.ts +3 -0
- package/mlflowExperiment.d.ts.map +1 -1
- package/mlflowExperiment.js +2 -0
- package/mlflowExperiment.js.map +1 -1
- package/mwsWorkspaces.d.ts +3 -3
- package/package.json +2 -2
- package/postgresCdfConfig.d.ts +188 -0
- package/postgresCdfConfig.d.ts.map +1 -0
- package/postgresCdfConfig.js +142 -0
- package/postgresCdfConfig.js.map +1 -0
- package/supervisorAgentTool.d.ts +3 -3
- package/types/input.d.ts +149 -13
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +265 -17
- package/types/output.d.ts.map +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
4
4
|
*
|
|
5
5
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
6
6
|
*
|
|
@@ -36,6 +36,15 @@ export interface GetDisasterRecoveryStableUrlArgs {
|
|
|
36
36
|
* A collection of values returned by getDisasterRecoveryStableUrl.
|
|
37
37
|
*/
|
|
38
38
|
export interface GetDisasterRecoveryStableUrlResult {
|
|
39
|
+
/**
|
|
40
|
+
* (string) - The workspace this stable URL currently routes to. Set to
|
|
41
|
+
* `initialWorkspaceId` at creation, advanced to the failover group's primary
|
|
42
|
+
* while attached (including across a failover), and preserved when the stable
|
|
43
|
+
* URL is detached from its failover group. Read this to see where an unattached
|
|
44
|
+
* stable URL points: after a failover followed by a detach it reflects the
|
|
45
|
+
* post-failover primary, not `initialWorkspaceId`
|
|
46
|
+
*/
|
|
47
|
+
readonly effectiveWorkspaceId: string;
|
|
39
48
|
/**
|
|
40
49
|
* (string) - Fully qualified resource name of the FailoverGroup this stable URL is
|
|
41
50
|
* currently linked to, in the format
|
|
@@ -58,6 +67,13 @@ export interface GetDisasterRecoveryStableUrlResult {
|
|
|
58
67
|
* Format: accounts/{account_id}/stable-urls/{stable_url_id}
|
|
59
68
|
*/
|
|
60
69
|
readonly name: string;
|
|
70
|
+
/**
|
|
71
|
+
* (string) - The stable workspace ID for this stable URL. Generated on creation and
|
|
72
|
+
* immutable thereafter; identifies the URL across failovers and is the same
|
|
73
|
+
* value embedded in the `url` (as the `w=` query parameter for SPOG URLs,
|
|
74
|
+
* or in the `conn-<id>` hostname for Private-Link URLs)
|
|
75
|
+
*/
|
|
76
|
+
readonly stableWorkspaceId: string;
|
|
61
77
|
/**
|
|
62
78
|
* (string) - The stable URL endpoint. Generated on creation and
|
|
63
79
|
* immutable thereafter. For non-Private-Link workspaces this is
|
|
@@ -67,7 +83,7 @@ export interface GetDisasterRecoveryStableUrlResult {
|
|
|
67
83
|
readonly url: string;
|
|
68
84
|
}
|
|
69
85
|
/**
|
|
70
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
71
87
|
*
|
|
72
88
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
73
89
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDisasterRecoveryStableUrl.d.ts","sourceRoot":"","sources":["../getDisasterRecoveryStableUrl.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,kCAAkC,CAAC,CAK7J;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;;OAKG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,EAAE,MAAM,CAAC;IACpC;;;OAGG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;;;OAKG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACxB;AACD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,sCAAsC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,kCAAkC,CAAC,CAKrL;AAED;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC9B"}
|
|
1
|
+
{"version":3,"file":"getDisasterRecoveryStableUrl.d.ts","sourceRoot":"","sources":["../getDisasterRecoveryStableUrl.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,kCAAkC,CAAC,CAK7J;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;;;;OAOG;IACH,QAAQ,CAAC,oBAAoB,EAAE,MAAM,CAAC;IACtC;;;;;OAKG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,EAAE,MAAM,CAAC;IACpC;;;OAGG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;;;OAKG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC;;;;;OAKG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACxB;AACD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,sCAAsC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,kCAAkC,CAAC,CAKrL;AAED;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC9B"}
|
|
@@ -29,7 +29,7 @@ exports.getDisasterRecoveryStableUrlOutput = exports.getDisasterRecoveryStableUr
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
33
33
|
*
|
|
34
34
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
35
35
|
*
|
|
@@ -58,7 +58,7 @@ function getDisasterRecoveryStableUrl(args, opts) {
|
|
|
58
58
|
}
|
|
59
59
|
exports.getDisasterRecoveryStableUrl = getDisasterRecoveryStableUrl;
|
|
60
60
|
/**
|
|
61
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
62
62
|
*
|
|
63
63
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
64
64
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDisasterRecoveryStableUrl.js","sourceRoot":"","sources":["../getDisasterRecoveryStableUrl.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4EAA4E,EAAE;QACvG,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC;AA+
|
|
1
|
+
{"version":3,"file":"getDisasterRecoveryStableUrl.js","sourceRoot":"","sources":["../getDisasterRecoveryStableUrl.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4EAA4E,EAAE;QACvG,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC;AA+DD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAAiC;IAC9H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4EAA4E,EAAE;QAC7G,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gFAKC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
5
5
|
*
|
|
6
6
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
7
7
|
*
|
|
@@ -52,7 +52,7 @@ export interface GetDisasterRecoveryStableUrlsResult {
|
|
|
52
52
|
readonly stableUrls: outputs.GetDisasterRecoveryStableUrlsStableUrl[];
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
56
56
|
*
|
|
57
57
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
58
58
|
*
|
|
@@ -29,7 +29,7 @@ exports.getDisasterRecoveryStableUrlsOutput = exports.getDisasterRecoveryStableU
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
33
33
|
*
|
|
34
34
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
35
35
|
*
|
|
@@ -57,7 +57,7 @@ function getDisasterRecoveryStableUrls(args, opts) {
|
|
|
57
57
|
}
|
|
58
58
|
exports.getDisasterRecoveryStableUrls = getDisasterRecoveryStableUrls;
|
|
59
59
|
/**
|
|
60
|
-
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
61
61
|
*
|
|
62
62
|
* [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
|
|
63
63
|
*
|
package/getMlflowExperiment.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export interface GetMlflowExperimentArgs {
|
|
|
47
47
|
* Additional metadata key-value pairs.
|
|
48
48
|
*/
|
|
49
49
|
tags?: inputs.GetMlflowExperimentTag[];
|
|
50
|
+
traceLocation?: inputs.GetMlflowExperimentTraceLocation;
|
|
50
51
|
}
|
|
51
52
|
/**
|
|
52
53
|
* A collection of values returned by getMlflowExperiment.
|
|
@@ -85,6 +86,7 @@ export interface GetMlflowExperimentResult {
|
|
|
85
86
|
* Additional metadata key-value pairs.
|
|
86
87
|
*/
|
|
87
88
|
readonly tags: outputs.GetMlflowExperimentTag[];
|
|
89
|
+
readonly traceLocation: outputs.GetMlflowExperimentTraceLocation;
|
|
88
90
|
}
|
|
89
91
|
/**
|
|
90
92
|
* Retrieves the settings of databricks.MlflowExperiment by id or name.
|
|
@@ -132,5 +134,6 @@ export interface GetMlflowExperimentOutputArgs {
|
|
|
132
134
|
* Additional metadata key-value pairs.
|
|
133
135
|
*/
|
|
134
136
|
tags?: pulumi.Input<pulumi.Input<inputs.GetMlflowExperimentTagArgs>[] | undefined>;
|
|
137
|
+
traceLocation?: pulumi.Input<inputs.GetMlflowExperimentTraceLocationArgs | undefined>;
|
|
135
138
|
}
|
|
136
139
|
//# sourceMappingURL=getMlflowExperiment.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMlflowExperiment.d.ts","sourceRoot":"","sources":["../getMlflowExperiment.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,CAAC,EAAE,uBAAuB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,yBAAyB,CAAC,
|
|
1
|
+
{"version":3,"file":"getMlflowExperiment.d.ts","sourceRoot":"","sources":["../getMlflowExperiment.ts"],"names":[],"mappings":"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"}
|
package/getMlflowExperiment.js
CHANGED
|
@@ -46,6 +46,7 @@ function getMlflowExperiment(args, opts) {
|
|
|
46
46
|
"name": args.name,
|
|
47
47
|
"providerConfig": args.providerConfig,
|
|
48
48
|
"tags": args.tags,
|
|
49
|
+
"traceLocation": args.traceLocation,
|
|
49
50
|
}, opts);
|
|
50
51
|
}
|
|
51
52
|
exports.getMlflowExperiment = getMlflowExperiment;
|
|
@@ -67,6 +68,7 @@ function getMlflowExperimentOutput(args, opts) {
|
|
|
67
68
|
"name": args.name,
|
|
68
69
|
"providerConfig": args.providerConfig,
|
|
69
70
|
"tags": args.tags,
|
|
71
|
+
"traceLocation": args.traceLocation,
|
|
70
72
|
}, opts);
|
|
71
73
|
}
|
|
72
74
|
exports.getMlflowExperimentOutput = getMlflowExperimentOutput;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMlflowExperiment.js","sourceRoot":"","sources":["../getMlflowExperiment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;
|
|
1
|
+
{"version":3,"file":"getMlflowExperiment.js","sourceRoot":"","sources":["../getMlflowExperiment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,kDAeC;AAoFD;;;;GAIG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAAiC;IAC7G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,8DAeC"}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
6
|
+
*
|
|
7
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
8
|
+
*
|
|
9
|
+
* This data source retrieves a single Postgres CDF (Change Data Feed) configuration.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Retrieve CDF Configuration by Name
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as databricks from "@pulumi/databricks";
|
|
18
|
+
*
|
|
19
|
+
* const _this = databricks.getPostgresCdfConfig({
|
|
20
|
+
* name: "projects/my-project/branches/main/databases/app_db/cdf-configs/public",
|
|
21
|
+
* });
|
|
22
|
+
* export const cdfTargetCatalog = _this.then(_this => _this.catalog);
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export declare function getPostgresCdfConfig(args: GetPostgresCdfConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetPostgresCdfConfigResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getPostgresCdfConfig.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetPostgresCdfConfigArgs {
|
|
30
|
+
/**
|
|
31
|
+
* Output only. The full resource name of the CdfConfig.
|
|
32
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
|
|
33
|
+
*/
|
|
34
|
+
name: string;
|
|
35
|
+
/**
|
|
36
|
+
* Configure the provider for management through account provider.
|
|
37
|
+
*/
|
|
38
|
+
providerConfig?: inputs.GetPostgresCdfConfigProviderConfig;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* A collection of values returned by getPostgresCdfConfig.
|
|
42
|
+
*/
|
|
43
|
+
export interface GetPostgresCdfConfigResult {
|
|
44
|
+
/**
|
|
45
|
+
* (string) - The Unity Catalog catalog that replicated tables are written into.
|
|
46
|
+
* Set at creation; the CdfConfig is immutable
|
|
47
|
+
*/
|
|
48
|
+
readonly catalog: string;
|
|
49
|
+
/**
|
|
50
|
+
* (string) - The user-specified id; equals the final segment of `name`. Defaults to the
|
|
51
|
+
* Postgres schema name for configs without an explicit id
|
|
52
|
+
*/
|
|
53
|
+
readonly cdfConfigId: string;
|
|
54
|
+
/**
|
|
55
|
+
* (string) - When the CdfConfig was created
|
|
56
|
+
*/
|
|
57
|
+
readonly createTime: string;
|
|
58
|
+
/**
|
|
59
|
+
* The provider-assigned unique ID for this managed resource.
|
|
60
|
+
*/
|
|
61
|
+
readonly id: string;
|
|
62
|
+
/**
|
|
63
|
+
* (string) - Output only. The full resource name of the CdfConfig.
|
|
64
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
|
|
65
|
+
*/
|
|
66
|
+
readonly name: string;
|
|
67
|
+
/**
|
|
68
|
+
* (string) - The Postgres schema this CdfConfig replicates from. Unique within the
|
|
69
|
+
* parent database. Set at creation; the CdfConfig is immutable
|
|
70
|
+
*/
|
|
71
|
+
readonly postgresSchema: string;
|
|
72
|
+
readonly providerConfig?: outputs.GetPostgresCdfConfigProviderConfig;
|
|
73
|
+
/**
|
|
74
|
+
* (string) - The Unity Catalog schema that replicated tables are written into.
|
|
75
|
+
* Set at creation; the CdfConfig is immutable
|
|
76
|
+
*/
|
|
77
|
+
readonly schema: string;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
81
|
+
*
|
|
82
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
83
|
+
*
|
|
84
|
+
* This data source retrieves a single Postgres CDF (Change Data Feed) configuration.
|
|
85
|
+
*
|
|
86
|
+
* ## Example Usage
|
|
87
|
+
*
|
|
88
|
+
* ### Retrieve CDF Configuration by Name
|
|
89
|
+
*
|
|
90
|
+
* ```typescript
|
|
91
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
92
|
+
* import * as databricks from "@pulumi/databricks";
|
|
93
|
+
*
|
|
94
|
+
* const _this = databricks.getPostgresCdfConfig({
|
|
95
|
+
* name: "projects/my-project/branches/main/databases/app_db/cdf-configs/public",
|
|
96
|
+
* });
|
|
97
|
+
* export const cdfTargetCatalog = _this.then(_this => _this.catalog);
|
|
98
|
+
* ```
|
|
99
|
+
*/
|
|
100
|
+
export declare function getPostgresCdfConfigOutput(args: GetPostgresCdfConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPostgresCdfConfigResult>;
|
|
101
|
+
/**
|
|
102
|
+
* A collection of arguments for invoking getPostgresCdfConfig.
|
|
103
|
+
*/
|
|
104
|
+
export interface GetPostgresCdfConfigOutputArgs {
|
|
105
|
+
/**
|
|
106
|
+
* Output only. The full resource name of the CdfConfig.
|
|
107
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
|
|
108
|
+
*/
|
|
109
|
+
name: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Configure the provider for management through account provider.
|
|
112
|
+
*/
|
|
113
|
+
providerConfig?: pulumi.Input<inputs.GetPostgresCdfConfigProviderConfigArgs | undefined>;
|
|
114
|
+
}
|
|
115
|
+
//# sourceMappingURL=getPostgresCdfConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPostgresCdfConfig.d.ts","sourceRoot":"","sources":["../getPostgresCdfConfig.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,wBAAwB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,0BAA0B,CAAC,CAMrI;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,kCAAkC,CAAC;CAC9D;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,kCAAkC,CAAC;IACrE;;;OAGG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CAC3B;AACD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,8BAA8B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAM7J;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC3B;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;CAC5F"}
|
|
@@ -0,0 +1,89 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getPostgresCdfConfigOutput = exports.getPostgresCdfConfig = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
33
|
+
*
|
|
34
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
35
|
+
*
|
|
36
|
+
* This data source retrieves a single Postgres CDF (Change Data Feed) configuration.
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ### Retrieve CDF Configuration by Name
|
|
41
|
+
*
|
|
42
|
+
* ```typescript
|
|
43
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
44
|
+
* import * as databricks from "@pulumi/databricks";
|
|
45
|
+
*
|
|
46
|
+
* const _this = databricks.getPostgresCdfConfig({
|
|
47
|
+
* name: "projects/my-project/branches/main/databases/app_db/cdf-configs/public",
|
|
48
|
+
* });
|
|
49
|
+
* export const cdfTargetCatalog = _this.then(_this => _this.catalog);
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function getPostgresCdfConfig(args, opts) {
|
|
53
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
54
|
+
return pulumi.runtime.invoke("databricks:index/getPostgresCdfConfig:getPostgresCdfConfig", {
|
|
55
|
+
"name": args.name,
|
|
56
|
+
"providerConfig": args.providerConfig,
|
|
57
|
+
}, opts);
|
|
58
|
+
}
|
|
59
|
+
exports.getPostgresCdfConfig = getPostgresCdfConfig;
|
|
60
|
+
/**
|
|
61
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
62
|
+
*
|
|
63
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
64
|
+
*
|
|
65
|
+
* This data source retrieves a single Postgres CDF (Change Data Feed) configuration.
|
|
66
|
+
*
|
|
67
|
+
* ## Example Usage
|
|
68
|
+
*
|
|
69
|
+
* ### Retrieve CDF Configuration by Name
|
|
70
|
+
*
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
73
|
+
* import * as databricks from "@pulumi/databricks";
|
|
74
|
+
*
|
|
75
|
+
* const _this = databricks.getPostgresCdfConfig({
|
|
76
|
+
* name: "projects/my-project/branches/main/databases/app_db/cdf-configs/public",
|
|
77
|
+
* });
|
|
78
|
+
* export const cdfTargetCatalog = _this.then(_this => _this.catalog);
|
|
79
|
+
* ```
|
|
80
|
+
*/
|
|
81
|
+
function getPostgresCdfConfigOutput(args, opts) {
|
|
82
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
83
|
+
return pulumi.runtime.invokeOutput("databricks:index/getPostgresCdfConfig:getPostgresCdfConfig", {
|
|
84
|
+
"name": args.name,
|
|
85
|
+
"providerConfig": args.providerConfig,
|
|
86
|
+
}, opts);
|
|
87
|
+
}
|
|
88
|
+
exports.getPostgresCdfConfigOutput = getPostgresCdfConfigOutput;
|
|
89
|
+
//# sourceMappingURL=getPostgresCdfConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPostgresCdfConfig.js","sourceRoot":"","sources":["../getPostgresCdfConfig.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC;AAwDD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gEAMC"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
6
|
+
*
|
|
7
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
8
|
+
*
|
|
9
|
+
* This data source lists all Postgres CDF (Change Data Feed) configurations under a database.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### List All CDF Configurations in a Database
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as databricks from "@pulumi/databricks";
|
|
18
|
+
*
|
|
19
|
+
* const all = databricks.getPostgresCdfConfigs({
|
|
20
|
+
* parent: "projects/my-project/branches/main/databases/app_db",
|
|
21
|
+
* });
|
|
22
|
+
* export const cdfConfigNames = all.then(all => .map(config => (config.name)));
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export declare function getPostgresCdfConfigs(args: GetPostgresCdfConfigsArgs, opts?: pulumi.InvokeOptions): Promise<GetPostgresCdfConfigsResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getPostgresCdfConfigs.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetPostgresCdfConfigsArgs {
|
|
30
|
+
/**
|
|
31
|
+
* Maximum number of CdfConfigs to return
|
|
32
|
+
*/
|
|
33
|
+
pageSize?: number;
|
|
34
|
+
/**
|
|
35
|
+
* The parent database to list CdfConfigs for.
|
|
36
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}
|
|
37
|
+
*/
|
|
38
|
+
parent: string;
|
|
39
|
+
/**
|
|
40
|
+
* Configure the provider for management through account provider.
|
|
41
|
+
*/
|
|
42
|
+
providerConfig?: inputs.GetPostgresCdfConfigsProviderConfig;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* A collection of values returned by getPostgresCdfConfigs.
|
|
46
|
+
*/
|
|
47
|
+
export interface GetPostgresCdfConfigsResult {
|
|
48
|
+
readonly cdfConfigs: outputs.GetPostgresCdfConfigsCdfConfig[];
|
|
49
|
+
/**
|
|
50
|
+
* The provider-assigned unique ID for this managed resource.
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
readonly pageSize?: number;
|
|
54
|
+
readonly parent: string;
|
|
55
|
+
readonly providerConfig?: outputs.GetPostgresCdfConfigsProviderConfig;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
59
|
+
*
|
|
60
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
61
|
+
*
|
|
62
|
+
* This data source lists all Postgres CDF (Change Data Feed) configurations under a database.
|
|
63
|
+
*
|
|
64
|
+
* ## Example Usage
|
|
65
|
+
*
|
|
66
|
+
* ### List All CDF Configurations in a Database
|
|
67
|
+
*
|
|
68
|
+
* ```typescript
|
|
69
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
70
|
+
* import * as databricks from "@pulumi/databricks";
|
|
71
|
+
*
|
|
72
|
+
* const all = databricks.getPostgresCdfConfigs({
|
|
73
|
+
* parent: "projects/my-project/branches/main/databases/app_db",
|
|
74
|
+
* });
|
|
75
|
+
* export const cdfConfigNames = all.then(all => .map(config => (config.name)));
|
|
76
|
+
* ```
|
|
77
|
+
*/
|
|
78
|
+
export declare function getPostgresCdfConfigsOutput(args: GetPostgresCdfConfigsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPostgresCdfConfigsResult>;
|
|
79
|
+
/**
|
|
80
|
+
* A collection of arguments for invoking getPostgresCdfConfigs.
|
|
81
|
+
*/
|
|
82
|
+
export interface GetPostgresCdfConfigsOutputArgs {
|
|
83
|
+
/**
|
|
84
|
+
* Maximum number of CdfConfigs to return
|
|
85
|
+
*/
|
|
86
|
+
pageSize?: pulumi.Input<number | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* The parent database to list CdfConfigs for.
|
|
89
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}
|
|
90
|
+
*/
|
|
91
|
+
parent: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Configure the provider for management through account provider.
|
|
94
|
+
*/
|
|
95
|
+
providerConfig?: pulumi.Input<inputs.GetPostgresCdfConfigsProviderConfigArgs | undefined>;
|
|
96
|
+
}
|
|
97
|
+
//# sourceMappingURL=getPostgresCdfConfigs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPostgresCdfConfigs.d.ts","sourceRoot":"","sources":["../getPostgresCdfConfigs.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,2BAA2B,CAAC,CAOxI;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,mCAAmC,CAAC;CAC/D;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,8BAA8B,EAAE,CAAC;IAC9D;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,mCAAmC,CAAC;CACzE;AACD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,+BAA+B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAOhK;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC5C;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;CAC7F"}
|
|
@@ -0,0 +1,91 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getPostgresCdfConfigsOutput = exports.getPostgresCdfConfigs = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
33
|
+
*
|
|
34
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
35
|
+
*
|
|
36
|
+
* This data source lists all Postgres CDF (Change Data Feed) configurations under a database.
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ### List All CDF Configurations in a Database
|
|
41
|
+
*
|
|
42
|
+
* ```typescript
|
|
43
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
44
|
+
* import * as databricks from "@pulumi/databricks";
|
|
45
|
+
*
|
|
46
|
+
* const all = databricks.getPostgresCdfConfigs({
|
|
47
|
+
* parent: "projects/my-project/branches/main/databases/app_db",
|
|
48
|
+
* });
|
|
49
|
+
* export const cdfConfigNames = all.then(all => .map(config => (config.name)));
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function getPostgresCdfConfigs(args, opts) {
|
|
53
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
54
|
+
return pulumi.runtime.invoke("databricks:index/getPostgresCdfConfigs:getPostgresCdfConfigs", {
|
|
55
|
+
"pageSize": args.pageSize,
|
|
56
|
+
"parent": args.parent,
|
|
57
|
+
"providerConfig": args.providerConfig,
|
|
58
|
+
}, opts);
|
|
59
|
+
}
|
|
60
|
+
exports.getPostgresCdfConfigs = getPostgresCdfConfigs;
|
|
61
|
+
/**
|
|
62
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
63
|
+
*
|
|
64
|
+
* [API Documentation](https://docs.databricks.com/api/workspace/postgres)
|
|
65
|
+
*
|
|
66
|
+
* This data source lists all Postgres CDF (Change Data Feed) configurations under a database.
|
|
67
|
+
*
|
|
68
|
+
* ## Example Usage
|
|
69
|
+
*
|
|
70
|
+
* ### List All CDF Configurations in a Database
|
|
71
|
+
*
|
|
72
|
+
* ```typescript
|
|
73
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
74
|
+
* import * as databricks from "@pulumi/databricks";
|
|
75
|
+
*
|
|
76
|
+
* const all = databricks.getPostgresCdfConfigs({
|
|
77
|
+
* parent: "projects/my-project/branches/main/databases/app_db",
|
|
78
|
+
* });
|
|
79
|
+
* export const cdfConfigNames = all.then(all => .map(config => (config.name)));
|
|
80
|
+
* ```
|
|
81
|
+
*/
|
|
82
|
+
function getPostgresCdfConfigsOutput(args, opts) {
|
|
83
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
84
|
+
return pulumi.runtime.invokeOutput("databricks:index/getPostgresCdfConfigs:getPostgresCdfConfigs", {
|
|
85
|
+
"pageSize": args.pageSize,
|
|
86
|
+
"parent": args.parent,
|
|
87
|
+
"providerConfig": args.providerConfig,
|
|
88
|
+
}, opts);
|
|
89
|
+
}
|
|
90
|
+
exports.getPostgresCdfConfigsOutput = getPostgresCdfConfigsOutput;
|
|
91
|
+
//# sourceMappingURL=getPostgresCdfConfigs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPostgresCdfConfigs.js","sourceRoot":"","sources":["../getPostgresCdfConfigs.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sDAOC;AAkCD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAAiC;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8DAA8D,EAAE;QAC/F,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kEAOC"}
|