@pulumi/confluentcloud 2.6.0-alpha.1729186476 → 2.6.0-alpha.1729204351
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/flinkArtifact.d.ts +196 -0
- package/flinkArtifact.js +118 -0
- package/flinkArtifact.js.map +1 -0
- package/getFlinkArtifact.d.ts +149 -0
- package/getFlinkArtifact.js +92 -0
- package/getFlinkArtifact.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +11 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +110 -74
- package/types/output.d.ts +73 -51
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
10
|
+
*
|
|
11
|
+
* const development = new confluentcloud.Environment("development", {displayName: "Development"});
|
|
12
|
+
* const main = new confluentcloud.FlinkArtifact("main", {
|
|
13
|
+
* "class": "io.confluent.example.SumScalarFunction",
|
|
14
|
+
* region: "us-west-2",
|
|
15
|
+
* cloud: "AWS",
|
|
16
|
+
* displayName: "flink_sumscalar_artifact",
|
|
17
|
+
* contentFormat: "JAR",
|
|
18
|
+
* environment: {
|
|
19
|
+
* id: development.id,
|
|
20
|
+
* },
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* ## Import
|
|
25
|
+
*
|
|
26
|
+
* You can import a Flink Artifact by using cloud, region, Flink Artifact ID and artifact file, in the format `<region>/<cloud>/<Flink Artifact ID>`. The following example shows how to import a Flink Artifact:
|
|
27
|
+
*
|
|
28
|
+
* $ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
|
|
29
|
+
*
|
|
30
|
+
* $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
31
|
+
*
|
|
32
|
+
* ```sh
|
|
33
|
+
* $ pulumi import confluentcloud:index/flinkArtifact:FlinkArtifact main us-east-1/aws/fa-123
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
37
|
+
*/
|
|
38
|
+
export declare class FlinkArtifact extends pulumi.CustomResource {
|
|
39
|
+
/**
|
|
40
|
+
* Get an existing FlinkArtifact resource's state with the given name, ID, and optional extra
|
|
41
|
+
* properties used to qualify the lookup.
|
|
42
|
+
*
|
|
43
|
+
* @param name The _unique_ name of the resulting resource.
|
|
44
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
45
|
+
* @param state Any extra arguments used during the lookup.
|
|
46
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
47
|
+
*/
|
|
48
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: FlinkArtifactState, opts?: pulumi.CustomResourceOptions): FlinkArtifact;
|
|
49
|
+
/**
|
|
50
|
+
* Returns true if the given object is an instance of FlinkArtifact. This is designed to work even
|
|
51
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
52
|
+
*/
|
|
53
|
+
static isInstance(obj: any): obj is FlinkArtifact;
|
|
54
|
+
/**
|
|
55
|
+
* (Required String) The API Version of the schema version of the Flink Artifact Pool, for example, `fa/v2`.
|
|
56
|
+
*/
|
|
57
|
+
readonly apiVersion: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The artifact file for Flink Artifact.
|
|
60
|
+
*/
|
|
61
|
+
readonly artifactFile: pulumi.Output<string | undefined>;
|
|
62
|
+
/**
|
|
63
|
+
* Java class or alias for the Flink Artifact as provided by developer.
|
|
64
|
+
*/
|
|
65
|
+
readonly class: pulumi.Output<string>;
|
|
66
|
+
/**
|
|
67
|
+
* The cloud service provider that runs the Flink Artifact.
|
|
68
|
+
*/
|
|
69
|
+
readonly cloud: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* (Optional String) Archive format of the Flink Artifact.
|
|
72
|
+
*/
|
|
73
|
+
readonly contentFormat: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* (Optional String) Description of the Flink Artifact.
|
|
76
|
+
*/
|
|
77
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
78
|
+
/**
|
|
79
|
+
* The display name of Flink Artifact.
|
|
80
|
+
*/
|
|
81
|
+
readonly displayName: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
84
|
+
*/
|
|
85
|
+
readonly environment: pulumi.Output<outputs.FlinkArtifactEnvironment>;
|
|
86
|
+
/**
|
|
87
|
+
* (Required String) The kind of the Flink Artifact Pool, for example, `FlinkArtifact`.
|
|
88
|
+
*/
|
|
89
|
+
readonly kind: pulumi.Output<string>;
|
|
90
|
+
/**
|
|
91
|
+
* The cloud service provider region that hosts the Flink Artifact.
|
|
92
|
+
*/
|
|
93
|
+
readonly region: pulumi.Output<string>;
|
|
94
|
+
/**
|
|
95
|
+
* (Optional String) Runtime language of the Flink Artifact. The default runtime language is Java.
|
|
96
|
+
*/
|
|
97
|
+
readonly runtimeLanguage: pulumi.Output<string | undefined>;
|
|
98
|
+
/**
|
|
99
|
+
* Create a FlinkArtifact resource with the given unique name, arguments, and options.
|
|
100
|
+
*
|
|
101
|
+
* @param name The _unique_ name of the resource.
|
|
102
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
103
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
104
|
+
*/
|
|
105
|
+
constructor(name: string, args: FlinkArtifactArgs, opts?: pulumi.CustomResourceOptions);
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Input properties used for looking up and filtering FlinkArtifact resources.
|
|
109
|
+
*/
|
|
110
|
+
export interface FlinkArtifactState {
|
|
111
|
+
/**
|
|
112
|
+
* (Required String) The API Version of the schema version of the Flink Artifact Pool, for example, `fa/v2`.
|
|
113
|
+
*/
|
|
114
|
+
apiVersion?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* The artifact file for Flink Artifact.
|
|
117
|
+
*/
|
|
118
|
+
artifactFile?: pulumi.Input<string>;
|
|
119
|
+
/**
|
|
120
|
+
* Java class or alias for the Flink Artifact as provided by developer.
|
|
121
|
+
*/
|
|
122
|
+
class?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* The cloud service provider that runs the Flink Artifact.
|
|
125
|
+
*/
|
|
126
|
+
cloud?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* (Optional String) Archive format of the Flink Artifact.
|
|
129
|
+
*/
|
|
130
|
+
contentFormat?: pulumi.Input<string>;
|
|
131
|
+
/**
|
|
132
|
+
* (Optional String) Description of the Flink Artifact.
|
|
133
|
+
*/
|
|
134
|
+
description?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* The display name of Flink Artifact.
|
|
137
|
+
*/
|
|
138
|
+
displayName?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
141
|
+
*/
|
|
142
|
+
environment?: pulumi.Input<inputs.FlinkArtifactEnvironment>;
|
|
143
|
+
/**
|
|
144
|
+
* (Required String) The kind of the Flink Artifact Pool, for example, `FlinkArtifact`.
|
|
145
|
+
*/
|
|
146
|
+
kind?: pulumi.Input<string>;
|
|
147
|
+
/**
|
|
148
|
+
* The cloud service provider region that hosts the Flink Artifact.
|
|
149
|
+
*/
|
|
150
|
+
region?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* (Optional String) Runtime language of the Flink Artifact. The default runtime language is Java.
|
|
153
|
+
*/
|
|
154
|
+
runtimeLanguage?: pulumi.Input<string>;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* The set of arguments for constructing a FlinkArtifact resource.
|
|
158
|
+
*/
|
|
159
|
+
export interface FlinkArtifactArgs {
|
|
160
|
+
/**
|
|
161
|
+
* The artifact file for Flink Artifact.
|
|
162
|
+
*/
|
|
163
|
+
artifactFile?: pulumi.Input<string>;
|
|
164
|
+
/**
|
|
165
|
+
* Java class or alias for the Flink Artifact as provided by developer.
|
|
166
|
+
*/
|
|
167
|
+
class: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* The cloud service provider that runs the Flink Artifact.
|
|
170
|
+
*/
|
|
171
|
+
cloud: pulumi.Input<string>;
|
|
172
|
+
/**
|
|
173
|
+
* (Optional String) Archive format of the Flink Artifact.
|
|
174
|
+
*/
|
|
175
|
+
contentFormat?: pulumi.Input<string>;
|
|
176
|
+
/**
|
|
177
|
+
* (Optional String) Description of the Flink Artifact.
|
|
178
|
+
*/
|
|
179
|
+
description?: pulumi.Input<string>;
|
|
180
|
+
/**
|
|
181
|
+
* The display name of Flink Artifact.
|
|
182
|
+
*/
|
|
183
|
+
displayName: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
186
|
+
*/
|
|
187
|
+
environment: pulumi.Input<inputs.FlinkArtifactEnvironment>;
|
|
188
|
+
/**
|
|
189
|
+
* The cloud service provider region that hosts the Flink Artifact.
|
|
190
|
+
*/
|
|
191
|
+
region: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* (Optional String) Runtime language of the Flink Artifact. The default runtime language is Java.
|
|
194
|
+
*/
|
|
195
|
+
runtimeLanguage?: pulumi.Input<string>;
|
|
196
|
+
}
|
package/flinkArtifact.js
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.FlinkArtifact = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
14
|
+
*
|
|
15
|
+
* const development = new confluentcloud.Environment("development", {displayName: "Development"});
|
|
16
|
+
* const main = new confluentcloud.FlinkArtifact("main", {
|
|
17
|
+
* "class": "io.confluent.example.SumScalarFunction",
|
|
18
|
+
* region: "us-west-2",
|
|
19
|
+
* cloud: "AWS",
|
|
20
|
+
* displayName: "flink_sumscalar_artifact",
|
|
21
|
+
* contentFormat: "JAR",
|
|
22
|
+
* environment: {
|
|
23
|
+
* id: development.id,
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* ## Import
|
|
29
|
+
*
|
|
30
|
+
* You can import a Flink Artifact by using cloud, region, Flink Artifact ID and artifact file, in the format `<region>/<cloud>/<Flink Artifact ID>`. The following example shows how to import a Flink Artifact:
|
|
31
|
+
*
|
|
32
|
+
* $ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
|
|
33
|
+
*
|
|
34
|
+
* $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
35
|
+
*
|
|
36
|
+
* ```sh
|
|
37
|
+
* $ pulumi import confluentcloud:index/flinkArtifact:FlinkArtifact main us-east-1/aws/fa-123
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
41
|
+
*/
|
|
42
|
+
class FlinkArtifact extends pulumi.CustomResource {
|
|
43
|
+
/**
|
|
44
|
+
* Get an existing FlinkArtifact resource's state with the given name, ID, and optional extra
|
|
45
|
+
* properties used to qualify the lookup.
|
|
46
|
+
*
|
|
47
|
+
* @param name The _unique_ name of the resulting resource.
|
|
48
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
+
* @param state Any extra arguments used during the lookup.
|
|
50
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
51
|
+
*/
|
|
52
|
+
static get(name, id, state, opts) {
|
|
53
|
+
return new FlinkArtifact(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Returns true if the given object is an instance of FlinkArtifact. This is designed to work even
|
|
57
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
58
|
+
*/
|
|
59
|
+
static isInstance(obj) {
|
|
60
|
+
if (obj === undefined || obj === null) {
|
|
61
|
+
return false;
|
|
62
|
+
}
|
|
63
|
+
return obj['__pulumiType'] === FlinkArtifact.__pulumiType;
|
|
64
|
+
}
|
|
65
|
+
constructor(name, argsOrState, opts) {
|
|
66
|
+
let resourceInputs = {};
|
|
67
|
+
opts = opts || {};
|
|
68
|
+
if (opts.id) {
|
|
69
|
+
const state = argsOrState;
|
|
70
|
+
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
71
|
+
resourceInputs["artifactFile"] = state ? state.artifactFile : undefined;
|
|
72
|
+
resourceInputs["class"] = state ? state.class : undefined;
|
|
73
|
+
resourceInputs["cloud"] = state ? state.cloud : undefined;
|
|
74
|
+
resourceInputs["contentFormat"] = state ? state.contentFormat : undefined;
|
|
75
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
76
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
77
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
78
|
+
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
79
|
+
resourceInputs["region"] = state ? state.region : undefined;
|
|
80
|
+
resourceInputs["runtimeLanguage"] = state ? state.runtimeLanguage : undefined;
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
const args = argsOrState;
|
|
84
|
+
if ((!args || args.class === undefined) && !opts.urn) {
|
|
85
|
+
throw new Error("Missing required property 'class'");
|
|
86
|
+
}
|
|
87
|
+
if ((!args || args.cloud === undefined) && !opts.urn) {
|
|
88
|
+
throw new Error("Missing required property 'cloud'");
|
|
89
|
+
}
|
|
90
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
91
|
+
throw new Error("Missing required property 'displayName'");
|
|
92
|
+
}
|
|
93
|
+
if ((!args || args.environment === undefined) && !opts.urn) {
|
|
94
|
+
throw new Error("Missing required property 'environment'");
|
|
95
|
+
}
|
|
96
|
+
if ((!args || args.region === undefined) && !opts.urn) {
|
|
97
|
+
throw new Error("Missing required property 'region'");
|
|
98
|
+
}
|
|
99
|
+
resourceInputs["artifactFile"] = args ? args.artifactFile : undefined;
|
|
100
|
+
resourceInputs["class"] = args ? args.class : undefined;
|
|
101
|
+
resourceInputs["cloud"] = args ? args.cloud : undefined;
|
|
102
|
+
resourceInputs["contentFormat"] = args ? args.contentFormat : undefined;
|
|
103
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
104
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
105
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
106
|
+
resourceInputs["region"] = args ? args.region : undefined;
|
|
107
|
+
resourceInputs["runtimeLanguage"] = args ? args.runtimeLanguage : undefined;
|
|
108
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
109
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
110
|
+
}
|
|
111
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
112
|
+
super(FlinkArtifact.__pulumiType, name, resourceInputs, opts);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
exports.FlinkArtifact = FlinkArtifact;
|
|
116
|
+
/** @internal */
|
|
117
|
+
FlinkArtifact.__pulumiType = 'confluentcloud:index/flinkArtifact:FlinkArtifact';
|
|
118
|
+
//# sourceMappingURL=flinkArtifact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flinkArtifact.js","sourceRoot":"","sources":["../flinkArtifact.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,149 @@
|
|
|
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.FlinkArtifact` describes a Flink Artifact data source.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
14
|
+
*
|
|
15
|
+
* export = async () => {
|
|
16
|
+
* const exampleUsingId = await confluentcloud.getFlinkArtifact({
|
|
17
|
+
* id: "lfa-abc123",
|
|
18
|
+
* environment: {
|
|
19
|
+
* id: "env-xyz456",
|
|
20
|
+
* },
|
|
21
|
+
* });
|
|
22
|
+
* const exampleUsingName = await confluentcloud.getFlinkArtifact({
|
|
23
|
+
* displayName: "my_artifact",
|
|
24
|
+
* environment: {
|
|
25
|
+
* id: "env-xyz456",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* return {
|
|
29
|
+
* exampleUsingId: exampleUsingId,
|
|
30
|
+
* exampleUsingName: exampleUsingName,
|
|
31
|
+
* };
|
|
32
|
+
* }
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
export declare function getFlinkArtifact(args: GetFlinkArtifactArgs, opts?: pulumi.InvokeOptions): Promise<GetFlinkArtifactResult>;
|
|
36
|
+
/**
|
|
37
|
+
* A collection of arguments for invoking getFlinkArtifact.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetFlinkArtifactArgs {
|
|
40
|
+
/**
|
|
41
|
+
* The cloud service provider that hosts the region. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
42
|
+
*/
|
|
43
|
+
cloud: string;
|
|
44
|
+
/**
|
|
45
|
+
* A human-readable name for the Flink Artifact.
|
|
46
|
+
*/
|
|
47
|
+
displayName?: string;
|
|
48
|
+
environment: inputs.GetFlinkArtifactEnvironment;
|
|
49
|
+
/**
|
|
50
|
+
* The ID of the Flink Artifact, for example, `lfa-abc123`.
|
|
51
|
+
*/
|
|
52
|
+
id?: string;
|
|
53
|
+
/**
|
|
54
|
+
* The cloud service provider region, for example, `us-east-1`.
|
|
55
|
+
*
|
|
56
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
57
|
+
*/
|
|
58
|
+
region: string;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* A collection of values returned by getFlinkArtifact.
|
|
62
|
+
*/
|
|
63
|
+
export interface GetFlinkArtifactResult {
|
|
64
|
+
/**
|
|
65
|
+
* (Required String) The API Version of the schema version of the Flink Artifact, for example, `fa/v2`.
|
|
66
|
+
*/
|
|
67
|
+
readonly apiVersion: string;
|
|
68
|
+
/**
|
|
69
|
+
* (Required String) Java class or alias for the Flink Artifact as provided by developer.
|
|
70
|
+
*/
|
|
71
|
+
readonly class: string;
|
|
72
|
+
readonly cloud: string;
|
|
73
|
+
/**
|
|
74
|
+
* (Required String) Archive format of the Flink Artifact.
|
|
75
|
+
*/
|
|
76
|
+
readonly contentFormat: string;
|
|
77
|
+
/**
|
|
78
|
+
* (Required String) Description of the Flink Artifact.
|
|
79
|
+
*/
|
|
80
|
+
readonly description: string;
|
|
81
|
+
readonly displayName: string;
|
|
82
|
+
readonly environment: outputs.GetFlinkArtifactEnvironment;
|
|
83
|
+
readonly id: string;
|
|
84
|
+
/**
|
|
85
|
+
* (Required String) The kind of the Flink Artifact, for example, `FlinkArtifact`.
|
|
86
|
+
*/
|
|
87
|
+
readonly kind: string;
|
|
88
|
+
readonly region: string;
|
|
89
|
+
/**
|
|
90
|
+
* (Required String) Runtime language of the Flink Artifact. The default runtime language is JAVA.
|
|
91
|
+
*/
|
|
92
|
+
readonly runtimeLanguage: string;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
96
|
+
*
|
|
97
|
+
* `confluentcloud.FlinkArtifact` describes a Flink Artifact data source.
|
|
98
|
+
*
|
|
99
|
+
* ## Example Usage
|
|
100
|
+
*
|
|
101
|
+
* ```typescript
|
|
102
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
103
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
104
|
+
*
|
|
105
|
+
* export = async () => {
|
|
106
|
+
* const exampleUsingId = await confluentcloud.getFlinkArtifact({
|
|
107
|
+
* id: "lfa-abc123",
|
|
108
|
+
* environment: {
|
|
109
|
+
* id: "env-xyz456",
|
|
110
|
+
* },
|
|
111
|
+
* });
|
|
112
|
+
* const exampleUsingName = await confluentcloud.getFlinkArtifact({
|
|
113
|
+
* displayName: "my_artifact",
|
|
114
|
+
* environment: {
|
|
115
|
+
* id: "env-xyz456",
|
|
116
|
+
* },
|
|
117
|
+
* });
|
|
118
|
+
* return {
|
|
119
|
+
* exampleUsingId: exampleUsingId,
|
|
120
|
+
* exampleUsingName: exampleUsingName,
|
|
121
|
+
* };
|
|
122
|
+
* }
|
|
123
|
+
* ```
|
|
124
|
+
*/
|
|
125
|
+
export declare function getFlinkArtifactOutput(args: GetFlinkArtifactOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFlinkArtifactResult>;
|
|
126
|
+
/**
|
|
127
|
+
* A collection of arguments for invoking getFlinkArtifact.
|
|
128
|
+
*/
|
|
129
|
+
export interface GetFlinkArtifactOutputArgs {
|
|
130
|
+
/**
|
|
131
|
+
* The cloud service provider that hosts the region. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
132
|
+
*/
|
|
133
|
+
cloud: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* A human-readable name for the Flink Artifact.
|
|
136
|
+
*/
|
|
137
|
+
displayName?: pulumi.Input<string>;
|
|
138
|
+
environment: pulumi.Input<inputs.GetFlinkArtifactEnvironmentArgs>;
|
|
139
|
+
/**
|
|
140
|
+
* The ID of the Flink Artifact, for example, `lfa-abc123`.
|
|
141
|
+
*/
|
|
142
|
+
id?: pulumi.Input<string>;
|
|
143
|
+
/**
|
|
144
|
+
* The cloud service provider region, for example, `us-east-1`.
|
|
145
|
+
*
|
|
146
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
147
|
+
*/
|
|
148
|
+
region: pulumi.Input<string>;
|
|
149
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getFlinkArtifactOutput = exports.getFlinkArtifact = 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.FlinkArtifact` describes a Flink Artifact data source.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
18
|
+
*
|
|
19
|
+
* export = async () => {
|
|
20
|
+
* const exampleUsingId = await confluentcloud.getFlinkArtifact({
|
|
21
|
+
* id: "lfa-abc123",
|
|
22
|
+
* environment: {
|
|
23
|
+
* id: "env-xyz456",
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* const exampleUsingName = await confluentcloud.getFlinkArtifact({
|
|
27
|
+
* displayName: "my_artifact",
|
|
28
|
+
* environment: {
|
|
29
|
+
* id: "env-xyz456",
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
32
|
+
* return {
|
|
33
|
+
* exampleUsingId: exampleUsingId,
|
|
34
|
+
* exampleUsingName: exampleUsingName,
|
|
35
|
+
* };
|
|
36
|
+
* }
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
function getFlinkArtifact(args, opts) {
|
|
40
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
41
|
+
return pulumi.runtime.invoke("confluentcloud:index/getFlinkArtifact:getFlinkArtifact", {
|
|
42
|
+
"cloud": args.cloud,
|
|
43
|
+
"displayName": args.displayName,
|
|
44
|
+
"environment": args.environment,
|
|
45
|
+
"id": args.id,
|
|
46
|
+
"region": args.region,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getFlinkArtifact = getFlinkArtifact;
|
|
50
|
+
/**
|
|
51
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
52
|
+
*
|
|
53
|
+
* `confluentcloud.FlinkArtifact` describes a Flink Artifact data source.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
60
|
+
*
|
|
61
|
+
* export = async () => {
|
|
62
|
+
* const exampleUsingId = await confluentcloud.getFlinkArtifact({
|
|
63
|
+
* id: "lfa-abc123",
|
|
64
|
+
* environment: {
|
|
65
|
+
* id: "env-xyz456",
|
|
66
|
+
* },
|
|
67
|
+
* });
|
|
68
|
+
* const exampleUsingName = await confluentcloud.getFlinkArtifact({
|
|
69
|
+
* displayName: "my_artifact",
|
|
70
|
+
* environment: {
|
|
71
|
+
* id: "env-xyz456",
|
|
72
|
+
* },
|
|
73
|
+
* });
|
|
74
|
+
* return {
|
|
75
|
+
* exampleUsingId: exampleUsingId,
|
|
76
|
+
* exampleUsingName: exampleUsingName,
|
|
77
|
+
* };
|
|
78
|
+
* }
|
|
79
|
+
* ```
|
|
80
|
+
*/
|
|
81
|
+
function getFlinkArtifactOutput(args, opts) {
|
|
82
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
83
|
+
return pulumi.runtime.invokeOutput("confluentcloud:index/getFlinkArtifact:getFlinkArtifact", {
|
|
84
|
+
"cloud": args.cloud,
|
|
85
|
+
"displayName": args.displayName,
|
|
86
|
+
"environment": args.environment,
|
|
87
|
+
"id": args.id,
|
|
88
|
+
"region": args.region,
|
|
89
|
+
}, opts);
|
|
90
|
+
}
|
|
91
|
+
exports.getFlinkArtifactOutput = getFlinkArtifactOutput;
|
|
92
|
+
//# sourceMappingURL=getFlinkArtifact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getFlinkArtifact.js","sourceRoot":"","sources":["../getFlinkArtifact.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4CASC;AA6DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wDASC"}
|
package/index.d.ts
CHANGED
|
@@ -40,6 +40,9 @@ export declare const DnsRecord: typeof import("./dnsRecord").DnsRecord;
|
|
|
40
40
|
export { EnvironmentArgs, EnvironmentState } from "./environment";
|
|
41
41
|
export type Environment = import("./environment").Environment;
|
|
42
42
|
export declare const Environment: typeof import("./environment").Environment;
|
|
43
|
+
export { FlinkArtifactArgs, FlinkArtifactState } from "./flinkArtifact";
|
|
44
|
+
export type FlinkArtifact = import("./flinkArtifact").FlinkArtifact;
|
|
45
|
+
export declare const FlinkArtifact: typeof import("./flinkArtifact").FlinkArtifact;
|
|
43
46
|
export { FlinkComputePoolArgs, FlinkComputePoolState } from "./flinkComputePool";
|
|
44
47
|
export type FlinkComputePool = import("./flinkComputePool").FlinkComputePool;
|
|
45
48
|
export declare const FlinkComputePool: typeof import("./flinkComputePool").FlinkComputePool;
|
|
@@ -73,6 +76,9 @@ export declare const getEnvironmentOutput: typeof import("./getEnvironment").get
|
|
|
73
76
|
export { GetEnvironmentsResult } from "./getEnvironments";
|
|
74
77
|
export declare const getEnvironments: typeof import("./getEnvironments").getEnvironments;
|
|
75
78
|
export declare const getEnvironmentsOutput: typeof import("./getEnvironments").getEnvironmentsOutput;
|
|
79
|
+
export { GetFlinkArtifactArgs, GetFlinkArtifactResult, GetFlinkArtifactOutputArgs } from "./getFlinkArtifact";
|
|
80
|
+
export declare const getFlinkArtifact: typeof import("./getFlinkArtifact").getFlinkArtifact;
|
|
81
|
+
export declare const getFlinkArtifactOutput: typeof import("./getFlinkArtifact").getFlinkArtifactOutput;
|
|
76
82
|
export { GetFlinkComputePoolArgs, GetFlinkComputePoolResult, GetFlinkComputePoolOutputArgs } from "./getFlinkComputePool";
|
|
77
83
|
export declare const getFlinkComputePool: typeof import("./getFlinkComputePool").getFlinkComputePool;
|
|
78
84
|
export declare const getFlinkComputePoolOutput: typeof import("./getFlinkComputePool").getFlinkComputePoolOutput;
|
package/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.types = exports.config = exports.TransitGatewayAttachment = exports.TfImporter = exports.TagBinding = exports.Tag = exports.SubjectMode = exports.SubjectConfig = exports.ServiceAccount = exports.SchemaRegistryKek = exports.SchemaRegistryDek = exports.SchemaRegistryClusterMode = exports.SchemaRegistryClusterConfig = exports.SchemaExporter = exports.Schema = exports.RoleBinding = exports.ProviderIntegration = exports.Provider = 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 = void 0;
|
|
5
|
+
exports.getInvitation = exports.getIdentityProviderOutput = exports.getIdentityProvider = exports.getIdentityPoolOutput = exports.getIdentityPool = exports.getGroupMappingOutput = exports.getGroupMapping = exports.getGatewayOutput = exports.getGateway = exports.getFlinkRegionOutput = exports.getFlinkRegion = exports.getFlinkComputePoolOutput = exports.getFlinkComputePool = exports.getFlinkArtifactOutput = exports.getFlinkArtifact = exports.getEnvironmentsOutput = exports.getEnvironments = exports.getEnvironmentOutput = exports.getEnvironment = exports.getDnsRecordOutput = exports.getDnsRecord = exports.getCertificatePoolOutput = exports.getCertificatePool = exports.getCertificateAuthorityOutput = exports.getCertificateAuthority = exports.getByokKeyOutput = exports.getByokKey = exports.getBusinessMetadataBindingOutput = exports.getBusinessMetadataBinding = exports.getBusinessMetadataOutput = exports.getBusinessMetadata = exports.getAccessPointOutput = exports.getAccessPoint = exports.FlinkStatement = exports.FlinkComputePool = exports.FlinkArtifact = exports.Environment = exports.DnsRecord = exports.DnsForwarder = exports.CustomConnectorPlugin = exports.Connector = exports.ClusterLink = exports.CertificatePool = exports.CertificateAuthority = exports.CatalogEntityAttributes = exports.ByokKey = exports.BusinessMetadataBinding = exports.BusinessMetadata = exports.ApiKey = exports.AccessPoint = void 0;
|
|
6
|
+
exports.getSubjectConfig = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaRegistryKekOutput = exports.getSchemaRegistryKek = exports.getSchemaRegistryDekOutput = exports.getSchemaRegistryDek = exports.getSchemaRegistryClustersOutput = exports.getSchemaRegistryClusters = exports.getSchemaRegistryClusterModeOutput = 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 = void 0;
|
|
7
|
+
exports.types = exports.config = exports.TransitGatewayAttachment = exports.TfImporter = exports.TagBinding = exports.Tag = exports.SubjectMode = exports.SubjectConfig = exports.ServiceAccount = exports.SchemaRegistryKek = exports.SchemaRegistryDek = exports.SchemaRegistryClusterMode = exports.SchemaRegistryClusterConfig = exports.SchemaExporter = exports.Schema = exports.RoleBinding = exports.ProviderIntegration = exports.Provider = 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.getSubjectModeOutput = exports.getSubjectMode = exports.getSubjectConfigOutput = void 0;
|
|
8
8
|
const pulumi = require("@pulumi/pulumi");
|
|
9
9
|
const utilities = require("./utilities");
|
|
10
10
|
exports.AccessPoint = null;
|
|
@@ -35,6 +35,8 @@ exports.DnsRecord = null;
|
|
|
35
35
|
utilities.lazyLoad(exports, ["DnsRecord"], () => require("./dnsRecord"));
|
|
36
36
|
exports.Environment = null;
|
|
37
37
|
utilities.lazyLoad(exports, ["Environment"], () => require("./environment"));
|
|
38
|
+
exports.FlinkArtifact = null;
|
|
39
|
+
utilities.lazyLoad(exports, ["FlinkArtifact"], () => require("./flinkArtifact"));
|
|
38
40
|
exports.FlinkComputePool = null;
|
|
39
41
|
utilities.lazyLoad(exports, ["FlinkComputePool"], () => require("./flinkComputePool"));
|
|
40
42
|
exports.FlinkStatement = null;
|
|
@@ -66,6 +68,9 @@ utilities.lazyLoad(exports, ["getEnvironment", "getEnvironmentOutput"], () => re
|
|
|
66
68
|
exports.getEnvironments = null;
|
|
67
69
|
exports.getEnvironmentsOutput = null;
|
|
68
70
|
utilities.lazyLoad(exports, ["getEnvironments", "getEnvironmentsOutput"], () => require("./getEnvironments"));
|
|
71
|
+
exports.getFlinkArtifact = null;
|
|
72
|
+
exports.getFlinkArtifactOutput = null;
|
|
73
|
+
utilities.lazyLoad(exports, ["getFlinkArtifact", "getFlinkArtifactOutput"], () => require("./getFlinkArtifact"));
|
|
69
74
|
exports.getFlinkComputePool = null;
|
|
70
75
|
exports.getFlinkComputePoolOutput = null;
|
|
71
76
|
utilities.lazyLoad(exports, ["getFlinkComputePool", "getFlinkComputePoolOutput"], () => require("./getFlinkComputePool"));
|
|
@@ -285,6 +290,8 @@ const _module = {
|
|
|
285
290
|
return new exports.DnsRecord(name, undefined, { urn });
|
|
286
291
|
case "confluentcloud:index/environment:Environment":
|
|
287
292
|
return new exports.Environment(name, undefined, { urn });
|
|
293
|
+
case "confluentcloud:index/flinkArtifact:FlinkArtifact":
|
|
294
|
+
return new exports.FlinkArtifact(name, undefined, { urn });
|
|
288
295
|
case "confluentcloud:index/flinkComputePool:FlinkComputePool":
|
|
289
296
|
return new exports.FlinkComputePool(name, undefined, { urn });
|
|
290
297
|
case "confluentcloud:index/flinkStatement:FlinkStatement":
|
|
@@ -374,6 +381,7 @@ pulumi.runtime.registerResourceModule("confluentcloud", "index/customConnectorPl
|
|
|
374
381
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/dnsForwarder", _module);
|
|
375
382
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/dnsRecord", _module);
|
|
376
383
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/environment", _module);
|
|
384
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkArtifact", _module);
|
|
377
385
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkComputePool", _module);
|
|
378
386
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/flinkStatement", _module);
|
|
379
387
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/groupMapping", _module);
|