@pulumi/confluentcloud 2.14.0-alpha.1738214901 → 2.14.0-alpha.1738245974
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 +31 -14
- package/flinkArtifact.js +4 -6
- package/flinkArtifact.js.map +1 -1
- package/flinkStatement.d.ts +35 -0
- package/flinkStatement.js +20 -1
- package/flinkStatement.js.map +1 -1
- package/getFlinkArtifact.d.ts +15 -0
- package/getFlinkArtifact.js +2 -0
- package/getFlinkArtifact.js.map +1 -1
- package/getSchema.d.ts +1 -1
- package/package.json +2 -2
- package/schema.d.ts +1 -1
package/flinkArtifact.d.ts
CHANGED
|
@@ -10,10 +10,9 @@ import * as outputs from "./types/output";
|
|
|
10
10
|
*
|
|
11
11
|
* const development = new confluentcloud.Environment("development", {displayName: "Development"});
|
|
12
12
|
* const main = new confluentcloud.FlinkArtifact("main", {
|
|
13
|
-
* "class": "io.confluent.example.SumScalarFunction",
|
|
14
|
-
* region: "us-west-2",
|
|
15
13
|
* cloud: "AWS",
|
|
16
|
-
*
|
|
14
|
+
* region: "us-west-2",
|
|
15
|
+
* displayName: "my_flink_sumscalar_artifact",
|
|
17
16
|
* contentFormat: "JAR",
|
|
18
17
|
* environment: {
|
|
19
18
|
* id: development.id,
|
|
@@ -61,14 +60,16 @@ export declare class FlinkArtifact extends pulumi.CustomResource {
|
|
|
61
60
|
readonly artifactFile: pulumi.Output<string | undefined>;
|
|
62
61
|
/**
|
|
63
62
|
* Java class or alias for the Flink Artifact as provided by developer.
|
|
63
|
+
*
|
|
64
|
+
* @deprecated The "class" attribute has been deprecated and will be removed in the next major version of the provider (3.0.0). Refer to the Upgrade Guide at https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/guides/version-3-upgrade for more details. The guide will be published once version 3.0.0 is released.
|
|
64
65
|
*/
|
|
65
|
-
readonly class: pulumi.Output<string>;
|
|
66
|
+
readonly class: pulumi.Output<string | undefined>;
|
|
66
67
|
/**
|
|
67
68
|
* The cloud service provider that runs the Flink Artifact.
|
|
68
69
|
*/
|
|
69
70
|
readonly cloud: pulumi.Output<string>;
|
|
70
71
|
/**
|
|
71
|
-
* (Optional String) Archive format of the Flink Artifact.
|
|
72
|
+
* (Optional String) Archive format of the Flink Artifact. Accepted values are: `JAR`, `ZIP`.
|
|
72
73
|
*/
|
|
73
74
|
readonly contentFormat: pulumi.Output<string>;
|
|
74
75
|
/**
|
|
@@ -76,9 +77,13 @@ export declare class FlinkArtifact extends pulumi.CustomResource {
|
|
|
76
77
|
*/
|
|
77
78
|
readonly description: pulumi.Output<string | undefined>;
|
|
78
79
|
/**
|
|
79
|
-
* The
|
|
80
|
+
* The unique name of the Flink Artifact per cloud, region, environment scope.
|
|
80
81
|
*/
|
|
81
82
|
readonly displayName: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* (Optional String) Documentation link of the Flink Artifact.
|
|
85
|
+
*/
|
|
86
|
+
readonly documentationLink: pulumi.Output<string | undefined>;
|
|
82
87
|
/**
|
|
83
88
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
84
89
|
*/
|
|
@@ -92,7 +97,7 @@ export declare class FlinkArtifact extends pulumi.CustomResource {
|
|
|
92
97
|
*/
|
|
93
98
|
readonly region: pulumi.Output<string>;
|
|
94
99
|
/**
|
|
95
|
-
* (Optional String) Runtime language of the Flink Artifact
|
|
100
|
+
* (Optional String) Runtime language of the Flink Artifact as `Python` or `Java`. Defaults to `Java`.
|
|
96
101
|
*/
|
|
97
102
|
readonly runtimeLanguage: pulumi.Output<string | undefined>;
|
|
98
103
|
/**
|
|
@@ -122,6 +127,8 @@ export interface FlinkArtifactState {
|
|
|
122
127
|
artifactFile?: pulumi.Input<string>;
|
|
123
128
|
/**
|
|
124
129
|
* Java class or alias for the Flink Artifact as provided by developer.
|
|
130
|
+
*
|
|
131
|
+
* @deprecated The "class" attribute has been deprecated and will be removed in the next major version of the provider (3.0.0). Refer to the Upgrade Guide at https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/guides/version-3-upgrade for more details. The guide will be published once version 3.0.0 is released.
|
|
125
132
|
*/
|
|
126
133
|
class?: pulumi.Input<string>;
|
|
127
134
|
/**
|
|
@@ -129,7 +136,7 @@ export interface FlinkArtifactState {
|
|
|
129
136
|
*/
|
|
130
137
|
cloud?: pulumi.Input<string>;
|
|
131
138
|
/**
|
|
132
|
-
* (Optional String) Archive format of the Flink Artifact.
|
|
139
|
+
* (Optional String) Archive format of the Flink Artifact. Accepted values are: `JAR`, `ZIP`.
|
|
133
140
|
*/
|
|
134
141
|
contentFormat?: pulumi.Input<string>;
|
|
135
142
|
/**
|
|
@@ -137,9 +144,13 @@ export interface FlinkArtifactState {
|
|
|
137
144
|
*/
|
|
138
145
|
description?: pulumi.Input<string>;
|
|
139
146
|
/**
|
|
140
|
-
* The
|
|
147
|
+
* The unique name of the Flink Artifact per cloud, region, environment scope.
|
|
141
148
|
*/
|
|
142
149
|
displayName?: pulumi.Input<string>;
|
|
150
|
+
/**
|
|
151
|
+
* (Optional String) Documentation link of the Flink Artifact.
|
|
152
|
+
*/
|
|
153
|
+
documentationLink?: pulumi.Input<string>;
|
|
143
154
|
/**
|
|
144
155
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
145
156
|
*/
|
|
@@ -153,7 +164,7 @@ export interface FlinkArtifactState {
|
|
|
153
164
|
*/
|
|
154
165
|
region?: pulumi.Input<string>;
|
|
155
166
|
/**
|
|
156
|
-
* (Optional String) Runtime language of the Flink Artifact
|
|
167
|
+
* (Optional String) Runtime language of the Flink Artifact as `Python` or `Java`. Defaults to `Java`.
|
|
157
168
|
*/
|
|
158
169
|
runtimeLanguage?: pulumi.Input<string>;
|
|
159
170
|
/**
|
|
@@ -171,14 +182,16 @@ export interface FlinkArtifactArgs {
|
|
|
171
182
|
artifactFile?: pulumi.Input<string>;
|
|
172
183
|
/**
|
|
173
184
|
* Java class or alias for the Flink Artifact as provided by developer.
|
|
185
|
+
*
|
|
186
|
+
* @deprecated The "class" attribute has been deprecated and will be removed in the next major version of the provider (3.0.0). Refer to the Upgrade Guide at https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/guides/version-3-upgrade for more details. The guide will be published once version 3.0.0 is released.
|
|
174
187
|
*/
|
|
175
|
-
class
|
|
188
|
+
class?: pulumi.Input<string>;
|
|
176
189
|
/**
|
|
177
190
|
* The cloud service provider that runs the Flink Artifact.
|
|
178
191
|
*/
|
|
179
192
|
cloud: pulumi.Input<string>;
|
|
180
193
|
/**
|
|
181
|
-
* (Optional String) Archive format of the Flink Artifact.
|
|
194
|
+
* (Optional String) Archive format of the Flink Artifact. Accepted values are: `JAR`, `ZIP`.
|
|
182
195
|
*/
|
|
183
196
|
contentFormat?: pulumi.Input<string>;
|
|
184
197
|
/**
|
|
@@ -186,9 +199,13 @@ export interface FlinkArtifactArgs {
|
|
|
186
199
|
*/
|
|
187
200
|
description?: pulumi.Input<string>;
|
|
188
201
|
/**
|
|
189
|
-
* The
|
|
202
|
+
* The unique name of the Flink Artifact per cloud, region, environment scope.
|
|
190
203
|
*/
|
|
191
204
|
displayName: pulumi.Input<string>;
|
|
205
|
+
/**
|
|
206
|
+
* (Optional String) Documentation link of the Flink Artifact.
|
|
207
|
+
*/
|
|
208
|
+
documentationLink?: pulumi.Input<string>;
|
|
192
209
|
/**
|
|
193
210
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
194
211
|
*/
|
|
@@ -198,7 +215,7 @@ export interface FlinkArtifactArgs {
|
|
|
198
215
|
*/
|
|
199
216
|
region: pulumi.Input<string>;
|
|
200
217
|
/**
|
|
201
|
-
* (Optional String) Runtime language of the Flink Artifact
|
|
218
|
+
* (Optional String) Runtime language of the Flink Artifact as `Python` or `Java`. Defaults to `Java`.
|
|
202
219
|
*/
|
|
203
220
|
runtimeLanguage?: pulumi.Input<string>;
|
|
204
221
|
}
|
package/flinkArtifact.js
CHANGED
|
@@ -14,10 +14,9 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* const development = new confluentcloud.Environment("development", {displayName: "Development"});
|
|
16
16
|
* const main = new confluentcloud.FlinkArtifact("main", {
|
|
17
|
-
* "class": "io.confluent.example.SumScalarFunction",
|
|
18
|
-
* region: "us-west-2",
|
|
19
17
|
* cloud: "AWS",
|
|
20
|
-
*
|
|
18
|
+
* region: "us-west-2",
|
|
19
|
+
* displayName: "my_flink_sumscalar_artifact",
|
|
21
20
|
* contentFormat: "JAR",
|
|
22
21
|
* environment: {
|
|
23
22
|
* id: development.id,
|
|
@@ -74,6 +73,7 @@ class FlinkArtifact extends pulumi.CustomResource {
|
|
|
74
73
|
resourceInputs["contentFormat"] = state ? state.contentFormat : undefined;
|
|
75
74
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
76
75
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
76
|
+
resourceInputs["documentationLink"] = state ? state.documentationLink : undefined;
|
|
77
77
|
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
78
78
|
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
79
79
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
@@ -82,9 +82,6 @@ class FlinkArtifact extends pulumi.CustomResource {
|
|
|
82
82
|
}
|
|
83
83
|
else {
|
|
84
84
|
const args = argsOrState;
|
|
85
|
-
if ((!args || args.class === undefined) && !opts.urn) {
|
|
86
|
-
throw new Error("Missing required property 'class'");
|
|
87
|
-
}
|
|
88
85
|
if ((!args || args.cloud === undefined) && !opts.urn) {
|
|
89
86
|
throw new Error("Missing required property 'cloud'");
|
|
90
87
|
}
|
|
@@ -103,6 +100,7 @@ class FlinkArtifact extends pulumi.CustomResource {
|
|
|
103
100
|
resourceInputs["contentFormat"] = args ? args.contentFormat : undefined;
|
|
104
101
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
105
102
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
103
|
+
resourceInputs["documentationLink"] = args ? args.documentationLink : undefined;
|
|
106
104
|
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
107
105
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
108
106
|
resourceInputs["runtimeLanguage"] = args ? args.runtimeLanguage : undefined;
|
package/flinkArtifact.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flinkArtifact.js","sourceRoot":"","sources":["../flinkArtifact.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"flinkArtifact.js","sourceRoot":"","sources":["../flinkArtifact.ts"],"names":[],"mappings":"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"}
|
package/flinkStatement.d.ts
CHANGED
|
@@ -51,6 +51,23 @@ import * as outputs from "./types/output";
|
|
|
51
51
|
* });
|
|
52
52
|
* ```
|
|
53
53
|
*
|
|
54
|
+
* Example of `confluentcloud.FlinkStatement` that creates a model:
|
|
55
|
+
* ```typescript
|
|
56
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
57
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
58
|
+
*
|
|
59
|
+
* const example = new confluentcloud.FlinkStatement("example", {
|
|
60
|
+
* statement: "CREATE MODEL `vector_encoding` INPUT (input STRING) OUTPUT (vector ARRAY<FLOAT>) WITH( 'TASK' = 'classification','PROVIDER' = 'OPENAI','OPENAI.ENDPOINT' = 'https://api.openai.com/v1/embeddings','OPENAI.API_KEY' = '{{sessionconfig/sql.secrets.openaikey}}');",
|
|
61
|
+
* properties: {
|
|
62
|
+
* "sql.current-catalog": confluentEnvironmentDisplayName,
|
|
63
|
+
* "sql.current-database": confluentKafkaClusterDisplayName,
|
|
64
|
+
* },
|
|
65
|
+
* propertiesSensitive: {
|
|
66
|
+
* "sql.secrets.openaikey": "***REDACTED***",
|
|
67
|
+
* },
|
|
68
|
+
* });
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
54
71
|
* ## Getting Started
|
|
55
72
|
*
|
|
56
73
|
* The following end-to-end example might help to get started with [Flink Statements](https://docs.confluent.io/cloud/current/flink/get-started/overview.html):
|
|
@@ -135,6 +152,12 @@ export declare class FlinkStatement extends pulumi.CustomResource {
|
|
|
135
152
|
readonly properties: pulumi.Output<{
|
|
136
153
|
[key: string]: string;
|
|
137
154
|
}>;
|
|
155
|
+
/**
|
|
156
|
+
* Block for sensitive statement properties:
|
|
157
|
+
*/
|
|
158
|
+
readonly propertiesSensitive: pulumi.Output<{
|
|
159
|
+
[key: string]: string;
|
|
160
|
+
}>;
|
|
138
161
|
/**
|
|
139
162
|
* The REST endpoint of the Flink region, for example, `https://flink.us-east-1.aws.confluent.cloud`).
|
|
140
163
|
*/
|
|
@@ -194,6 +217,12 @@ export interface FlinkStatementState {
|
|
|
194
217
|
properties?: pulumi.Input<{
|
|
195
218
|
[key: string]: pulumi.Input<string>;
|
|
196
219
|
}>;
|
|
220
|
+
/**
|
|
221
|
+
* Block for sensitive statement properties:
|
|
222
|
+
*/
|
|
223
|
+
propertiesSensitive?: pulumi.Input<{
|
|
224
|
+
[key: string]: pulumi.Input<string>;
|
|
225
|
+
}>;
|
|
197
226
|
/**
|
|
198
227
|
* The REST endpoint of the Flink region, for example, `https://flink.us-east-1.aws.confluent.cloud`).
|
|
199
228
|
*/
|
|
@@ -229,6 +258,12 @@ export interface FlinkStatementArgs {
|
|
|
229
258
|
properties?: pulumi.Input<{
|
|
230
259
|
[key: string]: pulumi.Input<string>;
|
|
231
260
|
}>;
|
|
261
|
+
/**
|
|
262
|
+
* Block for sensitive statement properties:
|
|
263
|
+
*/
|
|
264
|
+
propertiesSensitive?: pulumi.Input<{
|
|
265
|
+
[key: string]: pulumi.Input<string>;
|
|
266
|
+
}>;
|
|
232
267
|
/**
|
|
233
268
|
* The REST endpoint of the Flink region, for example, `https://flink.us-east-1.aws.confluent.cloud`).
|
|
234
269
|
*/
|
package/flinkStatement.js
CHANGED
|
@@ -55,6 +55,23 @@ const utilities = require("./utilities");
|
|
|
55
55
|
* });
|
|
56
56
|
* ```
|
|
57
57
|
*
|
|
58
|
+
* Example of `confluentcloud.FlinkStatement` that creates a model:
|
|
59
|
+
* ```typescript
|
|
60
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
61
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
62
|
+
*
|
|
63
|
+
* const example = new confluentcloud.FlinkStatement("example", {
|
|
64
|
+
* statement: "CREATE MODEL `vector_encoding` INPUT (input STRING) OUTPUT (vector ARRAY<FLOAT>) WITH( 'TASK' = 'classification','PROVIDER' = 'OPENAI','OPENAI.ENDPOINT' = 'https://api.openai.com/v1/embeddings','OPENAI.API_KEY' = '{{sessionconfig/sql.secrets.openaikey}}');",
|
|
65
|
+
* properties: {
|
|
66
|
+
* "sql.current-catalog": confluentEnvironmentDisplayName,
|
|
67
|
+
* "sql.current-database": confluentKafkaClusterDisplayName,
|
|
68
|
+
* },
|
|
69
|
+
* propertiesSensitive: {
|
|
70
|
+
* "sql.secrets.openaikey": "***REDACTED***",
|
|
71
|
+
* },
|
|
72
|
+
* });
|
|
73
|
+
* ```
|
|
74
|
+
*
|
|
58
75
|
* ## Getting Started
|
|
59
76
|
*
|
|
60
77
|
* The following end-to-end example might help to get started with [Flink Statements](https://docs.confluent.io/cloud/current/flink/get-started/overview.html):
|
|
@@ -129,6 +146,7 @@ class FlinkStatement extends pulumi.CustomResource {
|
|
|
129
146
|
resourceInputs["organization"] = state ? state.organization : undefined;
|
|
130
147
|
resourceInputs["principal"] = state ? state.principal : undefined;
|
|
131
148
|
resourceInputs["properties"] = state ? state.properties : undefined;
|
|
149
|
+
resourceInputs["propertiesSensitive"] = state ? state.propertiesSensitive : undefined;
|
|
132
150
|
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
133
151
|
resourceInputs["statement"] = state ? state.statement : undefined;
|
|
134
152
|
resourceInputs["statementName"] = state ? state.statementName : undefined;
|
|
@@ -145,6 +163,7 @@ class FlinkStatement extends pulumi.CustomResource {
|
|
|
145
163
|
resourceInputs["organization"] = args ? args.organization : undefined;
|
|
146
164
|
resourceInputs["principal"] = args ? args.principal : undefined;
|
|
147
165
|
resourceInputs["properties"] = args ? args.properties : undefined;
|
|
166
|
+
resourceInputs["propertiesSensitive"] = (args === null || args === void 0 ? void 0 : args.propertiesSensitive) ? pulumi.secret(args.propertiesSensitive) : undefined;
|
|
148
167
|
resourceInputs["restEndpoint"] = args ? args.restEndpoint : undefined;
|
|
149
168
|
resourceInputs["statement"] = args ? args.statement : undefined;
|
|
150
169
|
resourceInputs["statementName"] = args ? args.statementName : undefined;
|
|
@@ -153,7 +172,7 @@ class FlinkStatement extends pulumi.CustomResource {
|
|
|
153
172
|
resourceInputs["latestOffsetsTimestamp"] = undefined /*out*/;
|
|
154
173
|
}
|
|
155
174
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
156
|
-
const secretOpts = { additionalSecretOutputs: ["credentials"] };
|
|
175
|
+
const secretOpts = { additionalSecretOutputs: ["credentials", "propertiesSensitive"] };
|
|
157
176
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
158
177
|
super(FlinkStatement.__pulumiType, name, resourceInputs, opts);
|
|
159
178
|
}
|
package/flinkStatement.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flinkStatement.js","sourceRoot":"","sources":["../flinkStatement.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"flinkStatement.js","sourceRoot":"","sources":["../flinkStatement.ts"],"names":[],"mappings":"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"}
|
package/getFlinkArtifact.d.ts
CHANGED
|
@@ -37,6 +37,12 @@ export declare function getFlinkArtifact(args: GetFlinkArtifactArgs, opts?: pulu
|
|
|
37
37
|
* A collection of arguments for invoking getFlinkArtifact.
|
|
38
38
|
*/
|
|
39
39
|
export interface GetFlinkArtifactArgs {
|
|
40
|
+
/**
|
|
41
|
+
* (Required String) Java class or alias for the Flink Artifact as provided by developer.
|
|
42
|
+
*
|
|
43
|
+
* @deprecated The "class" attribute has been deprecated and will be removed in the next major version of the provider (3.0.0). Refer to the Upgrade Guide at https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/guides/version-3-upgrade for more details. The guide will be published once version 3.0.0 is released.
|
|
44
|
+
*/
|
|
45
|
+
class?: string;
|
|
40
46
|
/**
|
|
41
47
|
* The cloud service provider that hosts the region. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
42
48
|
*/
|
|
@@ -67,6 +73,8 @@ export interface GetFlinkArtifactResult {
|
|
|
67
73
|
readonly apiVersion: string;
|
|
68
74
|
/**
|
|
69
75
|
* (Required String) Java class or alias for the Flink Artifact as provided by developer.
|
|
76
|
+
*
|
|
77
|
+
* @deprecated The "class" attribute has been deprecated and will be removed in the next major version of the provider (3.0.0). Refer to the Upgrade Guide at https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/guides/version-3-upgrade for more details. The guide will be published once version 3.0.0 is released.
|
|
70
78
|
*/
|
|
71
79
|
readonly class: string;
|
|
72
80
|
readonly cloud: string;
|
|
@@ -79,6 +87,7 @@ export interface GetFlinkArtifactResult {
|
|
|
79
87
|
*/
|
|
80
88
|
readonly description: string;
|
|
81
89
|
readonly displayName: string;
|
|
90
|
+
readonly documentationLink: string;
|
|
82
91
|
readonly environment: outputs.GetFlinkArtifactEnvironment;
|
|
83
92
|
readonly id: string;
|
|
84
93
|
/**
|
|
@@ -128,6 +137,12 @@ export declare function getFlinkArtifactOutput(args: GetFlinkArtifactOutputArgs,
|
|
|
128
137
|
* A collection of arguments for invoking getFlinkArtifact.
|
|
129
138
|
*/
|
|
130
139
|
export interface GetFlinkArtifactOutputArgs {
|
|
140
|
+
/**
|
|
141
|
+
* (Required String) Java class or alias for the Flink Artifact as provided by developer.
|
|
142
|
+
*
|
|
143
|
+
* @deprecated The "class" attribute has been deprecated and will be removed in the next major version of the provider (3.0.0). Refer to the Upgrade Guide at https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/guides/version-3-upgrade for more details. The guide will be published once version 3.0.0 is released.
|
|
144
|
+
*/
|
|
145
|
+
class?: pulumi.Input<string>;
|
|
131
146
|
/**
|
|
132
147
|
* The cloud service provider that hosts the region. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
133
148
|
*/
|
package/getFlinkArtifact.js
CHANGED
|
@@ -39,6 +39,7 @@ const utilities = require("./utilities");
|
|
|
39
39
|
function getFlinkArtifact(args, opts) {
|
|
40
40
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
41
41
|
return pulumi.runtime.invoke("confluentcloud:index/getFlinkArtifact:getFlinkArtifact", {
|
|
42
|
+
"class": args.class,
|
|
42
43
|
"cloud": args.cloud,
|
|
43
44
|
"displayName": args.displayName,
|
|
44
45
|
"environment": args.environment,
|
|
@@ -81,6 +82,7 @@ exports.getFlinkArtifact = getFlinkArtifact;
|
|
|
81
82
|
function getFlinkArtifactOutput(args, opts) {
|
|
82
83
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
83
84
|
return pulumi.runtime.invokeOutput("confluentcloud:index/getFlinkArtifact:getFlinkArtifact", {
|
|
85
|
+
"class": args.class,
|
|
84
86
|
"cloud": args.cloud,
|
|
85
87
|
"displayName": args.displayName,
|
|
86
88
|
"environment": args.environment,
|
package/getFlinkArtifact.js.map
CHANGED
|
@@ -1 +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;
|
|
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,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;AAVD,4CAUC;AAuED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAAiC;IACtG,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,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;AAVD,wDAUC"}
|
package/getSchema.d.ts
CHANGED
|
@@ -95,7 +95,7 @@ export interface GetSchemaResult {
|
|
|
95
95
|
/**
|
|
96
96
|
* (Optional Block) The list of schema rules. See [Data Contracts for Schema Registry](https://docs.confluent.io/platform/7.5/schema-registry/fundamentals/data-contracts.html#rules) for more details. For example, these rules can enforce that a field that contains sensitive information must be encrypted, or that a message containing an invalid age must be sent to a dead letter queue.
|
|
97
97
|
*/
|
|
98
|
-
readonly ruleset
|
|
98
|
+
readonly ruleset?: outputs.GetSchemaRuleset;
|
|
99
99
|
/**
|
|
100
100
|
* (Required String) The schema string, for example, `file("./schema_version_1.avsc")`.
|
|
101
101
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "2.14.0-alpha.
|
|
3
|
+
"version": "2.14.0-alpha.1738245974",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Confluent cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "confluentcloud",
|
|
27
|
-
"version": "2.14.0-alpha.
|
|
27
|
+
"version": "2.14.0-alpha.1738245974"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/schema.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export declare class Schema extends pulumi.CustomResource {
|
|
|
77
77
|
/**
|
|
78
78
|
* The list of schema rules. See [Data Contracts for Schema Registry](https://docs.confluent.io/platform/7.5/schema-registry/fundamentals/data-contracts.html#rules) for more details. For example, these rules can enforce that a field that contains sensitive information must be encrypted, or that a message containing an invalid age must be sent to a dead letter queue.
|
|
79
79
|
*/
|
|
80
|
-
readonly ruleset: pulumi.Output<outputs.SchemaRuleset>;
|
|
80
|
+
readonly ruleset: pulumi.Output<outputs.SchemaRuleset | undefined>;
|
|
81
81
|
/**
|
|
82
82
|
* The schema string, for example, `file("./schema_version_1.avsc")`.
|
|
83
83
|
*/
|