@pulumi/confluentcloud 1.4.0-alpha.1666123324 → 1.4.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/apiKey.d.ts +2 -2
- package/apiKey.js +4 -2
- package/apiKey.js.map +1 -1
- package/clusterLink.d.ts +91 -0
- package/clusterLink.js +74 -0
- package/clusterLink.js.map +1 -0
- package/connector.js +3 -1
- package/connector.js.map +1 -1
- package/getKafkaClientQuota.d.ts +67 -0
- package/getKafkaClientQuota.js +41 -0
- package/getKafkaClientQuota.js.map +1 -0
- package/index.d.ts +15 -0
- package/index.js +24 -1
- package/index.js.map +1 -1
- package/kafkaAcl.d.ts +9 -9
- package/kafkaAcl.js +3 -1
- package/kafkaAcl.js.map +1 -1
- package/kafkaClientQuota.d.ts +138 -0
- package/kafkaClientQuota.js +111 -0
- package/kafkaClientQuota.js.map +1 -0
- package/kafkaClusterConfig.d.ts +120 -0
- package/kafkaClusterConfig.js +100 -0
- package/kafkaClusterConfig.js.map +1 -0
- package/kafkaMirrorTopic.d.ts +82 -0
- package/kafkaMirrorTopic.js +77 -0
- package/kafkaMirrorTopic.js.map +1 -0
- package/kafkaTopic.js +3 -1
- package/kafkaTopic.js.map +1 -1
- package/network.d.ts +3 -3
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/provider.js +6 -4
- package/provider.js.map +1 -1
- package/types/input.d.ts +160 -39
- package/types/output.d.ts +143 -0
package/types/output.d.ts
CHANGED
|
@@ -34,6 +34,56 @@ export interface ApiKeyOwner {
|
|
|
34
34
|
*/
|
|
35
35
|
kind: string;
|
|
36
36
|
}
|
|
37
|
+
export interface ClusterLinkDestinationKafkaCluster {
|
|
38
|
+
/**
|
|
39
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
40
|
+
*/
|
|
41
|
+
bootstrapEndpoint?: string;
|
|
42
|
+
credentials?: outputs.ClusterLinkDestinationKafkaClusterCredentials;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the destination Kafka cluster, for example, `lkc-abc123`.
|
|
45
|
+
*/
|
|
46
|
+
id: string;
|
|
47
|
+
/**
|
|
48
|
+
* The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
49
|
+
*/
|
|
50
|
+
restEndpoint?: string;
|
|
51
|
+
}
|
|
52
|
+
export interface ClusterLinkDestinationKafkaClusterCredentials {
|
|
53
|
+
/**
|
|
54
|
+
* The Kafka API Key.
|
|
55
|
+
*/
|
|
56
|
+
key: string;
|
|
57
|
+
/**
|
|
58
|
+
* The Kafka API Secret.
|
|
59
|
+
*/
|
|
60
|
+
secret: string;
|
|
61
|
+
}
|
|
62
|
+
export interface ClusterLinkSourceKafkaCluster {
|
|
63
|
+
/**
|
|
64
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
65
|
+
*/
|
|
66
|
+
bootstrapEndpoint?: string;
|
|
67
|
+
credentials?: outputs.ClusterLinkSourceKafkaClusterCredentials;
|
|
68
|
+
/**
|
|
69
|
+
* The ID of the destination Kafka cluster, for example, `lkc-abc123`.
|
|
70
|
+
*/
|
|
71
|
+
id: string;
|
|
72
|
+
/**
|
|
73
|
+
* The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
74
|
+
*/
|
|
75
|
+
restEndpoint?: string;
|
|
76
|
+
}
|
|
77
|
+
export interface ClusterLinkSourceKafkaClusterCredentials {
|
|
78
|
+
/**
|
|
79
|
+
* The Kafka API Key.
|
|
80
|
+
*/
|
|
81
|
+
key: string;
|
|
82
|
+
/**
|
|
83
|
+
* The Kafka API Secret.
|
|
84
|
+
*/
|
|
85
|
+
secret: string;
|
|
86
|
+
}
|
|
37
87
|
export interface ConnectorEnvironment {
|
|
38
88
|
/**
|
|
39
89
|
* The ID of the Kafka cluster that the connector belongs to, for example, `lkc-abc123`.
|
|
@@ -52,6 +102,28 @@ export interface GetIdentityPoolIdentityProvider {
|
|
|
52
102
|
*/
|
|
53
103
|
id: string;
|
|
54
104
|
}
|
|
105
|
+
export interface GetKafkaClientQuotaEnvironment {
|
|
106
|
+
/**
|
|
107
|
+
* The ID of the Kafka Client Quota (for example, `cq-abc123`).
|
|
108
|
+
*/
|
|
109
|
+
id: string;
|
|
110
|
+
}
|
|
111
|
+
export interface GetKafkaClientQuotaKafkaCluster {
|
|
112
|
+
/**
|
|
113
|
+
* The ID of the Kafka Client Quota (for example, `cq-abc123`).
|
|
114
|
+
*/
|
|
115
|
+
id: string;
|
|
116
|
+
}
|
|
117
|
+
export interface GetKafkaClientQuotaThroughput {
|
|
118
|
+
/**
|
|
119
|
+
* (Required String) The egress throughput limit in bytes per second.
|
|
120
|
+
*/
|
|
121
|
+
egressByteRate: string;
|
|
122
|
+
/**
|
|
123
|
+
* (Required String) The ingress throughput limit in bytes per second.
|
|
124
|
+
*/
|
|
125
|
+
ingressByteRate: string;
|
|
126
|
+
}
|
|
55
127
|
export interface GetKafkaClusterBasic {
|
|
56
128
|
}
|
|
57
129
|
export interface GetKafkaClusterDedicated {
|
|
@@ -262,8 +334,46 @@ export interface KafkaAclKafkaCluster {
|
|
|
262
334
|
*/
|
|
263
335
|
id: string;
|
|
264
336
|
}
|
|
337
|
+
export interface KafkaClientQuotaEnvironment {
|
|
338
|
+
/**
|
|
339
|
+
* The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, `env-abc123`.
|
|
340
|
+
*/
|
|
341
|
+
id: string;
|
|
342
|
+
}
|
|
343
|
+
export interface KafkaClientQuotaKafkaCluster {
|
|
344
|
+
/**
|
|
345
|
+
* The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, `env-abc123`.
|
|
346
|
+
*/
|
|
347
|
+
id: string;
|
|
348
|
+
}
|
|
349
|
+
export interface KafkaClientQuotaThroughput {
|
|
350
|
+
/**
|
|
351
|
+
* The egress throughput limit in bytes per second.
|
|
352
|
+
*/
|
|
353
|
+
egressByteRate: string;
|
|
354
|
+
/**
|
|
355
|
+
* The ingress throughput limit in bytes per second.
|
|
356
|
+
*/
|
|
357
|
+
ingressByteRate: string;
|
|
358
|
+
}
|
|
265
359
|
export interface KafkaClusterBasic {
|
|
266
360
|
}
|
|
361
|
+
export interface KafkaClusterConfigCredentials {
|
|
362
|
+
/**
|
|
363
|
+
* The Kafka API Key.
|
|
364
|
+
*/
|
|
365
|
+
key: string;
|
|
366
|
+
/**
|
|
367
|
+
* The Kafka API Secret.
|
|
368
|
+
*/
|
|
369
|
+
secret: string;
|
|
370
|
+
}
|
|
371
|
+
export interface KafkaClusterConfigKafkaCluster {
|
|
372
|
+
/**
|
|
373
|
+
* The ID of the Dedicated Kafka cluster, for example, `lkc-abc123`.
|
|
374
|
+
*/
|
|
375
|
+
id: string;
|
|
376
|
+
}
|
|
267
377
|
export interface KafkaClusterDedicated {
|
|
268
378
|
/**
|
|
269
379
|
* The number of Confluent Kafka Units (CKUs) for Dedicated cluster types. The minimum number of CKUs for `SINGLE_ZONE` dedicated clusters is `1` whereas `MULTI_ZONE` dedicated clusters must have more than `2` CKUs.
|
|
@@ -288,6 +398,39 @@ export interface KafkaClusterNetwork {
|
|
|
288
398
|
}
|
|
289
399
|
export interface KafkaClusterStandard {
|
|
290
400
|
}
|
|
401
|
+
export interface KafkaMirrorTopicClusterLink {
|
|
402
|
+
/**
|
|
403
|
+
* The name of the cluster link to attach to the mirror topic, for example, `my-cluster-link`.
|
|
404
|
+
*/
|
|
405
|
+
linkName: string;
|
|
406
|
+
}
|
|
407
|
+
export interface KafkaMirrorTopicKafkaCluster {
|
|
408
|
+
credentials?: outputs.KafkaMirrorTopicKafkaClusterCredentials;
|
|
409
|
+
/**
|
|
410
|
+
* The ID of the destination Kafka cluster, for example, `lkc-abc123`.
|
|
411
|
+
*/
|
|
412
|
+
id: string;
|
|
413
|
+
/**
|
|
414
|
+
* The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
415
|
+
*/
|
|
416
|
+
restEndpoint?: string;
|
|
417
|
+
}
|
|
418
|
+
export interface KafkaMirrorTopicKafkaClusterCredentials {
|
|
419
|
+
/**
|
|
420
|
+
* The Kafka API Key.
|
|
421
|
+
*/
|
|
422
|
+
key: string;
|
|
423
|
+
/**
|
|
424
|
+
* The Kafka API Secret.
|
|
425
|
+
*/
|
|
426
|
+
secret: string;
|
|
427
|
+
}
|
|
428
|
+
export interface KafkaMirrorTopicSourceKafkaTopic {
|
|
429
|
+
/**
|
|
430
|
+
* The name of the topic on the source cluster to be mirrored over the cluster link, for example, `orders`. A topic with the exact same name must exist on the source cluster, and no topic with this name should exist on the destination cluster.
|
|
431
|
+
*/
|
|
432
|
+
topicName: string;
|
|
433
|
+
}
|
|
291
434
|
export interface KafkaTopicCredentials {
|
|
292
435
|
/**
|
|
293
436
|
* The Kafka API Key.
|