@pulumi/confluentcloud 1.32.0 → 1.33.0-alpha.1706626171
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 +128 -0
- package/apiKey.js +128 -0
- package/apiKey.js.map +1 -1
- package/byokKey.d.ts +35 -0
- package/byokKey.js +35 -0
- package/byokKey.js.map +1 -1
- package/clusterLink.d.ts +56 -0
- package/clusterLink.js +56 -0
- package/clusterLink.js.map +1 -1
- package/connector.d.ts +191 -0
- package/connector.js +170 -0
- package/connector.js.map +1 -1
- package/environment.d.ts +25 -0
- package/environment.js +25 -0
- package/environment.js.map +1 -1
- package/getEnvironments.d.ts +2 -8
- package/getEnvironments.js +2 -8
- package/getEnvironments.js.map +1 -1
- package/getSchemaRegistryClusters.d.ts +2 -8
- package/getSchemaRegistryClusters.js +2 -8
- package/getSchemaRegistryClusters.js.map +1 -1
- package/getSchemaRegistryDek.d.ts +48 -0
- package/getSchemaRegistryDek.js +25 -0
- package/getSchemaRegistryDek.js.map +1 -0
- package/getSchemaRegistryKek.d.ts +44 -0
- package/getSchemaRegistryKek.js +22 -0
- package/getSchemaRegistryKek.js.map +1 -0
- package/getUsers.d.ts +2 -8
- package/getUsers.js +2 -8
- package/getUsers.js.map +1 -1
- package/index.d.ts +12 -0
- package/index.js +18 -2
- package/index.js.map +1 -1
- package/kafkaCluster.d.ts +137 -0
- package/kafkaCluster.js +137 -0
- package/kafkaCluster.js.map +1 -1
- package/kafkaMirrorTopic.d.ts +31 -0
- package/kafkaMirrorTopic.js +31 -0
- package/kafkaMirrorTopic.js.map +1 -1
- package/ksqlCluster.d.ts +14 -0
- package/ksqlCluster.js +14 -0
- package/ksqlCluster.js.map +1 -1
- package/network.d.ts +99 -0
- package/network.js +99 -0
- package/network.js.map +1 -1
- package/networkLinkEndpoint.d.ts +26 -0
- package/networkLinkEndpoint.js +26 -0
- package/networkLinkEndpoint.js.map +1 -1
- package/networkLinkService.d.ts +45 -0
- package/networkLinkService.js +45 -0
- package/networkLinkService.js.map +1 -1
- package/package.json +1 -1
- package/peering.d.ts +79 -0
- package/peering.js +79 -0
- package/peering.js.map +1 -1
- package/privateLinkAccess.d.ts +108 -0
- package/privateLinkAccess.js +108 -0
- package/privateLinkAccess.js.map +1 -1
- package/roleBinding.d.ts +20 -0
- package/roleBinding.js +20 -0
- package/roleBinding.js.map +1 -1
- package/schemaRegistryDek.d.ts +100 -0
- package/schemaRegistryDek.js +75 -0
- package/schemaRegistryDek.js.map +1 -0
- package/schemaRegistryKek.d.ts +107 -0
- package/schemaRegistryKek.js +75 -0
- package/schemaRegistryKek.js.map +1 -0
- package/serviceAccount.d.ts +37 -0
- package/serviceAccount.js +37 -0
- package/serviceAccount.js.map +1 -1
- package/tfImporter.d.ts +60 -0
- package/tfImporter.js +18 -0
- package/tfImporter.js.map +1 -1
- package/transitGatewayAttachment.d.ts +44 -0
- package/transitGatewayAttachment.js +44 -0
- package/transitGatewayAttachment.js.map +1 -1
- package/types/input.d.ts +51 -0
- package/types/output.d.ts +37 -0
|
@@ -6,6 +6,50 @@ exports.TransitGatewayAttachment = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
* ### Example Transit Gateway Attachment on AWS
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
15
|
+
*
|
|
16
|
+
* const development = new confluentcloud.Environment("development", {});
|
|
17
|
+
* const aws_transit_gateway_attachment = new confluentcloud.Network("aws-transit-gateway-attachment", {
|
|
18
|
+
* displayName: "AWS Transit Gateway Attachment Network",
|
|
19
|
+
* cloud: "AWS",
|
|
20
|
+
* region: "us-east-2",
|
|
21
|
+
* cidr: "10.10.0.0/16",
|
|
22
|
+
* connectionTypes: ["TRANSITGATEWAY"],
|
|
23
|
+
* environment: {
|
|
24
|
+
* id: development.id,
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
27
|
+
* const aws = new confluentcloud.TransitGatewayAttachment("aws", {
|
|
28
|
+
* displayName: "AWS Transit Gateway Attachment",
|
|
29
|
+
* aws: {
|
|
30
|
+
* ramResourceShareArn: "arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
|
|
31
|
+
* transitGatewayId: "tgw-xxxxxxxxxxxxxxxxx",
|
|
32
|
+
* routes: [
|
|
33
|
+
* "192.168.0.0/16",
|
|
34
|
+
* "172.16.0.0/12",
|
|
35
|
+
* "100.64.0.0/10",
|
|
36
|
+
* "10.0.0.0/8",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* environment: {
|
|
40
|
+
* id: development.id,
|
|
41
|
+
* },
|
|
42
|
+
* network: {
|
|
43
|
+
* id: aws_transit_gateway_attachment.id,
|
|
44
|
+
* },
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
* ## Getting Started
|
|
48
|
+
*
|
|
49
|
+
* The following end-to-end examples might help to get started with `confluentcloud.TransitGatewayAttachment` resource:
|
|
50
|
+
* * `dedicated-transit-gateway-attachment-aws-kafka-acls`: _Dedicated_ Kafka cluster on AWS that is accessible via Transit Gateway Endpoint with authorization using ACLs
|
|
51
|
+
* * enterprise-privatelinkattachment-aws-kafka-acls
|
|
52
|
+
*
|
|
9
53
|
* ## Import
|
|
10
54
|
*
|
|
11
55
|
* 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>"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transitGatewayAttachment.js","sourceRoot":"","sources":["../transitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"transitGatewayAttachment.js","sourceRoot":"","sources":["../transitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;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;IA4BD,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;;AA9EL,4DA+EC;AAjEG,gBAAgB;AACO,qCAAY,GAAG,wEAAwE,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -820,6 +820,34 @@ export interface GetSchemaRegistryClusterModeSchemaRegistryClusterArgs {
|
|
|
820
820
|
*/
|
|
821
821
|
id: pulumi.Input<string>;
|
|
822
822
|
}
|
|
823
|
+
export interface GetSchemaRegistryDekCredentials {
|
|
824
|
+
key: string;
|
|
825
|
+
secret: string;
|
|
826
|
+
}
|
|
827
|
+
export interface GetSchemaRegistryDekCredentialsArgs {
|
|
828
|
+
key: pulumi.Input<string>;
|
|
829
|
+
secret: pulumi.Input<string>;
|
|
830
|
+
}
|
|
831
|
+
export interface GetSchemaRegistryDekSchemaRegistryCluster {
|
|
832
|
+
id: string;
|
|
833
|
+
}
|
|
834
|
+
export interface GetSchemaRegistryDekSchemaRegistryClusterArgs {
|
|
835
|
+
id: pulumi.Input<string>;
|
|
836
|
+
}
|
|
837
|
+
export interface GetSchemaRegistryKekCredentials {
|
|
838
|
+
key: string;
|
|
839
|
+
secret: string;
|
|
840
|
+
}
|
|
841
|
+
export interface GetSchemaRegistryKekCredentialsArgs {
|
|
842
|
+
key: pulumi.Input<string>;
|
|
843
|
+
secret: pulumi.Input<string>;
|
|
844
|
+
}
|
|
845
|
+
export interface GetSchemaRegistryKekSchemaRegistryCluster {
|
|
846
|
+
id: string;
|
|
847
|
+
}
|
|
848
|
+
export interface GetSchemaRegistryKekSchemaRegistryClusterArgs {
|
|
849
|
+
id: pulumi.Input<string>;
|
|
850
|
+
}
|
|
823
851
|
export interface GetSchemaSchemaRegistryCluster {
|
|
824
852
|
/**
|
|
825
853
|
* The ID of the Schema Registry cluster, for example, `lsrc-abc123`.
|
|
@@ -1129,6 +1157,15 @@ export interface KafkaClusterConfigKafkaCluster {
|
|
|
1129
1157
|
id: pulumi.Input<string>;
|
|
1130
1158
|
}
|
|
1131
1159
|
export interface KafkaClusterDedicated {
|
|
1160
|
+
/**
|
|
1161
|
+
* 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.
|
|
1162
|
+
*
|
|
1163
|
+
* > **Note:** Exactly one from the `basic`, `standard`, `dedicated`, and `enterprise` configuration blocks must be specified.
|
|
1164
|
+
*
|
|
1165
|
+
* !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
1166
|
+
*
|
|
1167
|
+
* > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
|
|
1168
|
+
*/
|
|
1132
1169
|
cku: pulumi.Input<number>;
|
|
1133
1170
|
encryptionKey?: pulumi.Input<string>;
|
|
1134
1171
|
/**
|
|
@@ -1555,6 +1592,20 @@ export interface SchemaRegistryClusterRegion {
|
|
|
1555
1592
|
*/
|
|
1556
1593
|
id: pulumi.Input<string>;
|
|
1557
1594
|
}
|
|
1595
|
+
export interface SchemaRegistryDekCredentials {
|
|
1596
|
+
key: pulumi.Input<string>;
|
|
1597
|
+
secret: pulumi.Input<string>;
|
|
1598
|
+
}
|
|
1599
|
+
export interface SchemaRegistryDekSchemaRegistryCluster {
|
|
1600
|
+
id: pulumi.Input<string>;
|
|
1601
|
+
}
|
|
1602
|
+
export interface SchemaRegistryKekCredentials {
|
|
1603
|
+
key: pulumi.Input<string>;
|
|
1604
|
+
secret: pulumi.Input<string>;
|
|
1605
|
+
}
|
|
1606
|
+
export interface SchemaRegistryKekSchemaRegistryCluster {
|
|
1607
|
+
id: pulumi.Input<string>;
|
|
1608
|
+
}
|
|
1558
1609
|
export interface SchemaSchemaReference {
|
|
1559
1610
|
/**
|
|
1560
1611
|
* The name of the subject, representing the subject under which the referenced schema is registered.
|
package/types/output.d.ts
CHANGED
|
@@ -909,6 +909,20 @@ export interface GetSchemaRegistryClustersClusterRegion {
|
|
|
909
909
|
*/
|
|
910
910
|
id: string;
|
|
911
911
|
}
|
|
912
|
+
export interface GetSchemaRegistryDekCredentials {
|
|
913
|
+
key: string;
|
|
914
|
+
secret: string;
|
|
915
|
+
}
|
|
916
|
+
export interface GetSchemaRegistryDekSchemaRegistryCluster {
|
|
917
|
+
id: string;
|
|
918
|
+
}
|
|
919
|
+
export interface GetSchemaRegistryKekCredentials {
|
|
920
|
+
key: string;
|
|
921
|
+
secret: string;
|
|
922
|
+
}
|
|
923
|
+
export interface GetSchemaRegistryKekSchemaRegistryCluster {
|
|
924
|
+
id: string;
|
|
925
|
+
}
|
|
912
926
|
export interface GetSchemaSchemaReference {
|
|
913
927
|
/**
|
|
914
928
|
* (Required String) The name of the subject, representing the subject under which the referenced schema is registered.
|
|
@@ -1190,6 +1204,15 @@ export interface KafkaClusterConfigKafkaCluster {
|
|
|
1190
1204
|
id: string;
|
|
1191
1205
|
}
|
|
1192
1206
|
export interface KafkaClusterDedicated {
|
|
1207
|
+
/**
|
|
1208
|
+
* 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.
|
|
1209
|
+
*
|
|
1210
|
+
* > **Note:** Exactly one from the `basic`, `standard`, `dedicated`, and `enterprise` configuration blocks must be specified.
|
|
1211
|
+
*
|
|
1212
|
+
* !> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
1213
|
+
*
|
|
1214
|
+
* > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
|
|
1215
|
+
*/
|
|
1193
1216
|
cku: number;
|
|
1194
1217
|
encryptionKey?: string;
|
|
1195
1218
|
/**
|
|
@@ -1616,6 +1639,20 @@ export interface SchemaRegistryClusterRegion {
|
|
|
1616
1639
|
*/
|
|
1617
1640
|
id: string;
|
|
1618
1641
|
}
|
|
1642
|
+
export interface SchemaRegistryDekCredentials {
|
|
1643
|
+
key: string;
|
|
1644
|
+
secret: string;
|
|
1645
|
+
}
|
|
1646
|
+
export interface SchemaRegistryDekSchemaRegistryCluster {
|
|
1647
|
+
id: string;
|
|
1648
|
+
}
|
|
1649
|
+
export interface SchemaRegistryKekCredentials {
|
|
1650
|
+
key: string;
|
|
1651
|
+
secret: string;
|
|
1652
|
+
}
|
|
1653
|
+
export interface SchemaRegistryKekSchemaRegistryCluster {
|
|
1654
|
+
id: string;
|
|
1655
|
+
}
|
|
1619
1656
|
export interface SchemaSchemaReference {
|
|
1620
1657
|
/**
|
|
1621
1658
|
* The name of the subject, representing the subject under which the referenced schema is registered.
|