@pulumi/confluentcloud 2.30.0-alpha.1748900730 → 2.30.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/connectArtifact.d.ts +151 -0
- package/connectArtifact.js +106 -0
- package/connectArtifact.js.map +1 -0
- package/flinkArtifact.d.ts +7 -6
- package/flinkArtifact.js +1 -0
- package/flinkArtifact.js.map +1 -1
- package/flinkConnection.d.ts +250 -0
- package/flinkConnection.js +131 -0
- package/flinkConnection.js.map +1 -0
- package/getConnectArtifact.d.ts +101 -0
- package/getConnectArtifact.js +74 -0
- package/getConnectArtifact.js.map +1 -0
- package/getFlinkConnection.d.ts +97 -0
- package/getFlinkConnection.js +50 -0
- package/getFlinkConnection.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +20 -4
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +116 -0
- package/types/output.d.ts +72 -0
|
@@ -0,0 +1,131 @@
|
|
|
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.FlinkConnection = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* You can import a Flink connection by using the Flink Connection name, for example:
|
|
12
|
+
*
|
|
13
|
+
* Option #1: Manage multiple Flink Compute Pools in the same Pulumi Stack
|
|
14
|
+
*
|
|
15
|
+
* $ export IMPORT_CONFLUENT_ORGANIZATION_ID="<organization_id>"
|
|
16
|
+
*
|
|
17
|
+
* $ export IMPORT_CONFLUENT_ENVIRONMENT_ID="<environment_id>"
|
|
18
|
+
*
|
|
19
|
+
* $ export IMPORT_FLINK_COMPUTE_POOL_ID="<flink_compute_pool_id>"
|
|
20
|
+
*
|
|
21
|
+
* $ export IMPORT_FLINK_API_KEY="<flink_api_key>"
|
|
22
|
+
*
|
|
23
|
+
* $ export IMPORT_FLINK_API_SECRET="<flink_api_secret>"
|
|
24
|
+
*
|
|
25
|
+
* $ export IMPORT_FLINK_REST_ENDPOINT="<flink_rest_endpoint>"
|
|
26
|
+
*
|
|
27
|
+
* $ export IMPORT_FLINK_PRINCIPAL_ID="<flink_principal>"
|
|
28
|
+
*
|
|
29
|
+
* $ export API_KEY="<API_KEY>"
|
|
30
|
+
*
|
|
31
|
+
* ```sh
|
|
32
|
+
* $ pulumi import confluentcloud:index/flinkConnection:FlinkConnection example org-xyz123/env-abc123/connection1
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* Option #2: Manage a single Flink Compute Pool in the same Pulumi Stack
|
|
36
|
+
*
|
|
37
|
+
* $ export API_KEY="<API_KEY>"
|
|
38
|
+
*
|
|
39
|
+
* ```sh
|
|
40
|
+
* $ pulumi import confluentcloud:index/flinkConnection:FlinkConnection example org-xyz123/env-abc123/connection1
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
44
|
+
*/
|
|
45
|
+
class FlinkConnection extends pulumi.CustomResource {
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing FlinkConnection resource's state with the given name, ID, and optional extra
|
|
48
|
+
* properties used to qualify the lookup.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resulting resource.
|
|
51
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
+
* @param state Any extra arguments used during the lookup.
|
|
53
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
+
*/
|
|
55
|
+
static get(name, id, state, opts) {
|
|
56
|
+
return new FlinkConnection(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of FlinkConnection. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj) {
|
|
63
|
+
if (obj === undefined || obj === null) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
return obj['__pulumiType'] === FlinkConnection.__pulumiType;
|
|
67
|
+
}
|
|
68
|
+
constructor(name, argsOrState, opts) {
|
|
69
|
+
let resourceInputs = {};
|
|
70
|
+
opts = opts || {};
|
|
71
|
+
if (opts.id) {
|
|
72
|
+
const state = argsOrState;
|
|
73
|
+
resourceInputs["apiKey"] = state ? state.apiKey : undefined;
|
|
74
|
+
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
75
|
+
resourceInputs["awsAccessKey"] = state ? state.awsAccessKey : undefined;
|
|
76
|
+
resourceInputs["awsSecretKey"] = state ? state.awsSecretKey : undefined;
|
|
77
|
+
resourceInputs["awsSessionToken"] = state ? state.awsSessionToken : undefined;
|
|
78
|
+
resourceInputs["computePool"] = state ? state.computePool : undefined;
|
|
79
|
+
resourceInputs["credentials"] = state ? state.credentials : undefined;
|
|
80
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
81
|
+
resourceInputs["endpoint"] = state ? state.endpoint : undefined;
|
|
82
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
83
|
+
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
84
|
+
resourceInputs["organization"] = state ? state.organization : undefined;
|
|
85
|
+
resourceInputs["password"] = state ? state.password : undefined;
|
|
86
|
+
resourceInputs["principal"] = state ? state.principal : undefined;
|
|
87
|
+
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
88
|
+
resourceInputs["serviceKey"] = state ? state.serviceKey : undefined;
|
|
89
|
+
resourceInputs["type"] = state ? state.type : undefined;
|
|
90
|
+
resourceInputs["username"] = state ? state.username : undefined;
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
const args = argsOrState;
|
|
94
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
95
|
+
throw new Error("Missing required property 'displayName'");
|
|
96
|
+
}
|
|
97
|
+
if ((!args || args.endpoint === undefined) && !opts.urn) {
|
|
98
|
+
throw new Error("Missing required property 'endpoint'");
|
|
99
|
+
}
|
|
100
|
+
if ((!args || args.type === undefined) && !opts.urn) {
|
|
101
|
+
throw new Error("Missing required property 'type'");
|
|
102
|
+
}
|
|
103
|
+
resourceInputs["apiKey"] = args ? args.apiKey : undefined;
|
|
104
|
+
resourceInputs["awsAccessKey"] = args ? args.awsAccessKey : undefined;
|
|
105
|
+
resourceInputs["awsSecretKey"] = args ? args.awsSecretKey : undefined;
|
|
106
|
+
resourceInputs["awsSessionToken"] = args ? args.awsSessionToken : undefined;
|
|
107
|
+
resourceInputs["computePool"] = args ? args.computePool : undefined;
|
|
108
|
+
resourceInputs["credentials"] = (args === null || args === void 0 ? void 0 : args.credentials) ? pulumi.secret(args.credentials) : undefined;
|
|
109
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
110
|
+
resourceInputs["endpoint"] = args ? args.endpoint : undefined;
|
|
111
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
112
|
+
resourceInputs["organization"] = args ? args.organization : undefined;
|
|
113
|
+
resourceInputs["password"] = args ? args.password : undefined;
|
|
114
|
+
resourceInputs["principal"] = args ? args.principal : undefined;
|
|
115
|
+
resourceInputs["restEndpoint"] = args ? args.restEndpoint : undefined;
|
|
116
|
+
resourceInputs["serviceKey"] = args ? args.serviceKey : undefined;
|
|
117
|
+
resourceInputs["type"] = args ? args.type : undefined;
|
|
118
|
+
resourceInputs["username"] = args ? args.username : undefined;
|
|
119
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
120
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
121
|
+
}
|
|
122
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
123
|
+
const secretOpts = { additionalSecretOutputs: ["credentials"] };
|
|
124
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
125
|
+
super(FlinkConnection.__pulumiType, name, resourceInputs, opts);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
exports.FlinkConnection = FlinkConnection;
|
|
129
|
+
/** @internal */
|
|
130
|
+
FlinkConnection.__pulumiType = 'confluentcloud:index/flinkConnection:FlinkConnection';
|
|
131
|
+
//# sourceMappingURL=flinkConnection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flinkConnection.js","sourceRoot":"","sources":["../flinkConnection.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,101 @@
|
|
|
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.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
6
|
+
*
|
|
7
|
+
* `confluentcloud.ConnectArtifact` data source represents a Connect Artifact in Confluent Cloud. Connect Artifacts are used to store and manage custom connector plugins in Confluent Cloud.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
14
|
+
*
|
|
15
|
+
* const example = confluentcloud.getConnectArtifact({
|
|
16
|
+
* id: "ca-123456",
|
|
17
|
+
* environment: {
|
|
18
|
+
* id: "env-123456",
|
|
19
|
+
* },
|
|
20
|
+
* cloud: "AWS",
|
|
21
|
+
* });
|
|
22
|
+
* export const artifactName = example.then(example => example.displayName);
|
|
23
|
+
* export const artifactCloud = example.then(example => example.cloud);
|
|
24
|
+
* export const artifactContentFormat = example.then(example => example.contentFormat);
|
|
25
|
+
* export const artifactDescription = example.then(example => example.description);
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function getConnectArtifact(args: GetConnectArtifactArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectArtifactResult>;
|
|
29
|
+
/**
|
|
30
|
+
* A collection of arguments for invoking getConnectArtifact.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetConnectArtifactArgs {
|
|
33
|
+
/**
|
|
34
|
+
* Cloud provider where the Connect Artifact archive is uploaded.
|
|
35
|
+
*/
|
|
36
|
+
cloud: string;
|
|
37
|
+
environment: inputs.GetConnectArtifactEnvironment;
|
|
38
|
+
/**
|
|
39
|
+
* The ID of the Connect Artifact.
|
|
40
|
+
*/
|
|
41
|
+
id: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* A collection of values returned by getConnectArtifact.
|
|
45
|
+
*/
|
|
46
|
+
export interface GetConnectArtifactResult {
|
|
47
|
+
readonly cloud: string;
|
|
48
|
+
/**
|
|
49
|
+
* (String) Archive format of the Connect Artifact. Supported formats are `JAR` and `ZIP`.
|
|
50
|
+
*/
|
|
51
|
+
readonly contentFormat: string;
|
|
52
|
+
/**
|
|
53
|
+
* (String) Description of the Connect Artifact.
|
|
54
|
+
*/
|
|
55
|
+
readonly description: string;
|
|
56
|
+
/**
|
|
57
|
+
* (String) The unique name of the Connect Artifact per cloud, environment scope.
|
|
58
|
+
*/
|
|
59
|
+
readonly displayName: string;
|
|
60
|
+
readonly environment: outputs.GetConnectArtifactEnvironment;
|
|
61
|
+
readonly id: string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
65
|
+
*
|
|
66
|
+
* `confluentcloud.ConnectArtifact` data source represents a Connect Artifact in Confluent Cloud. Connect Artifacts are used to store and manage custom connector plugins in Confluent Cloud.
|
|
67
|
+
*
|
|
68
|
+
* ## Example Usage
|
|
69
|
+
*
|
|
70
|
+
* ```typescript
|
|
71
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
72
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
73
|
+
*
|
|
74
|
+
* const example = confluentcloud.getConnectArtifact({
|
|
75
|
+
* id: "ca-123456",
|
|
76
|
+
* environment: {
|
|
77
|
+
* id: "env-123456",
|
|
78
|
+
* },
|
|
79
|
+
* cloud: "AWS",
|
|
80
|
+
* });
|
|
81
|
+
* export const artifactName = example.then(example => example.displayName);
|
|
82
|
+
* export const artifactCloud = example.then(example => example.cloud);
|
|
83
|
+
* export const artifactContentFormat = example.then(example => example.contentFormat);
|
|
84
|
+
* export const artifactDescription = example.then(example => example.description);
|
|
85
|
+
* ```
|
|
86
|
+
*/
|
|
87
|
+
export declare function getConnectArtifactOutput(args: GetConnectArtifactOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectArtifactResult>;
|
|
88
|
+
/**
|
|
89
|
+
* A collection of arguments for invoking getConnectArtifact.
|
|
90
|
+
*/
|
|
91
|
+
export interface GetConnectArtifactOutputArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Cloud provider where the Connect Artifact archive is uploaded.
|
|
94
|
+
*/
|
|
95
|
+
cloud: pulumi.Input<string>;
|
|
96
|
+
environment: pulumi.Input<inputs.GetConnectArtifactEnvironmentArgs>;
|
|
97
|
+
/**
|
|
98
|
+
* The ID of the Connect Artifact.
|
|
99
|
+
*/
|
|
100
|
+
id: pulumi.Input<string>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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.getConnectArtifactOutput = exports.getConnectArtifact = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* `confluentcloud.ConnectArtifact` data source represents a Connect Artifact in Confluent Cloud. Connect Artifacts are used to store and manage custom connector plugins in Confluent Cloud.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
18
|
+
*
|
|
19
|
+
* const example = confluentcloud.getConnectArtifact({
|
|
20
|
+
* id: "ca-123456",
|
|
21
|
+
* environment: {
|
|
22
|
+
* id: "env-123456",
|
|
23
|
+
* },
|
|
24
|
+
* cloud: "AWS",
|
|
25
|
+
* });
|
|
26
|
+
* export const artifactName = example.then(example => example.displayName);
|
|
27
|
+
* export const artifactCloud = example.then(example => example.cloud);
|
|
28
|
+
* export const artifactContentFormat = example.then(example => example.contentFormat);
|
|
29
|
+
* export const artifactDescription = example.then(example => example.description);
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
function getConnectArtifact(args, opts) {
|
|
33
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
34
|
+
return pulumi.runtime.invoke("confluentcloud:index/getConnectArtifact:getConnectArtifact", {
|
|
35
|
+
"cloud": args.cloud,
|
|
36
|
+
"environment": args.environment,
|
|
37
|
+
"id": args.id,
|
|
38
|
+
}, opts);
|
|
39
|
+
}
|
|
40
|
+
exports.getConnectArtifact = getConnectArtifact;
|
|
41
|
+
/**
|
|
42
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
43
|
+
*
|
|
44
|
+
* `confluentcloud.ConnectArtifact` data source represents a Connect Artifact in Confluent Cloud. Connect Artifacts are used to store and manage custom connector plugins in Confluent Cloud.
|
|
45
|
+
*
|
|
46
|
+
* ## Example Usage
|
|
47
|
+
*
|
|
48
|
+
* ```typescript
|
|
49
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
50
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
51
|
+
*
|
|
52
|
+
* const example = confluentcloud.getConnectArtifact({
|
|
53
|
+
* id: "ca-123456",
|
|
54
|
+
* environment: {
|
|
55
|
+
* id: "env-123456",
|
|
56
|
+
* },
|
|
57
|
+
* cloud: "AWS",
|
|
58
|
+
* });
|
|
59
|
+
* export const artifactName = example.then(example => example.displayName);
|
|
60
|
+
* export const artifactCloud = example.then(example => example.cloud);
|
|
61
|
+
* export const artifactContentFormat = example.then(example => example.contentFormat);
|
|
62
|
+
* export const artifactDescription = example.then(example => example.description);
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
function getConnectArtifactOutput(args, opts) {
|
|
66
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
67
|
+
return pulumi.runtime.invokeOutput("confluentcloud:index/getConnectArtifact:getConnectArtifact", {
|
|
68
|
+
"cloud": args.cloud,
|
|
69
|
+
"environment": args.environment,
|
|
70
|
+
"id": args.id,
|
|
71
|
+
}, opts);
|
|
72
|
+
}
|
|
73
|
+
exports.getConnectArtifactOutput = getConnectArtifactOutput;
|
|
74
|
+
//# sourceMappingURL=getConnectArtifact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getConnectArtifact.js","sourceRoot":"","sources":["../getConnectArtifact.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,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,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AAqCD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,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,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4DAOC"}
|
|
@@ -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.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
6
|
+
*
|
|
7
|
+
* `confluentcloud.FlinkConnection` describes a Flink Connection data source.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*/
|
|
11
|
+
export declare function getFlinkConnection(args: GetFlinkConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetFlinkConnectionResult>;
|
|
12
|
+
/**
|
|
13
|
+
* A collection of arguments for invoking getFlinkConnection.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetFlinkConnectionArgs {
|
|
16
|
+
computePool?: inputs.GetFlinkConnectionComputePool;
|
|
17
|
+
credentials?: inputs.GetFlinkConnectionCredentials;
|
|
18
|
+
/**
|
|
19
|
+
* The name of the Flink Connection.
|
|
20
|
+
*/
|
|
21
|
+
displayName: string;
|
|
22
|
+
environment?: inputs.GetFlinkConnectionEnvironment;
|
|
23
|
+
organization?: inputs.GetFlinkConnectionOrganization;
|
|
24
|
+
principal?: inputs.GetFlinkConnectionPrincipal;
|
|
25
|
+
/**
|
|
26
|
+
* The REST endpoint of the Flink region, for example, `https://flink.us-east-1.aws.confluent.cloud`).
|
|
27
|
+
*/
|
|
28
|
+
restEndpoint?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The type of the Flink Connection. The accepted values are: `OPENAI`, `AZUREML`, `AZUREOPENAI`, `BEDROCK`, `SAGEMAKER`, `GOOGLEAI`, `VERTEXAI`, `MONGODB`, `PINECONE`, `ELASTIC` and `COUCHBASE`.
|
|
31
|
+
*/
|
|
32
|
+
type?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* A collection of values returned by getFlinkConnection.
|
|
36
|
+
*/
|
|
37
|
+
export interface GetFlinkConnectionResult {
|
|
38
|
+
readonly computePool: outputs.GetFlinkConnectionComputePool;
|
|
39
|
+
readonly credentials?: outputs.GetFlinkConnectionCredentials;
|
|
40
|
+
/**
|
|
41
|
+
* (Required String) The authentication data of the Flink Connection.
|
|
42
|
+
*/
|
|
43
|
+
readonly data: string;
|
|
44
|
+
readonly displayName: string;
|
|
45
|
+
/**
|
|
46
|
+
* (Required String) The endpoint of the Flink Connection, for example, `https://api.openai.com/v1/chat/completions`
|
|
47
|
+
*/
|
|
48
|
+
readonly endpoint: string;
|
|
49
|
+
readonly environment: outputs.GetFlinkConnectionEnvironment;
|
|
50
|
+
/**
|
|
51
|
+
* The provider-assigned unique ID for this managed resource.
|
|
52
|
+
*/
|
|
53
|
+
readonly id: string;
|
|
54
|
+
readonly organization: outputs.GetFlinkConnectionOrganization;
|
|
55
|
+
readonly principal: outputs.GetFlinkConnectionPrincipal;
|
|
56
|
+
readonly restEndpoint?: string;
|
|
57
|
+
/**
|
|
58
|
+
* (Required String) The status of the Flink Connection.
|
|
59
|
+
*/
|
|
60
|
+
readonly status: string;
|
|
61
|
+
/**
|
|
62
|
+
* (Required String) The status details of the Flink Connection.
|
|
63
|
+
* -
|
|
64
|
+
*/
|
|
65
|
+
readonly statusDetail: string;
|
|
66
|
+
readonly type?: string;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
70
|
+
*
|
|
71
|
+
* `confluentcloud.FlinkConnection` describes a Flink Connection data source.
|
|
72
|
+
*
|
|
73
|
+
* ## Example Usage
|
|
74
|
+
*/
|
|
75
|
+
export declare function getFlinkConnectionOutput(args: GetFlinkConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlinkConnectionResult>;
|
|
76
|
+
/**
|
|
77
|
+
* A collection of arguments for invoking getFlinkConnection.
|
|
78
|
+
*/
|
|
79
|
+
export interface GetFlinkConnectionOutputArgs {
|
|
80
|
+
computePool?: pulumi.Input<inputs.GetFlinkConnectionComputePoolArgs>;
|
|
81
|
+
credentials?: pulumi.Input<inputs.GetFlinkConnectionCredentialsArgs>;
|
|
82
|
+
/**
|
|
83
|
+
* The name of the Flink Connection.
|
|
84
|
+
*/
|
|
85
|
+
displayName: pulumi.Input<string>;
|
|
86
|
+
environment?: pulumi.Input<inputs.GetFlinkConnectionEnvironmentArgs>;
|
|
87
|
+
organization?: pulumi.Input<inputs.GetFlinkConnectionOrganizationArgs>;
|
|
88
|
+
principal?: pulumi.Input<inputs.GetFlinkConnectionPrincipalArgs>;
|
|
89
|
+
/**
|
|
90
|
+
* The REST endpoint of the Flink region, for example, `https://flink.us-east-1.aws.confluent.cloud`).
|
|
91
|
+
*/
|
|
92
|
+
restEndpoint?: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* The type of the Flink Connection. The accepted values are: `OPENAI`, `AZUREML`, `AZUREOPENAI`, `BEDROCK`, `SAGEMAKER`, `GOOGLEAI`, `VERTEXAI`, `MONGODB`, `PINECONE`, `ELASTIC` and `COUCHBASE`.
|
|
95
|
+
*/
|
|
96
|
+
type?: pulumi.Input<string>;
|
|
97
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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.getFlinkConnectionOutput = exports.getFlinkConnection = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* `confluentcloud.FlinkConnection` describes a Flink Connection data source.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*/
|
|
15
|
+
function getFlinkConnection(args, opts) {
|
|
16
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
17
|
+
return pulumi.runtime.invoke("confluentcloud:index/getFlinkConnection:getFlinkConnection", {
|
|
18
|
+
"computePool": args.computePool,
|
|
19
|
+
"credentials": args.credentials,
|
|
20
|
+
"displayName": args.displayName,
|
|
21
|
+
"environment": args.environment,
|
|
22
|
+
"organization": args.organization,
|
|
23
|
+
"principal": args.principal,
|
|
24
|
+
"restEndpoint": args.restEndpoint,
|
|
25
|
+
"type": args.type,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getFlinkConnection = getFlinkConnection;
|
|
29
|
+
/**
|
|
30
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
31
|
+
*
|
|
32
|
+
* `confluentcloud.FlinkConnection` describes a Flink Connection data source.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*/
|
|
36
|
+
function getFlinkConnectionOutput(args, opts) {
|
|
37
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
38
|
+
return pulumi.runtime.invokeOutput("confluentcloud:index/getFlinkConnection:getFlinkConnection", {
|
|
39
|
+
"computePool": args.computePool,
|
|
40
|
+
"credentials": args.credentials,
|
|
41
|
+
"displayName": args.displayName,
|
|
42
|
+
"environment": args.environment,
|
|
43
|
+
"organization": args.organization,
|
|
44
|
+
"principal": args.principal,
|
|
45
|
+
"restEndpoint": args.restEndpoint,
|
|
46
|
+
"type": args.type,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getFlinkConnectionOutput = getFlinkConnectionOutput;
|
|
50
|
+
//# sourceMappingURL=getFlinkConnection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getFlinkConnection.js","sourceRoot":"","sources":["../getFlinkConnection.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,gDAYC;AA2DD;;;;;;GAMG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4DAYC"}
|
package/index.d.ts
CHANGED
|
@@ -28,6 +28,9 @@ export declare const CertificatePool: typeof import("./certificatePool").Certifi
|
|
|
28
28
|
export { ClusterLinkArgs, ClusterLinkState } from "./clusterLink";
|
|
29
29
|
export type ClusterLink = import("./clusterLink").ClusterLink;
|
|
30
30
|
export declare const ClusterLink: typeof import("./clusterLink").ClusterLink;
|
|
31
|
+
export { ConnectArtifactArgs, ConnectArtifactState } from "./connectArtifact";
|
|
32
|
+
export type ConnectArtifact = import("./connectArtifact").ConnectArtifact;
|
|
33
|
+
export declare const ConnectArtifact: typeof import("./connectArtifact").ConnectArtifact;
|
|
31
34
|
export { ConnectorArgs, ConnectorState } from "./connector";
|
|
32
35
|
export type Connector = import("./connector").Connector;
|
|
33
36
|
export declare const Connector: typeof import("./connector").Connector;
|
|
@@ -49,6 +52,9 @@ export declare const FlinkArtifact: typeof import("./flinkArtifact").FlinkArtifa
|
|
|
49
52
|
export { FlinkComputePoolArgs, FlinkComputePoolState } from "./flinkComputePool";
|
|
50
53
|
export type FlinkComputePool = import("./flinkComputePool").FlinkComputePool;
|
|
51
54
|
export declare const FlinkComputePool: typeof import("./flinkComputePool").FlinkComputePool;
|
|
55
|
+
export { FlinkConnectionArgs, FlinkConnectionState } from "./flinkConnection";
|
|
56
|
+
export type FlinkConnection = import("./flinkConnection").FlinkConnection;
|
|
57
|
+
export declare const FlinkConnection: typeof import("./flinkConnection").FlinkConnection;
|
|
52
58
|
export { FlinkStatementArgs, FlinkStatementState } from "./flinkStatement";
|
|
53
59
|
export type FlinkStatement = import("./flinkStatement").FlinkStatement;
|
|
54
60
|
export declare const FlinkStatement: typeof import("./flinkStatement").FlinkStatement;
|
|
@@ -79,6 +85,9 @@ export declare const getCertificatePoolOutput: typeof import("./getCertificatePo
|
|
|
79
85
|
export { GetClusterLinkArgs, GetClusterLinkResult, GetClusterLinkOutputArgs } from "./getClusterLink";
|
|
80
86
|
export declare const getClusterLink: typeof import("./getClusterLink").getClusterLink;
|
|
81
87
|
export declare const getClusterLinkOutput: typeof import("./getClusterLink").getClusterLinkOutput;
|
|
88
|
+
export { GetConnectArtifactArgs, GetConnectArtifactResult, GetConnectArtifactOutputArgs } from "./getConnectArtifact";
|
|
89
|
+
export declare const getConnectArtifact: typeof import("./getConnectArtifact").getConnectArtifact;
|
|
90
|
+
export declare const getConnectArtifactOutput: typeof import("./getConnectArtifact").getConnectArtifactOutput;
|
|
82
91
|
export { GetDnsRecordArgs, GetDnsRecordResult, GetDnsRecordOutputArgs } from "./getDnsRecord";
|
|
83
92
|
export declare const getDnsRecord: typeof import("./getDnsRecord").getDnsRecord;
|
|
84
93
|
export declare const getDnsRecordOutput: typeof import("./getDnsRecord").getDnsRecordOutput;
|
|
@@ -94,6 +103,9 @@ export declare const getFlinkArtifactOutput: typeof import("./getFlinkArtifact")
|
|
|
94
103
|
export { GetFlinkComputePoolArgs, GetFlinkComputePoolResult, GetFlinkComputePoolOutputArgs } from "./getFlinkComputePool";
|
|
95
104
|
export declare const getFlinkComputePool: typeof import("./getFlinkComputePool").getFlinkComputePool;
|
|
96
105
|
export declare const getFlinkComputePoolOutput: typeof import("./getFlinkComputePool").getFlinkComputePoolOutput;
|
|
106
|
+
export { GetFlinkConnectionArgs, GetFlinkConnectionResult, GetFlinkConnectionOutputArgs } from "./getFlinkConnection";
|
|
107
|
+
export declare const getFlinkConnection: typeof import("./getFlinkConnection").getFlinkConnection;
|
|
108
|
+
export declare const getFlinkConnectionOutput: typeof import("./getFlinkConnection").getFlinkConnectionOutput;
|
|
97
109
|
export { GetFlinkRegionArgs, GetFlinkRegionResult, GetFlinkRegionOutputArgs } from "./getFlinkRegion";
|
|
98
110
|
export declare const getFlinkRegion: typeof import("./getFlinkRegion").getFlinkRegion;
|
|
99
111
|
export declare const getFlinkRegionOutput: typeof import("./getFlinkRegion").getFlinkRegionOutput;
|
package/index.js
CHANGED
|
@@ -16,10 +16,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.types = exports.config = exports.TransitGatewayAttachment = exports.TfImporter = exports.TagBinding = exports.Tag = exports.TableflowTopic = void 0;
|
|
19
|
+
exports.getFlinkConnection = exports.getFlinkComputePoolOutput = exports.getFlinkComputePool = exports.getFlinkArtifactOutput = exports.getFlinkArtifact = exports.getEnvironmentsOutput = exports.getEnvironments = exports.getEnvironmentOutput = exports.getEnvironment = exports.getDnsRecordOutput = exports.getDnsRecord = exports.getConnectArtifactOutput = exports.getConnectArtifact = exports.getClusterLinkOutput = exports.getClusterLink = exports.getCertificatePoolOutput = exports.getCertificatePool = exports.getCertificateAuthorityOutput = exports.getCertificateAuthority = exports.getCatalogIntegrationOutput = exports.getCatalogIntegration = exports.getByokKeyOutput = exports.getByokKey = exports.getBusinessMetadataBindingOutput = exports.getBusinessMetadataBinding = exports.getBusinessMetadataOutput = exports.getBusinessMetadata = exports.getAccessPointOutput = exports.getAccessPoint = exports.Gateway = exports.FlinkStatement = exports.FlinkConnection = exports.FlinkComputePool = exports.FlinkArtifact = exports.Environment = exports.DnsRecord = exports.DnsForwarder = exports.CustomConnectorPlugin = exports.Connector = exports.ConnectArtifact = exports.ClusterLink = exports.CertificatePool = exports.CertificateAuthority = exports.CatalogIntegration = exports.CatalogEntityAttributes = exports.ByokKey = exports.BusinessMetadataBinding = exports.BusinessMetadata = exports.ApiKey = exports.AccessPoint = void 0;
|
|
20
|
+
exports.getSchemaRegistryClusterMode = exports.getSchemaRegistryClusterConfigOutput = exports.getSchemaRegistryClusterConfig = exports.getSchemaRegistryClusterOutput = exports.getSchemaRegistryCluster = exports.getSchemaOutput = exports.getSchema = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getProviderIntegrationOutput = exports.getProviderIntegration = exports.getPrivateLinkAttachmentConnectionOutput = exports.getPrivateLinkAttachmentConnection = exports.getPrivateLinkAttachmentOutput = exports.getPrivateLinkAttachment = exports.getPrivateLinkAccessOutput = exports.getPrivateLinkAccess = exports.getPeeringOutput = exports.getPeering = exports.getOrganizationOutput = exports.getOrganization = exports.getNetworkLinkServiceOutput = exports.getNetworkLinkService = exports.getNetworkLinkEndpointOutput = exports.getNetworkLinkEndpoint = exports.getNetworkOutput = exports.getNetwork = exports.getKsqlClusterOutput = exports.getKsqlCluster = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaClusterOutput = exports.getKafkaCluster = exports.getKafkaClientQuotaOutput = exports.getKafkaClientQuota = exports.getIpAddressesOutput = exports.getIpAddresses = exports.getInvitationOutput = exports.getInvitation = exports.getIdentityProviderOutput = exports.getIdentityProvider = exports.getIdentityPoolOutput = exports.getIdentityPool = exports.getGroupMappingOutput = exports.getGroupMapping = exports.getGatewayOutput = exports.getGateway = exports.getFlinkRegionOutput = exports.getFlinkRegion = exports.getFlinkConnectionOutput = void 0;
|
|
21
|
+
exports.SchemaRegistryClusterConfig = exports.SchemaExporter = exports.Schema = exports.RoleBinding = exports.ProviderIntegration = exports.PrivateLinkAttachmentConnection = exports.PrivateLinkAttachment = exports.PrivateLinkAccess = exports.Peering = exports.NetworkLinkService = exports.NetworkLinkEndpoint = exports.Network = exports.KsqlCluster = exports.KafkaTopic = exports.KafkaMirrorTopic = exports.KafkaClusterConfig = exports.KafkaCluster = exports.KafkaClientQuota = exports.KafkaAcl = exports.Invitation = exports.IdentityProvider = exports.IdentityPool = exports.GroupMapping = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTransitGatewayAttachmentOutput = exports.getTransitGatewayAttachment = exports.getTagBindingOutput = exports.getTagBinding = exports.getTagOutput = exports.getTag = exports.getTableflowTopicOutput = exports.getTableflowTopic = exports.getSubjectModeOutput = exports.getSubjectMode = exports.getSubjectConfigOutput = exports.getSubjectConfig = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaRegistryKekOutput = exports.getSchemaRegistryKek = exports.getSchemaRegistryDekOutput = exports.getSchemaRegistryDek = exports.getSchemaRegistryClustersOutput = exports.getSchemaRegistryClusters = exports.getSchemaRegistryClusterModeOutput = void 0;
|
|
22
|
+
exports.types = exports.config = exports.TransitGatewayAttachment = exports.TfImporter = exports.TagBinding = exports.Tag = exports.TableflowTopic = exports.SubjectMode = exports.SubjectConfig = exports.ServiceAccount = exports.SchemaRegistryKek = exports.SchemaRegistryDek = exports.SchemaRegistryClusterMode = void 0;
|
|
23
23
|
const pulumi = require("@pulumi/pulumi");
|
|
24
24
|
const utilities = require("./utilities");
|
|
25
25
|
exports.AccessPoint = null;
|
|
@@ -42,6 +42,8 @@ exports.CertificatePool = null;
|
|
|
42
42
|
utilities.lazyLoad(exports, ["CertificatePool"], () => require("./certificatePool"));
|
|
43
43
|
exports.ClusterLink = null;
|
|
44
44
|
utilities.lazyLoad(exports, ["ClusterLink"], () => require("./clusterLink"));
|
|
45
|
+
exports.ConnectArtifact = null;
|
|
46
|
+
utilities.lazyLoad(exports, ["ConnectArtifact"], () => require("./connectArtifact"));
|
|
45
47
|
exports.Connector = null;
|
|
46
48
|
utilities.lazyLoad(exports, ["Connector"], () => require("./connector"));
|
|
47
49
|
exports.CustomConnectorPlugin = null;
|
|
@@ -56,6 +58,8 @@ exports.FlinkArtifact = null;
|
|
|
56
58
|
utilities.lazyLoad(exports, ["FlinkArtifact"], () => require("./flinkArtifact"));
|
|
57
59
|
exports.FlinkComputePool = null;
|
|
58
60
|
utilities.lazyLoad(exports, ["FlinkComputePool"], () => require("./flinkComputePool"));
|
|
61
|
+
exports.FlinkConnection = null;
|
|
62
|
+
utilities.lazyLoad(exports, ["FlinkConnection"], () => require("./flinkConnection"));
|
|
59
63
|
exports.FlinkStatement = null;
|
|
60
64
|
utilities.lazyLoad(exports, ["FlinkStatement"], () => require("./flinkStatement"));
|
|
61
65
|
exports.Gateway = null;
|
|
@@ -84,6 +88,9 @@ utilities.lazyLoad(exports, ["getCertificatePool", "getCertificatePoolOutput"],
|
|
|
84
88
|
exports.getClusterLink = null;
|
|
85
89
|
exports.getClusterLinkOutput = null;
|
|
86
90
|
utilities.lazyLoad(exports, ["getClusterLink", "getClusterLinkOutput"], () => require("./getClusterLink"));
|
|
91
|
+
exports.getConnectArtifact = null;
|
|
92
|
+
exports.getConnectArtifactOutput = null;
|
|
93
|
+
utilities.lazyLoad(exports, ["getConnectArtifact", "getConnectArtifactOutput"], () => require("./getConnectArtifact"));
|
|
87
94
|
exports.getDnsRecord = null;
|
|
88
95
|
exports.getDnsRecordOutput = null;
|
|
89
96
|
utilities.lazyLoad(exports, ["getDnsRecord", "getDnsRecordOutput"], () => require("./getDnsRecord"));
|
|
@@ -99,6 +106,9 @@ utilities.lazyLoad(exports, ["getFlinkArtifact", "getFlinkArtifactOutput"], () =
|
|
|
99
106
|
exports.getFlinkComputePool = null;
|
|
100
107
|
exports.getFlinkComputePoolOutput = null;
|
|
101
108
|
utilities.lazyLoad(exports, ["getFlinkComputePool", "getFlinkComputePoolOutput"], () => require("./getFlinkComputePool"));
|
|
109
|
+
exports.getFlinkConnection = null;
|
|
110
|
+
exports.getFlinkConnectionOutput = null;
|
|
111
|
+
utilities.lazyLoad(exports, ["getFlinkConnection", "getFlinkConnectionOutput"], () => require("./getFlinkConnection"));
|
|
102
112
|
exports.getFlinkRegion = null;
|
|
103
113
|
exports.getFlinkRegionOutput = null;
|
|
104
114
|
utilities.lazyLoad(exports, ["getFlinkRegion", "getFlinkRegionOutput"], () => require("./getFlinkRegion"));
|
|
@@ -312,6 +322,8 @@ const _module = {
|
|
|
312
322
|
return new exports.CertificatePool(name, undefined, { urn });
|
|
313
323
|
case "confluentcloud:index/clusterLink:ClusterLink":
|
|
314
324
|
return new exports.ClusterLink(name, undefined, { urn });
|
|
325
|
+
case "confluentcloud:index/connectArtifact:ConnectArtifact":
|
|
326
|
+
return new exports.ConnectArtifact(name, undefined, { urn });
|
|
315
327
|
case "confluentcloud:index/connector:Connector":
|
|
316
328
|
return new exports.Connector(name, undefined, { urn });
|
|
317
329
|
case "confluentcloud:index/customConnectorPlugin:CustomConnectorPlugin":
|
|
@@ -326,6 +338,8 @@ const _module = {
|
|
|
326
338
|
return new exports.FlinkArtifact(name, undefined, { urn });
|
|
327
339
|
case "confluentcloud:index/flinkComputePool:FlinkComputePool":
|
|
328
340
|
return new exports.FlinkComputePool(name, undefined, { urn });
|
|
341
|
+
case "confluentcloud:index/flinkConnection:FlinkConnection":
|
|
342
|
+
return new exports.FlinkConnection(name, undefined, { urn });
|
|
329
343
|
case "confluentcloud:index/flinkStatement:FlinkStatement":
|
|
330
344
|
return new exports.FlinkStatement(name, undefined, { urn });
|
|
331
345
|
case "confluentcloud:index/gateway:Gateway":
|
|
@@ -413,6 +427,7 @@ pulumi.runtime.registerResourceModule("confluentcloud", "index/catalogIntegratio
|
|
|
413
427
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/certificateAuthority", _module);
|
|
414
428
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/certificatePool", _module);
|
|
415
429
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/clusterLink", _module);
|
|
430
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/connectArtifact", _module);
|
|
416
431
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/connector", _module);
|
|
417
432
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/customConnectorPlugin", _module);
|
|
418
433
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/dnsForwarder", _module);
|
|
@@ -420,6 +435,7 @@ pulumi.runtime.registerResourceModule("confluentcloud", "index/dnsRecord", _modu
|
|
|
420
435
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/environment", _module);
|
|
421
436
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkArtifact", _module);
|
|
422
437
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkComputePool", _module);
|
|
438
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkConnection", _module);
|
|
423
439
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkStatement", _module);
|
|
424
440
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/gateway", _module);
|
|
425
441
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/groupMapping", _module);
|