@pulumi/confluentcloud 1.4.0 → 1.5.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/connector.d.ts +6 -6
- package/getKafkaClientQuota.d.ts +3 -0
- package/getKafkaClientQuota.js +3 -0
- package/getKafkaClientQuota.js.map +1 -1
- package/getKsqlCluster.d.ts +3 -0
- package/getKsqlCluster.js +3 -0
- package/getKsqlCluster.js.map +1 -1
- package/getStreamGovernanceRegion.d.ts +71 -0
- package/getStreamGovernanceRegion.js +46 -0
- package/getStreamGovernanceRegion.js.map +1 -0
- package/getStreatGovernanceCluster.d.ts +96 -0
- package/getStreatGovernanceCluster.js +54 -0
- package/getStreatGovernanceCluster.js.map +1 -0
- package/getTransitGatewayAttachment.d.ts +83 -0
- package/getTransitGatewayAttachment.js +54 -0
- package/getTransitGatewayAttachment.js.map +1 -0
- package/identityPool.d.ts +0 -3
- package/identityPool.js +0 -3
- package/identityPool.js.map +1 -1
- package/identityProvider.d.ts +0 -3
- package/identityProvider.js +0 -3
- package/identityProvider.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +21 -1
- package/index.js.map +1 -1
- package/kafkaAcl.d.ts +3 -3
- package/kafkaClusterConfig.d.ts +3 -0
- package/kafkaClusterConfig.js +3 -0
- package/kafkaClusterConfig.js.map +1 -1
- package/kafkaTopic.d.ts +1 -1
- package/kafkaTopic.js +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/streamGovernanceCluster.d.ts +139 -0
- package/streamGovernanceCluster.js +106 -0
- package/streamGovernanceCluster.js.map +1 -0
- package/transitGatewayAttachment.d.ts +100 -0
- package/transitGatewayAttachment.js +72 -0
- package/transitGatewayAttachment.js.map +1 -0
- package/types/input.d.ts +115 -33
- package/types/output.d.ts +112 -12
|
@@ -0,0 +1,72 @@
|
|
|
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.TransitGatewayAttachment = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* You can import a Transit Gateway Attachment by using Environment ID and Transit Gateway Attachment ID, in the format `<Environment ID>/<Transit Gateway Attachment ID>`. The following example shows how to import a Transit Gateway Attachment$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment my_tgwa env-abc123/tgwa-abc123
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
|
+
*/
|
|
19
|
+
class TransitGatewayAttachment extends pulumi.CustomResource {
|
|
20
|
+
constructor(name, argsOrState, opts) {
|
|
21
|
+
let resourceInputs = {};
|
|
22
|
+
opts = opts || {};
|
|
23
|
+
if (opts.id) {
|
|
24
|
+
const state = argsOrState;
|
|
25
|
+
resourceInputs["aws"] = state ? state.aws : undefined;
|
|
26
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
27
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
28
|
+
resourceInputs["network"] = state ? state.network : undefined;
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
const args = argsOrState;
|
|
32
|
+
if ((!args || args.environment === undefined) && !opts.urn) {
|
|
33
|
+
throw new Error("Missing required property 'environment'");
|
|
34
|
+
}
|
|
35
|
+
if ((!args || args.network === undefined) && !opts.urn) {
|
|
36
|
+
throw new Error("Missing required property 'network'");
|
|
37
|
+
}
|
|
38
|
+
resourceInputs["aws"] = args ? args.aws : undefined;
|
|
39
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
40
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
41
|
+
resourceInputs["network"] = args ? args.network : undefined;
|
|
42
|
+
}
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
44
|
+
super(TransitGatewayAttachment.__pulumiType, name, resourceInputs, opts);
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing TransitGatewayAttachment 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 TransitGatewayAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of TransitGatewayAttachment. 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'] === TransitGatewayAttachment.__pulumiType;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.TransitGatewayAttachment = TransitGatewayAttachment;
|
|
70
|
+
/** @internal */
|
|
71
|
+
TransitGatewayAttachment.__pulumiType = 'confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment';
|
|
72
|
+
//# sourceMappingURL=transitGatewayAttachment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transitGatewayAttachment.js","sourceRoot":"","sources":["../transitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAsD/D,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;IA7ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;;AA1BL,4DA+EC;AAjEG,gBAAgB;AACO,qCAAY,GAAG,wEAAwE,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ export interface ApiKeyOwner {
|
|
|
37
37
|
}
|
|
38
38
|
export interface ClusterLinkDestinationKafkaCluster {
|
|
39
39
|
/**
|
|
40
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
40
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
41
41
|
*/
|
|
42
42
|
bootstrapEndpoint?: pulumi.Input<string>;
|
|
43
43
|
credentials?: pulumi.Input<inputs.ClusterLinkDestinationKafkaClusterCredentials>;
|
|
@@ -62,7 +62,7 @@ export interface ClusterLinkDestinationKafkaClusterCredentials {
|
|
|
62
62
|
}
|
|
63
63
|
export interface ClusterLinkSourceKafkaCluster {
|
|
64
64
|
/**
|
|
65
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
65
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
66
66
|
*/
|
|
67
67
|
bootstrapEndpoint?: pulumi.Input<string>;
|
|
68
68
|
credentials?: pulumi.Input<inputs.ClusterLinkSourceKafkaClusterCredentials>;
|
|
@@ -145,71 +145,79 @@ export interface GetKafkaClusterEnvironmentArgs {
|
|
|
145
145
|
*/
|
|
146
146
|
id: pulumi.Input<string>;
|
|
147
147
|
}
|
|
148
|
-
export interface GetKafkaClusterStandardArgs {
|
|
149
|
-
}
|
|
150
148
|
export interface GetKafkaClusterStandard {
|
|
151
149
|
}
|
|
152
|
-
export interface
|
|
150
|
+
export interface GetKafkaClusterStandardArgs {
|
|
151
|
+
}
|
|
152
|
+
export interface GetKafkaTopicCredentialsArgs {
|
|
153
153
|
/**
|
|
154
154
|
* The Kafka API Key.
|
|
155
155
|
*/
|
|
156
|
-
key: string
|
|
156
|
+
key: pulumi.Input<string>;
|
|
157
157
|
/**
|
|
158
158
|
* The Kafka API Secret.
|
|
159
159
|
*/
|
|
160
|
-
secret: string
|
|
160
|
+
secret: pulumi.Input<string>;
|
|
161
161
|
}
|
|
162
|
-
export interface
|
|
162
|
+
export interface GetKafkaTopicCredentials {
|
|
163
163
|
/**
|
|
164
164
|
* The Kafka API Key.
|
|
165
165
|
*/
|
|
166
|
-
key:
|
|
166
|
+
key: string;
|
|
167
167
|
/**
|
|
168
168
|
* The Kafka API Secret.
|
|
169
169
|
*/
|
|
170
|
-
secret:
|
|
170
|
+
secret: string;
|
|
171
171
|
}
|
|
172
|
-
export interface
|
|
172
|
+
export interface GetKafkaTopicKafkaClusterArgs {
|
|
173
173
|
/**
|
|
174
174
|
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
175
175
|
*/
|
|
176
|
-
id: string
|
|
176
|
+
id: pulumi.Input<string>;
|
|
177
177
|
}
|
|
178
|
-
export interface
|
|
178
|
+
export interface GetKafkaTopicKafkaCluster {
|
|
179
179
|
/**
|
|
180
180
|
* The ID of the Kafka cluster, for example, `lkc-abc123`.
|
|
181
181
|
*/
|
|
182
|
-
id:
|
|
182
|
+
id: string;
|
|
183
183
|
}
|
|
184
|
-
export interface
|
|
184
|
+
export interface GetKsqlClusterEnvironment {
|
|
185
185
|
/**
|
|
186
186
|
* The ID of the Environment that the ksqlDB cluster belongs to, for example, `env-xyz456`.
|
|
187
187
|
*/
|
|
188
|
-
id:
|
|
188
|
+
id: string;
|
|
189
189
|
}
|
|
190
|
-
export interface
|
|
190
|
+
export interface GetKsqlClusterEnvironmentArgs {
|
|
191
191
|
/**
|
|
192
192
|
* The ID of the Environment that the ksqlDB cluster belongs to, for example, `env-xyz456`.
|
|
193
193
|
*/
|
|
194
|
-
id: string
|
|
194
|
+
id: pulumi.Input<string>;
|
|
195
195
|
}
|
|
196
196
|
export interface GetNetworkAw {
|
|
197
197
|
/**
|
|
198
|
-
* (
|
|
198
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
199
|
+
*/
|
|
200
|
+
account?: string;
|
|
201
|
+
/**
|
|
202
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
199
203
|
*/
|
|
200
204
|
privateLinkEndpointService?: string;
|
|
201
205
|
/**
|
|
202
|
-
* (Required String) The
|
|
206
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
203
207
|
*/
|
|
204
208
|
vpc?: string;
|
|
205
209
|
}
|
|
206
210
|
export interface GetNetworkAwArgs {
|
|
207
211
|
/**
|
|
208
|
-
* (
|
|
212
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
213
|
+
*/
|
|
214
|
+
account?: pulumi.Input<string>;
|
|
215
|
+
/**
|
|
216
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
209
217
|
*/
|
|
210
218
|
privateLinkEndpointService?: pulumi.Input<string>;
|
|
211
219
|
/**
|
|
212
|
-
* (Required String) The
|
|
220
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
213
221
|
*/
|
|
214
222
|
vpc?: pulumi.Input<string>;
|
|
215
223
|
}
|
|
@@ -243,33 +251,33 @@ export interface GetNetworkEnvironmentArgs {
|
|
|
243
251
|
}
|
|
244
252
|
export interface GetNetworkGcp {
|
|
245
253
|
/**
|
|
246
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
254
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
247
255
|
*/
|
|
248
256
|
privateServiceConnectServiceAttachments?: {
|
|
249
257
|
[key: string]: string;
|
|
250
258
|
};
|
|
251
259
|
/**
|
|
252
|
-
* (Required String) The GCP
|
|
260
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
253
261
|
*/
|
|
254
262
|
project?: string;
|
|
255
263
|
/**
|
|
256
|
-
* (Required String) The
|
|
264
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
257
265
|
*/
|
|
258
266
|
vpcNetwork?: string;
|
|
259
267
|
}
|
|
260
268
|
export interface GetNetworkGcpArgs {
|
|
261
269
|
/**
|
|
262
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
270
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
263
271
|
*/
|
|
264
272
|
privateServiceConnectServiceAttachments?: pulumi.Input<{
|
|
265
273
|
[key: string]: pulumi.Input<string>;
|
|
266
274
|
}>;
|
|
267
275
|
/**
|
|
268
|
-
* (Required String) The GCP
|
|
276
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
269
277
|
*/
|
|
270
278
|
project?: pulumi.Input<string>;
|
|
271
279
|
/**
|
|
272
|
-
* (Required String) The
|
|
280
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
273
281
|
*/
|
|
274
282
|
vpcNetwork?: pulumi.Input<string>;
|
|
275
283
|
}
|
|
@@ -297,6 +305,30 @@ export interface GetPrivateLinkAccessEnvironmentArgs {
|
|
|
297
305
|
*/
|
|
298
306
|
id: pulumi.Input<string>;
|
|
299
307
|
}
|
|
308
|
+
export interface GetStreatGovernanceClusterEnvironment {
|
|
309
|
+
/**
|
|
310
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
311
|
+
*/
|
|
312
|
+
id: string;
|
|
313
|
+
}
|
|
314
|
+
export interface GetStreatGovernanceClusterEnvironmentArgs {
|
|
315
|
+
/**
|
|
316
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
317
|
+
*/
|
|
318
|
+
id: pulumi.Input<string>;
|
|
319
|
+
}
|
|
320
|
+
export interface GetTransitGatewayAttachmentEnvironmentArgs {
|
|
321
|
+
/**
|
|
322
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
323
|
+
*/
|
|
324
|
+
id: pulumi.Input<string>;
|
|
325
|
+
}
|
|
326
|
+
export interface GetTransitGatewayAttachmentEnvironment {
|
|
327
|
+
/**
|
|
328
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
329
|
+
*/
|
|
330
|
+
id: string;
|
|
331
|
+
}
|
|
300
332
|
export interface IdentityPoolIdentityProvider {
|
|
301
333
|
/**
|
|
302
334
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
@@ -452,11 +484,15 @@ export interface KsqlClusterKafkaCluster {
|
|
|
452
484
|
}
|
|
453
485
|
export interface NetworkAw {
|
|
454
486
|
/**
|
|
455
|
-
* (
|
|
487
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
488
|
+
*/
|
|
489
|
+
account?: pulumi.Input<string>;
|
|
490
|
+
/**
|
|
491
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
456
492
|
*/
|
|
457
493
|
privateLinkEndpointService?: pulumi.Input<string>;
|
|
458
494
|
/**
|
|
459
|
-
* (Required String) The
|
|
495
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
460
496
|
*/
|
|
461
497
|
vpc?: pulumi.Input<string>;
|
|
462
498
|
}
|
|
@@ -476,17 +512,17 @@ export interface NetworkEnvironment {
|
|
|
476
512
|
}
|
|
477
513
|
export interface NetworkGcp {
|
|
478
514
|
/**
|
|
479
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
515
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
480
516
|
*/
|
|
481
517
|
privateServiceConnectServiceAttachments?: pulumi.Input<{
|
|
482
518
|
[key: string]: pulumi.Input<string>;
|
|
483
519
|
}>;
|
|
484
520
|
/**
|
|
485
|
-
* (Required String) The GCP
|
|
521
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
486
522
|
*/
|
|
487
523
|
project?: pulumi.Input<string>;
|
|
488
524
|
/**
|
|
489
|
-
* (Required String) The
|
|
525
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
490
526
|
*/
|
|
491
527
|
vpcNetwork?: pulumi.Input<string>;
|
|
492
528
|
}
|
|
@@ -578,3 +614,49 @@ export interface PrivateLinkAccessNetwork {
|
|
|
578
614
|
*/
|
|
579
615
|
id: pulumi.Input<string>;
|
|
580
616
|
}
|
|
617
|
+
export interface StreamGovernanceClusterEnvironment {
|
|
618
|
+
/**
|
|
619
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
620
|
+
*/
|
|
621
|
+
id: pulumi.Input<string>;
|
|
622
|
+
}
|
|
623
|
+
export interface StreamGovernanceClusterRegion {
|
|
624
|
+
/**
|
|
625
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
626
|
+
*/
|
|
627
|
+
id: pulumi.Input<string>;
|
|
628
|
+
}
|
|
629
|
+
export interface TransitGatewayAttachmentAws {
|
|
630
|
+
/**
|
|
631
|
+
* Enable custom destination routes in Confluent Cloud. Defaults to `false`.
|
|
632
|
+
*/
|
|
633
|
+
enableCustomRoutes?: pulumi.Input<boolean>;
|
|
634
|
+
/**
|
|
635
|
+
* The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
|
|
636
|
+
*/
|
|
637
|
+
ramResourceShareArn: pulumi.Input<string>;
|
|
638
|
+
/**
|
|
639
|
+
* List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
|
|
640
|
+
*/
|
|
641
|
+
routes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
642
|
+
/**
|
|
643
|
+
* (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
|
|
644
|
+
*/
|
|
645
|
+
transitGatewayAttachmentId?: pulumi.Input<string>;
|
|
646
|
+
/**
|
|
647
|
+
* The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
|
|
648
|
+
*/
|
|
649
|
+
transitGatewayId: pulumi.Input<string>;
|
|
650
|
+
}
|
|
651
|
+
export interface TransitGatewayAttachmentEnvironment {
|
|
652
|
+
/**
|
|
653
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
654
|
+
*/
|
|
655
|
+
id: pulumi.Input<string>;
|
|
656
|
+
}
|
|
657
|
+
export interface TransitGatewayAttachmentNetwork {
|
|
658
|
+
/**
|
|
659
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
660
|
+
*/
|
|
661
|
+
id: pulumi.Input<string>;
|
|
662
|
+
}
|
package/types/output.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export interface ApiKeyOwner {
|
|
|
36
36
|
}
|
|
37
37
|
export interface ClusterLinkDestinationKafkaCluster {
|
|
38
38
|
/**
|
|
39
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
39
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
40
40
|
*/
|
|
41
41
|
bootstrapEndpoint?: string;
|
|
42
42
|
credentials?: outputs.ClusterLinkDestinationKafkaClusterCredentials;
|
|
@@ -61,7 +61,7 @@ export interface ClusterLinkDestinationKafkaClusterCredentials {
|
|
|
61
61
|
}
|
|
62
62
|
export interface ClusterLinkSourceKafkaCluster {
|
|
63
63
|
/**
|
|
64
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
64
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
65
65
|
*/
|
|
66
66
|
bootstrapEndpoint?: string;
|
|
67
67
|
credentials?: outputs.ClusterLinkSourceKafkaClusterCredentials;
|
|
@@ -186,11 +186,15 @@ export interface GetKsqlClusterKafkaCluster {
|
|
|
186
186
|
}
|
|
187
187
|
export interface GetNetworkAw {
|
|
188
188
|
/**
|
|
189
|
-
* (
|
|
189
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
190
|
+
*/
|
|
191
|
+
account: string;
|
|
192
|
+
/**
|
|
193
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
190
194
|
*/
|
|
191
195
|
privateLinkEndpointService: string;
|
|
192
196
|
/**
|
|
193
|
-
* (Required String) The
|
|
197
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
194
198
|
*/
|
|
195
199
|
vpc: string;
|
|
196
200
|
}
|
|
@@ -210,17 +214,17 @@ export interface GetNetworkEnvironment {
|
|
|
210
214
|
}
|
|
211
215
|
export interface GetNetworkGcp {
|
|
212
216
|
/**
|
|
213
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
217
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
214
218
|
*/
|
|
215
219
|
privateServiceConnectServiceAttachments: {
|
|
216
220
|
[key: string]: string;
|
|
217
221
|
};
|
|
218
222
|
/**
|
|
219
|
-
* (Required String) The GCP
|
|
223
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
220
224
|
*/
|
|
221
225
|
project: string;
|
|
222
226
|
/**
|
|
223
|
-
* (Required String) The
|
|
227
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
224
228
|
*/
|
|
225
229
|
vpcNetwork: string;
|
|
226
230
|
}
|
|
@@ -312,6 +316,52 @@ export interface GetPrivateLinkAccessNetwork {
|
|
|
312
316
|
*/
|
|
313
317
|
id: string;
|
|
314
318
|
}
|
|
319
|
+
export interface GetStreatGovernanceClusterEnvironment {
|
|
320
|
+
/**
|
|
321
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
322
|
+
*/
|
|
323
|
+
id: string;
|
|
324
|
+
}
|
|
325
|
+
export interface GetStreatGovernanceClusterRegion {
|
|
326
|
+
/**
|
|
327
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
328
|
+
*/
|
|
329
|
+
id: string;
|
|
330
|
+
}
|
|
331
|
+
export interface GetTransitGatewayAttachmentAw {
|
|
332
|
+
/**
|
|
333
|
+
* (Required String) Enable custom destination routes in Confluent Cloud. Defaults to `false`.
|
|
334
|
+
*/
|
|
335
|
+
enableCustomRoutes: boolean;
|
|
336
|
+
/**
|
|
337
|
+
* (Required String) The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
|
|
338
|
+
*/
|
|
339
|
+
ramResourceShareArn: string;
|
|
340
|
+
/**
|
|
341
|
+
* (Required List of String) List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
|
|
342
|
+
*/
|
|
343
|
+
routes: string[];
|
|
344
|
+
/**
|
|
345
|
+
* (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
|
|
346
|
+
*/
|
|
347
|
+
transitGatewayAttachmentId: string;
|
|
348
|
+
/**
|
|
349
|
+
* (Required String) The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
|
|
350
|
+
*/
|
|
351
|
+
transitGatewayId: string;
|
|
352
|
+
}
|
|
353
|
+
export interface GetTransitGatewayAttachmentEnvironment {
|
|
354
|
+
/**
|
|
355
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
356
|
+
*/
|
|
357
|
+
id: string;
|
|
358
|
+
}
|
|
359
|
+
export interface GetTransitGatewayAttachmentNetwork {
|
|
360
|
+
/**
|
|
361
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
362
|
+
*/
|
|
363
|
+
id: string;
|
|
364
|
+
}
|
|
315
365
|
export interface IdentityPoolIdentityProvider {
|
|
316
366
|
/**
|
|
317
367
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
@@ -467,11 +517,15 @@ export interface KsqlClusterKafkaCluster {
|
|
|
467
517
|
}
|
|
468
518
|
export interface NetworkAw {
|
|
469
519
|
/**
|
|
470
|
-
* (
|
|
520
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
521
|
+
*/
|
|
522
|
+
account: string;
|
|
523
|
+
/**
|
|
524
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
471
525
|
*/
|
|
472
526
|
privateLinkEndpointService: string;
|
|
473
527
|
/**
|
|
474
|
-
* (Required String) The
|
|
528
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
475
529
|
*/
|
|
476
530
|
vpc: string;
|
|
477
531
|
}
|
|
@@ -491,17 +545,17 @@ export interface NetworkEnvironment {
|
|
|
491
545
|
}
|
|
492
546
|
export interface NetworkGcp {
|
|
493
547
|
/**
|
|
494
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
548
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
495
549
|
*/
|
|
496
550
|
privateServiceConnectServiceAttachments: {
|
|
497
551
|
[key: string]: string;
|
|
498
552
|
};
|
|
499
553
|
/**
|
|
500
|
-
* (Required String) The GCP
|
|
554
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
501
555
|
*/
|
|
502
556
|
project: string;
|
|
503
557
|
/**
|
|
504
|
-
* (Required String) The
|
|
558
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
505
559
|
*/
|
|
506
560
|
vpcNetwork: string;
|
|
507
561
|
}
|
|
@@ -593,3 +647,49 @@ export interface PrivateLinkAccessNetwork {
|
|
|
593
647
|
*/
|
|
594
648
|
id: string;
|
|
595
649
|
}
|
|
650
|
+
export interface StreamGovernanceClusterEnvironment {
|
|
651
|
+
/**
|
|
652
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
653
|
+
*/
|
|
654
|
+
id: string;
|
|
655
|
+
}
|
|
656
|
+
export interface StreamGovernanceClusterRegion {
|
|
657
|
+
/**
|
|
658
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
659
|
+
*/
|
|
660
|
+
id: string;
|
|
661
|
+
}
|
|
662
|
+
export interface TransitGatewayAttachmentAws {
|
|
663
|
+
/**
|
|
664
|
+
* Enable custom destination routes in Confluent Cloud. Defaults to `false`.
|
|
665
|
+
*/
|
|
666
|
+
enableCustomRoutes?: boolean;
|
|
667
|
+
/**
|
|
668
|
+
* The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
|
|
669
|
+
*/
|
|
670
|
+
ramResourceShareArn: string;
|
|
671
|
+
/**
|
|
672
|
+
* List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
|
|
673
|
+
*/
|
|
674
|
+
routes: string[];
|
|
675
|
+
/**
|
|
676
|
+
* (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
|
|
677
|
+
*/
|
|
678
|
+
transitGatewayAttachmentId: string;
|
|
679
|
+
/**
|
|
680
|
+
* The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
|
|
681
|
+
*/
|
|
682
|
+
transitGatewayId: string;
|
|
683
|
+
}
|
|
684
|
+
export interface TransitGatewayAttachmentEnvironment {
|
|
685
|
+
/**
|
|
686
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
687
|
+
*/
|
|
688
|
+
id: string;
|
|
689
|
+
}
|
|
690
|
+
export interface TransitGatewayAttachmentNetwork {
|
|
691
|
+
/**
|
|
692
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
693
|
+
*/
|
|
694
|
+
id: string;
|
|
695
|
+
}
|