@pulumi/confluentcloud 2.21.0-alpha.1742275851 → 2.21.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/catalogIntegration.d.ts +182 -0
- package/catalogIntegration.js +145 -0
- package/catalogIntegration.js.map +1 -0
- package/config/vars.d.ts +8 -0
- package/config/vars.js +12 -0
- package/config/vars.js.map +1 -1
- package/getCatalogIntegration.d.ts +68 -0
- package/getCatalogIntegration.js +42 -0
- package/getCatalogIntegration.js.map +1 -0
- package/getTableflowTopic.d.ts +172 -0
- package/getTableflowTopic.js +126 -0
- package/getTableflowTopic.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/provider.d.ts +16 -0
- package/provider.js +3 -1
- package/provider.js.map +1 -1
- package/tableflowTopic.d.ts +238 -0
- package/tableflowTopic.js +159 -0
- package/tableflowTopic.js.map +1 -0
- package/types/input.d.ts +176 -0
- package/types/output.d.ts +168 -0
|
@@ -0,0 +1,238 @@
|
|
|
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
|
+
* ### Option #1: Manage multiple Tableflow Topics in the same Pulumi Stack
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
12
|
+
*
|
|
13
|
+
* const example = new confluentcloud.TableflowTopic("example", {
|
|
14
|
+
* managedStorages: [{}],
|
|
15
|
+
* environment: {
|
|
16
|
+
* id: staging.id,
|
|
17
|
+
* },
|
|
18
|
+
* kafkaCluster: {
|
|
19
|
+
* id: stagingConfluentKafkaCluster.id,
|
|
20
|
+
* },
|
|
21
|
+
* displayName: orders.topicName,
|
|
22
|
+
* tableFormats: [
|
|
23
|
+
* "ICEBERG",
|
|
24
|
+
* "DELTA",
|
|
25
|
+
* ],
|
|
26
|
+
* credentials: {
|
|
27
|
+
* key: env_admin_tableflow_api_key.id,
|
|
28
|
+
* secret: env_admin_tableflow_api_key.secret,
|
|
29
|
+
* },
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ### Option #2: Manage a single Tableflow Topic in the same Pulumi Stack
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
37
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
38
|
+
*
|
|
39
|
+
* const example = new confluentcloud.TableflowTopic("example", {
|
|
40
|
+
* environment: {
|
|
41
|
+
* id: staging.id,
|
|
42
|
+
* },
|
|
43
|
+
* kafkaCluster: {
|
|
44
|
+
* id: stagingConfluentKafkaCluster.id,
|
|
45
|
+
* },
|
|
46
|
+
* displayName: orders.topicName,
|
|
47
|
+
* byobAws: {
|
|
48
|
+
* bucketName: "bucket_1",
|
|
49
|
+
* providerIntegrationId: main.id,
|
|
50
|
+
* },
|
|
51
|
+
* });
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* ## Getting Started
|
|
55
|
+
*
|
|
56
|
+
* The following end-to-end examples might help to get started with `confluentcloud.TableflowTopic` resource:
|
|
57
|
+
* * `confluent-managed-storage`: Tableflow topic with Confluent-managed storage.
|
|
58
|
+
*
|
|
59
|
+
* ## Import
|
|
60
|
+
*
|
|
61
|
+
* You can import a Tableflow Topic by using the Tableflow Topic name, Environment ID, and Kafka Cluster ID, in the format `<Environment ID>/<Kafka Cluster ID>/<Tableflow Topic name>`, for example:
|
|
62
|
+
*
|
|
63
|
+
* Option #1: Manage multiple Tableflow Topics in the same Pulumi Stack
|
|
64
|
+
*
|
|
65
|
+
* $ export IMPORT_TABLEFLOW_API_KEY="<tableflow_api_key>"
|
|
66
|
+
*
|
|
67
|
+
* $ export IMPORT_TABLEFLOW_API_SECRET="<tableflow_api_secret>"
|
|
68
|
+
*
|
|
69
|
+
* ```sh
|
|
70
|
+
* $ pulumi import confluentcloud:index/tableflowTopic:TableflowTopic example env-abc123/lkc-abc123/orders
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* Option #2: Manage a single Tableflow Topic in the same Pulumi Stack
|
|
74
|
+
*
|
|
75
|
+
* ```sh
|
|
76
|
+
* $ pulumi import confluentcloud:index/tableflowTopic:TableflowTopic example env-abc123/lkc-abc123/orders
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
80
|
+
*/
|
|
81
|
+
export declare class TableflowTopic extends pulumi.CustomResource {
|
|
82
|
+
/**
|
|
83
|
+
* Get an existing TableflowTopic resource's state with the given name, ID, and optional extra
|
|
84
|
+
* properties used to qualify the lookup.
|
|
85
|
+
*
|
|
86
|
+
* @param name The _unique_ name of the resulting resource.
|
|
87
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
88
|
+
* @param state Any extra arguments used during the lookup.
|
|
89
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
90
|
+
*/
|
|
91
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TableflowTopicState, opts?: pulumi.CustomResourceOptions): TableflowTopic;
|
|
92
|
+
/**
|
|
93
|
+
* Returns true if the given object is an instance of TableflowTopic. This is designed to work even
|
|
94
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
95
|
+
*/
|
|
96
|
+
static isInstance(obj: any): obj is TableflowTopic;
|
|
97
|
+
/**
|
|
98
|
+
* (Optional Configuration Block) supports the following:
|
|
99
|
+
*/
|
|
100
|
+
readonly byobAws: pulumi.Output<outputs.TableflowTopicByobAws | undefined>;
|
|
101
|
+
/**
|
|
102
|
+
* The Cluster API Credentials.
|
|
103
|
+
*/
|
|
104
|
+
readonly credentials: pulumi.Output<outputs.TableflowTopicCredentials | undefined>;
|
|
105
|
+
/**
|
|
106
|
+
* The name of the Kafka topic for which Tableflow is enabled.
|
|
107
|
+
*/
|
|
108
|
+
readonly displayName: pulumi.Output<string>;
|
|
109
|
+
/**
|
|
110
|
+
* (Optional Boolean) This flag determines whether to enable compaction for the Tableflow enabled topic.
|
|
111
|
+
*/
|
|
112
|
+
readonly enableCompaction: pulumi.Output<boolean>;
|
|
113
|
+
/**
|
|
114
|
+
* (Optional Boolean) This flag determines whether to enable partitioning for the Tableflow enabled topic.
|
|
115
|
+
*/
|
|
116
|
+
readonly enablePartitioning: pulumi.Output<boolean>;
|
|
117
|
+
/**
|
|
118
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
119
|
+
*/
|
|
120
|
+
readonly environment: pulumi.Output<outputs.TableflowTopicEnvironment>;
|
|
121
|
+
readonly kafkaCluster: pulumi.Output<outputs.TableflowTopicKafkaCluster>;
|
|
122
|
+
/**
|
|
123
|
+
* The configuration of the Confluent managed bucket.
|
|
124
|
+
*/
|
|
125
|
+
readonly managedStorages: pulumi.Output<outputs.TableflowTopicManagedStorage[] | undefined>;
|
|
126
|
+
/**
|
|
127
|
+
* The strategy to handle record failures in the Tableflow enabled topic during materialization. Accepted values are `SKIP`, `SUSPEND`. For `SKIP`, we skip the bad records and move to the next record. For `SUSPEND`, we suspend the materialization of the topic.
|
|
128
|
+
*/
|
|
129
|
+
readonly recordFailureStrategy: pulumi.Output<string>;
|
|
130
|
+
/**
|
|
131
|
+
* The max age of snapshots (Iceberg) or versions (Delta) (snapshot/version expiration) to keep on the table in milliseconds for the Tableflow enabled topic.
|
|
132
|
+
*/
|
|
133
|
+
readonly retentionMs: pulumi.Output<string | undefined>;
|
|
134
|
+
/**
|
|
135
|
+
* (Optional Boolean) Indicates whether the Tableflow should be suspended.
|
|
136
|
+
*/
|
|
137
|
+
readonly suspended: pulumi.Output<boolean>;
|
|
138
|
+
/**
|
|
139
|
+
* The supported table formats for the Tableflow-enabled topic. Accepted values are `DELTA`, `ICEBERG`.
|
|
140
|
+
*/
|
|
141
|
+
readonly tableFormats: pulumi.Output<string[]>;
|
|
142
|
+
/**
|
|
143
|
+
* Create a TableflowTopic resource with the given unique name, arguments, and options.
|
|
144
|
+
*
|
|
145
|
+
* @param name The _unique_ name of the resource.
|
|
146
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
147
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
148
|
+
*/
|
|
149
|
+
constructor(name: string, args: TableflowTopicArgs, opts?: pulumi.CustomResourceOptions);
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Input properties used for looking up and filtering TableflowTopic resources.
|
|
153
|
+
*/
|
|
154
|
+
export interface TableflowTopicState {
|
|
155
|
+
/**
|
|
156
|
+
* (Optional Configuration Block) supports the following:
|
|
157
|
+
*/
|
|
158
|
+
byobAws?: pulumi.Input<inputs.TableflowTopicByobAws>;
|
|
159
|
+
/**
|
|
160
|
+
* The Cluster API Credentials.
|
|
161
|
+
*/
|
|
162
|
+
credentials?: pulumi.Input<inputs.TableflowTopicCredentials>;
|
|
163
|
+
/**
|
|
164
|
+
* The name of the Kafka topic for which Tableflow is enabled.
|
|
165
|
+
*/
|
|
166
|
+
displayName?: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* (Optional Boolean) This flag determines whether to enable compaction for the Tableflow enabled topic.
|
|
169
|
+
*/
|
|
170
|
+
enableCompaction?: pulumi.Input<boolean>;
|
|
171
|
+
/**
|
|
172
|
+
* (Optional Boolean) This flag determines whether to enable partitioning for the Tableflow enabled topic.
|
|
173
|
+
*/
|
|
174
|
+
enablePartitioning?: pulumi.Input<boolean>;
|
|
175
|
+
/**
|
|
176
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
177
|
+
*/
|
|
178
|
+
environment?: pulumi.Input<inputs.TableflowTopicEnvironment>;
|
|
179
|
+
kafkaCluster?: pulumi.Input<inputs.TableflowTopicKafkaCluster>;
|
|
180
|
+
/**
|
|
181
|
+
* The configuration of the Confluent managed bucket.
|
|
182
|
+
*/
|
|
183
|
+
managedStorages?: pulumi.Input<pulumi.Input<inputs.TableflowTopicManagedStorage>[]>;
|
|
184
|
+
/**
|
|
185
|
+
* The strategy to handle record failures in the Tableflow enabled topic during materialization. Accepted values are `SKIP`, `SUSPEND`. For `SKIP`, we skip the bad records and move to the next record. For `SUSPEND`, we suspend the materialization of the topic.
|
|
186
|
+
*/
|
|
187
|
+
recordFailureStrategy?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The max age of snapshots (Iceberg) or versions (Delta) (snapshot/version expiration) to keep on the table in milliseconds for the Tableflow enabled topic.
|
|
190
|
+
*/
|
|
191
|
+
retentionMs?: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* (Optional Boolean) Indicates whether the Tableflow should be suspended.
|
|
194
|
+
*/
|
|
195
|
+
suspended?: pulumi.Input<boolean>;
|
|
196
|
+
/**
|
|
197
|
+
* The supported table formats for the Tableflow-enabled topic. Accepted values are `DELTA`, `ICEBERG`.
|
|
198
|
+
*/
|
|
199
|
+
tableFormats?: pulumi.Input<pulumi.Input<string>[]>;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* The set of arguments for constructing a TableflowTopic resource.
|
|
203
|
+
*/
|
|
204
|
+
export interface TableflowTopicArgs {
|
|
205
|
+
/**
|
|
206
|
+
* (Optional Configuration Block) supports the following:
|
|
207
|
+
*/
|
|
208
|
+
byobAws?: pulumi.Input<inputs.TableflowTopicByobAws>;
|
|
209
|
+
/**
|
|
210
|
+
* The Cluster API Credentials.
|
|
211
|
+
*/
|
|
212
|
+
credentials?: pulumi.Input<inputs.TableflowTopicCredentials>;
|
|
213
|
+
/**
|
|
214
|
+
* The name of the Kafka topic for which Tableflow is enabled.
|
|
215
|
+
*/
|
|
216
|
+
displayName: pulumi.Input<string>;
|
|
217
|
+
/**
|
|
218
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
219
|
+
*/
|
|
220
|
+
environment: pulumi.Input<inputs.TableflowTopicEnvironment>;
|
|
221
|
+
kafkaCluster: pulumi.Input<inputs.TableflowTopicKafkaCluster>;
|
|
222
|
+
/**
|
|
223
|
+
* The configuration of the Confluent managed bucket.
|
|
224
|
+
*/
|
|
225
|
+
managedStorages?: pulumi.Input<pulumi.Input<inputs.TableflowTopicManagedStorage>[]>;
|
|
226
|
+
/**
|
|
227
|
+
* The strategy to handle record failures in the Tableflow enabled topic during materialization. Accepted values are `SKIP`, `SUSPEND`. For `SKIP`, we skip the bad records and move to the next record. For `SUSPEND`, we suspend the materialization of the topic.
|
|
228
|
+
*/
|
|
229
|
+
recordFailureStrategy?: pulumi.Input<string>;
|
|
230
|
+
/**
|
|
231
|
+
* The max age of snapshots (Iceberg) or versions (Delta) (snapshot/version expiration) to keep on the table in milliseconds for the Tableflow enabled topic.
|
|
232
|
+
*/
|
|
233
|
+
retentionMs?: pulumi.Input<string>;
|
|
234
|
+
/**
|
|
235
|
+
* The supported table formats for the Tableflow-enabled topic. Accepted values are `DELTA`, `ICEBERG`.
|
|
236
|
+
*/
|
|
237
|
+
tableFormats?: pulumi.Input<pulumi.Input<string>[]>;
|
|
238
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
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.TableflowTopic = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ### Option #1: Manage multiple Tableflow Topics in the same Pulumi Stack
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
16
|
+
*
|
|
17
|
+
* const example = new confluentcloud.TableflowTopic("example", {
|
|
18
|
+
* managedStorages: [{}],
|
|
19
|
+
* environment: {
|
|
20
|
+
* id: staging.id,
|
|
21
|
+
* },
|
|
22
|
+
* kafkaCluster: {
|
|
23
|
+
* id: stagingConfluentKafkaCluster.id,
|
|
24
|
+
* },
|
|
25
|
+
* displayName: orders.topicName,
|
|
26
|
+
* tableFormats: [
|
|
27
|
+
* "ICEBERG",
|
|
28
|
+
* "DELTA",
|
|
29
|
+
* ],
|
|
30
|
+
* credentials: {
|
|
31
|
+
* key: env_admin_tableflow_api_key.id,
|
|
32
|
+
* secret: env_admin_tableflow_api_key.secret,
|
|
33
|
+
* },
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* ### Option #2: Manage a single Tableflow Topic in the same Pulumi Stack
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
42
|
+
*
|
|
43
|
+
* const example = new confluentcloud.TableflowTopic("example", {
|
|
44
|
+
* environment: {
|
|
45
|
+
* id: staging.id,
|
|
46
|
+
* },
|
|
47
|
+
* kafkaCluster: {
|
|
48
|
+
* id: stagingConfluentKafkaCluster.id,
|
|
49
|
+
* },
|
|
50
|
+
* displayName: orders.topicName,
|
|
51
|
+
* byobAws: {
|
|
52
|
+
* bucketName: "bucket_1",
|
|
53
|
+
* providerIntegrationId: main.id,
|
|
54
|
+
* },
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* ## Getting Started
|
|
59
|
+
*
|
|
60
|
+
* The following end-to-end examples might help to get started with `confluentcloud.TableflowTopic` resource:
|
|
61
|
+
* * `confluent-managed-storage`: Tableflow topic with Confluent-managed storage.
|
|
62
|
+
*
|
|
63
|
+
* ## Import
|
|
64
|
+
*
|
|
65
|
+
* You can import a Tableflow Topic by using the Tableflow Topic name, Environment ID, and Kafka Cluster ID, in the format `<Environment ID>/<Kafka Cluster ID>/<Tableflow Topic name>`, for example:
|
|
66
|
+
*
|
|
67
|
+
* Option #1: Manage multiple Tableflow Topics in the same Pulumi Stack
|
|
68
|
+
*
|
|
69
|
+
* $ export IMPORT_TABLEFLOW_API_KEY="<tableflow_api_key>"
|
|
70
|
+
*
|
|
71
|
+
* $ export IMPORT_TABLEFLOW_API_SECRET="<tableflow_api_secret>"
|
|
72
|
+
*
|
|
73
|
+
* ```sh
|
|
74
|
+
* $ pulumi import confluentcloud:index/tableflowTopic:TableflowTopic example env-abc123/lkc-abc123/orders
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* Option #2: Manage a single Tableflow Topic in the same Pulumi Stack
|
|
78
|
+
*
|
|
79
|
+
* ```sh
|
|
80
|
+
* $ pulumi import confluentcloud:index/tableflowTopic:TableflowTopic example env-abc123/lkc-abc123/orders
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
84
|
+
*/
|
|
85
|
+
class TableflowTopic extends pulumi.CustomResource {
|
|
86
|
+
/**
|
|
87
|
+
* Get an existing TableflowTopic resource's state with the given name, ID, and optional extra
|
|
88
|
+
* properties used to qualify the lookup.
|
|
89
|
+
*
|
|
90
|
+
* @param name The _unique_ name of the resulting resource.
|
|
91
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
92
|
+
* @param state Any extra arguments used during the lookup.
|
|
93
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
94
|
+
*/
|
|
95
|
+
static get(name, id, state, opts) {
|
|
96
|
+
return new TableflowTopic(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Returns true if the given object is an instance of TableflowTopic. This is designed to work even
|
|
100
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
101
|
+
*/
|
|
102
|
+
static isInstance(obj) {
|
|
103
|
+
if (obj === undefined || obj === null) {
|
|
104
|
+
return false;
|
|
105
|
+
}
|
|
106
|
+
return obj['__pulumiType'] === TableflowTopic.__pulumiType;
|
|
107
|
+
}
|
|
108
|
+
constructor(name, argsOrState, opts) {
|
|
109
|
+
let resourceInputs = {};
|
|
110
|
+
opts = opts || {};
|
|
111
|
+
if (opts.id) {
|
|
112
|
+
const state = argsOrState;
|
|
113
|
+
resourceInputs["byobAws"] = state ? state.byobAws : undefined;
|
|
114
|
+
resourceInputs["credentials"] = state ? state.credentials : undefined;
|
|
115
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
116
|
+
resourceInputs["enableCompaction"] = state ? state.enableCompaction : undefined;
|
|
117
|
+
resourceInputs["enablePartitioning"] = state ? state.enablePartitioning : undefined;
|
|
118
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
119
|
+
resourceInputs["kafkaCluster"] = state ? state.kafkaCluster : undefined;
|
|
120
|
+
resourceInputs["managedStorages"] = state ? state.managedStorages : undefined;
|
|
121
|
+
resourceInputs["recordFailureStrategy"] = state ? state.recordFailureStrategy : undefined;
|
|
122
|
+
resourceInputs["retentionMs"] = state ? state.retentionMs : undefined;
|
|
123
|
+
resourceInputs["suspended"] = state ? state.suspended : undefined;
|
|
124
|
+
resourceInputs["tableFormats"] = state ? state.tableFormats : undefined;
|
|
125
|
+
}
|
|
126
|
+
else {
|
|
127
|
+
const args = argsOrState;
|
|
128
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
129
|
+
throw new Error("Missing required property 'displayName'");
|
|
130
|
+
}
|
|
131
|
+
if ((!args || args.environment === undefined) && !opts.urn) {
|
|
132
|
+
throw new Error("Missing required property 'environment'");
|
|
133
|
+
}
|
|
134
|
+
if ((!args || args.kafkaCluster === undefined) && !opts.urn) {
|
|
135
|
+
throw new Error("Missing required property 'kafkaCluster'");
|
|
136
|
+
}
|
|
137
|
+
resourceInputs["byobAws"] = args ? args.byobAws : undefined;
|
|
138
|
+
resourceInputs["credentials"] = (args === null || args === void 0 ? void 0 : args.credentials) ? pulumi.secret(args.credentials) : undefined;
|
|
139
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
140
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
141
|
+
resourceInputs["kafkaCluster"] = args ? args.kafkaCluster : undefined;
|
|
142
|
+
resourceInputs["managedStorages"] = args ? args.managedStorages : undefined;
|
|
143
|
+
resourceInputs["recordFailureStrategy"] = args ? args.recordFailureStrategy : undefined;
|
|
144
|
+
resourceInputs["retentionMs"] = args ? args.retentionMs : undefined;
|
|
145
|
+
resourceInputs["tableFormats"] = args ? args.tableFormats : undefined;
|
|
146
|
+
resourceInputs["enableCompaction"] = undefined /*out*/;
|
|
147
|
+
resourceInputs["enablePartitioning"] = undefined /*out*/;
|
|
148
|
+
resourceInputs["suspended"] = undefined /*out*/;
|
|
149
|
+
}
|
|
150
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
151
|
+
const secretOpts = { additionalSecretOutputs: ["credentials"] };
|
|
152
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
153
|
+
super(TableflowTopic.__pulumiType, name, resourceInputs, opts);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
exports.TableflowTopic = TableflowTopic;
|
|
157
|
+
/** @internal */
|
|
158
|
+
TableflowTopic.__pulumiType = 'confluentcloud:index/tableflowTopic:TableflowTopic';
|
|
159
|
+
//# sourceMappingURL=tableflowTopic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tableflowTopic.js","sourceRoot":"","sources":["../tableflowTopic.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -235,6 +235,56 @@ export interface CatalogEntityAttributesSchemaRegistryCluster {
|
|
|
235
235
|
*/
|
|
236
236
|
id: pulumi.Input<string>;
|
|
237
237
|
}
|
|
238
|
+
export interface CatalogIntegrationAwsGlue {
|
|
239
|
+
/**
|
|
240
|
+
* The provider integration id.
|
|
241
|
+
*/
|
|
242
|
+
providerIntegrationId: pulumi.Input<string>;
|
|
243
|
+
}
|
|
244
|
+
export interface CatalogIntegrationCredentials {
|
|
245
|
+
/**
|
|
246
|
+
* The Tableflow API Key.
|
|
247
|
+
*/
|
|
248
|
+
key: pulumi.Input<string>;
|
|
249
|
+
/**
|
|
250
|
+
* The Cluster API Secret for your Confluent Cloud cluster.
|
|
251
|
+
*/
|
|
252
|
+
secret: pulumi.Input<string>;
|
|
253
|
+
}
|
|
254
|
+
export interface CatalogIntegrationEnvironment {
|
|
255
|
+
/**
|
|
256
|
+
* The ID of the Environment, for example, `env-abc123`.
|
|
257
|
+
*/
|
|
258
|
+
id: pulumi.Input<string>;
|
|
259
|
+
}
|
|
260
|
+
export interface CatalogIntegrationKafkaCluster {
|
|
261
|
+
/**
|
|
262
|
+
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
263
|
+
*/
|
|
264
|
+
id: pulumi.Input<string>;
|
|
265
|
+
}
|
|
266
|
+
export interface CatalogIntegrationSnowflake {
|
|
267
|
+
/**
|
|
268
|
+
* Allowed scope of the Snowflake Open Catalog.
|
|
269
|
+
*/
|
|
270
|
+
allowedScope: pulumi.Input<string>;
|
|
271
|
+
/**
|
|
272
|
+
* The client ID of the catalog integration.
|
|
273
|
+
*/
|
|
274
|
+
clientId: pulumi.Input<string>;
|
|
275
|
+
/**
|
|
276
|
+
* The client secret of the catalog integration.
|
|
277
|
+
*/
|
|
278
|
+
clientSecret: pulumi.Input<string>;
|
|
279
|
+
/**
|
|
280
|
+
* The catalog integration connection endpoint for Snowflake Open Catalog.
|
|
281
|
+
*/
|
|
282
|
+
endpoint: pulumi.Input<string>;
|
|
283
|
+
/**
|
|
284
|
+
* Warehouse name of the Snowflake Open Catalog, for example, `catalog-name`.
|
|
285
|
+
*/
|
|
286
|
+
warehouse: pulumi.Input<string>;
|
|
287
|
+
}
|
|
238
288
|
export interface CertificatePoolCertificateAuthority {
|
|
239
289
|
/**
|
|
240
290
|
* The ID of the Certificate Authority for this Certificate Pool, for example, `op-123abc`.
|
|
@@ -645,6 +695,50 @@ export interface GetBusinessMetadataSchemaRegistryClusterArgs {
|
|
|
645
695
|
*/
|
|
646
696
|
id: pulumi.Input<string>;
|
|
647
697
|
}
|
|
698
|
+
export interface GetCatalogIntegrationCredentials {
|
|
699
|
+
/**
|
|
700
|
+
* The Tableflow API Key.
|
|
701
|
+
*/
|
|
702
|
+
key: string;
|
|
703
|
+
/**
|
|
704
|
+
* The Cluster API Secret for your Confluent Cloud cluster.
|
|
705
|
+
*/
|
|
706
|
+
secret: string;
|
|
707
|
+
}
|
|
708
|
+
export interface GetCatalogIntegrationCredentialsArgs {
|
|
709
|
+
/**
|
|
710
|
+
* The Tableflow API Key.
|
|
711
|
+
*/
|
|
712
|
+
key: pulumi.Input<string>;
|
|
713
|
+
/**
|
|
714
|
+
* The Cluster API Secret for your Confluent Cloud cluster.
|
|
715
|
+
*/
|
|
716
|
+
secret: pulumi.Input<string>;
|
|
717
|
+
}
|
|
718
|
+
export interface GetCatalogIntegrationEnvironment {
|
|
719
|
+
/**
|
|
720
|
+
* The ID of the Environment, for example, `env-abc123`.
|
|
721
|
+
*/
|
|
722
|
+
id: string;
|
|
723
|
+
}
|
|
724
|
+
export interface GetCatalogIntegrationEnvironmentArgs {
|
|
725
|
+
/**
|
|
726
|
+
* The ID of the Environment, for example, `env-abc123`.
|
|
727
|
+
*/
|
|
728
|
+
id: pulumi.Input<string>;
|
|
729
|
+
}
|
|
730
|
+
export interface GetCatalogIntegrationKafkaCluster {
|
|
731
|
+
/**
|
|
732
|
+
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
733
|
+
*/
|
|
734
|
+
id: string;
|
|
735
|
+
}
|
|
736
|
+
export interface GetCatalogIntegrationKafkaClusterArgs {
|
|
737
|
+
/**
|
|
738
|
+
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
739
|
+
*/
|
|
740
|
+
id: pulumi.Input<string>;
|
|
741
|
+
}
|
|
648
742
|
export interface GetCertificatePoolCertificateAuthority {
|
|
649
743
|
/**
|
|
650
744
|
* The ID of the Certificate Authority for this Certificate Pool, for example, `op-123abc`.
|
|
@@ -1729,6 +1823,50 @@ export interface GetSubjectModeSchemaRegistryClusterArgs {
|
|
|
1729
1823
|
*/
|
|
1730
1824
|
id: pulumi.Input<string>;
|
|
1731
1825
|
}
|
|
1826
|
+
export interface GetTableflowTopicCredentials {
|
|
1827
|
+
/**
|
|
1828
|
+
* The Tableflow API Key.
|
|
1829
|
+
*/
|
|
1830
|
+
key: string;
|
|
1831
|
+
/**
|
|
1832
|
+
* The Cluster API Secret for your Confluent Cloud cluster.
|
|
1833
|
+
*/
|
|
1834
|
+
secret: string;
|
|
1835
|
+
}
|
|
1836
|
+
export interface GetTableflowTopicCredentialsArgs {
|
|
1837
|
+
/**
|
|
1838
|
+
* The Tableflow API Key.
|
|
1839
|
+
*/
|
|
1840
|
+
key: pulumi.Input<string>;
|
|
1841
|
+
/**
|
|
1842
|
+
* The Cluster API Secret for your Confluent Cloud cluster.
|
|
1843
|
+
*/
|
|
1844
|
+
secret: pulumi.Input<string>;
|
|
1845
|
+
}
|
|
1846
|
+
export interface GetTableflowTopicEnvironment {
|
|
1847
|
+
/**
|
|
1848
|
+
* The ID of the Environment, for example, `env-abc123`.
|
|
1849
|
+
*/
|
|
1850
|
+
id: string;
|
|
1851
|
+
}
|
|
1852
|
+
export interface GetTableflowTopicEnvironmentArgs {
|
|
1853
|
+
/**
|
|
1854
|
+
* The ID of the Environment, for example, `env-abc123`.
|
|
1855
|
+
*/
|
|
1856
|
+
id: pulumi.Input<string>;
|
|
1857
|
+
}
|
|
1858
|
+
export interface GetTableflowTopicKafkaCluster {
|
|
1859
|
+
/**
|
|
1860
|
+
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
1861
|
+
*/
|
|
1862
|
+
id: string;
|
|
1863
|
+
}
|
|
1864
|
+
export interface GetTableflowTopicKafkaClusterArgs {
|
|
1865
|
+
/**
|
|
1866
|
+
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
1867
|
+
*/
|
|
1868
|
+
id: pulumi.Input<string>;
|
|
1869
|
+
}
|
|
1732
1870
|
export interface GetTagBindingCredentials {
|
|
1733
1871
|
/**
|
|
1734
1872
|
* The Schema Registry API Key.
|
|
@@ -2604,6 +2742,44 @@ export interface SubjectModeSchemaRegistryCluster {
|
|
|
2604
2742
|
*/
|
|
2605
2743
|
id: pulumi.Input<string>;
|
|
2606
2744
|
}
|
|
2745
|
+
export interface TableflowTopicByobAws {
|
|
2746
|
+
/**
|
|
2747
|
+
* The bucket name.
|
|
2748
|
+
*/
|
|
2749
|
+
bucketName: pulumi.Input<string>;
|
|
2750
|
+
/**
|
|
2751
|
+
* (Required String) The bucket region.
|
|
2752
|
+
*/
|
|
2753
|
+
bucketRegion?: pulumi.Input<string>;
|
|
2754
|
+
/**
|
|
2755
|
+
* The provider integration id.
|
|
2756
|
+
*/
|
|
2757
|
+
providerIntegrationId: pulumi.Input<string>;
|
|
2758
|
+
}
|
|
2759
|
+
export interface TableflowTopicCredentials {
|
|
2760
|
+
/**
|
|
2761
|
+
* The Tableflow API Key.
|
|
2762
|
+
*/
|
|
2763
|
+
key: pulumi.Input<string>;
|
|
2764
|
+
/**
|
|
2765
|
+
* The Cluster API Secret for your Confluent Cloud cluster.
|
|
2766
|
+
*/
|
|
2767
|
+
secret: pulumi.Input<string>;
|
|
2768
|
+
}
|
|
2769
|
+
export interface TableflowTopicEnvironment {
|
|
2770
|
+
/**
|
|
2771
|
+
* The ID of the Environment, for example, `env-abc123`.
|
|
2772
|
+
*/
|
|
2773
|
+
id: pulumi.Input<string>;
|
|
2774
|
+
}
|
|
2775
|
+
export interface TableflowTopicKafkaCluster {
|
|
2776
|
+
/**
|
|
2777
|
+
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
2778
|
+
*/
|
|
2779
|
+
id: pulumi.Input<string>;
|
|
2780
|
+
}
|
|
2781
|
+
export interface TableflowTopicManagedStorage {
|
|
2782
|
+
}
|
|
2607
2783
|
export interface TagBindingCredentials {
|
|
2608
2784
|
/**
|
|
2609
2785
|
* The Schema Registry API Key.
|