@pulumi/confluentcloud 1.4.0-alpha.1666123324 → 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.
Files changed (61) hide show
  1. package/apiKey.d.ts +2 -2
  2. package/apiKey.js +4 -2
  3. package/apiKey.js.map +1 -1
  4. package/clusterLink.d.ts +91 -0
  5. package/clusterLink.js +74 -0
  6. package/clusterLink.js.map +1 -0
  7. package/connector.d.ts +6 -6
  8. package/connector.js +3 -1
  9. package/connector.js.map +1 -1
  10. package/getKafkaClientQuota.d.ts +70 -0
  11. package/getKafkaClientQuota.js +44 -0
  12. package/getKafkaClientQuota.js.map +1 -0
  13. package/getKsqlCluster.d.ts +3 -0
  14. package/getKsqlCluster.js +3 -0
  15. package/getKsqlCluster.js.map +1 -1
  16. package/getStreamGovernanceRegion.d.ts +71 -0
  17. package/getStreamGovernanceRegion.js +46 -0
  18. package/getStreamGovernanceRegion.js.map +1 -0
  19. package/getStreatGovernanceCluster.d.ts +96 -0
  20. package/getStreatGovernanceCluster.js +54 -0
  21. package/getStreatGovernanceCluster.js.map +1 -0
  22. package/getTransitGatewayAttachment.d.ts +83 -0
  23. package/getTransitGatewayAttachment.js +54 -0
  24. package/getTransitGatewayAttachment.js.map +1 -0
  25. package/identityPool.d.ts +0 -3
  26. package/identityPool.js +0 -3
  27. package/identityPool.js.map +1 -1
  28. package/identityProvider.d.ts +0 -3
  29. package/identityProvider.js +0 -3
  30. package/identityProvider.js.map +1 -1
  31. package/index.d.ts +30 -0
  32. package/index.js +44 -1
  33. package/index.js.map +1 -1
  34. package/kafkaAcl.d.ts +9 -9
  35. package/kafkaAcl.js +3 -1
  36. package/kafkaAcl.js.map +1 -1
  37. package/kafkaClientQuota.d.ts +138 -0
  38. package/kafkaClientQuota.js +111 -0
  39. package/kafkaClientQuota.js.map +1 -0
  40. package/kafkaClusterConfig.d.ts +123 -0
  41. package/kafkaClusterConfig.js +103 -0
  42. package/kafkaClusterConfig.js.map +1 -0
  43. package/kafkaMirrorTopic.d.ts +82 -0
  44. package/kafkaMirrorTopic.js +77 -0
  45. package/kafkaMirrorTopic.js.map +1 -0
  46. package/kafkaTopic.d.ts +1 -1
  47. package/kafkaTopic.js +4 -2
  48. package/kafkaTopic.js.map +1 -1
  49. package/network.d.ts +3 -3
  50. package/package.json +2 -2
  51. package/package.json.dev +2 -2
  52. package/provider.js +6 -4
  53. package/provider.js.map +1 -1
  54. package/streamGovernanceCluster.d.ts +139 -0
  55. package/streamGovernanceCluster.js +106 -0
  56. package/streamGovernanceCluster.js.map +1 -0
  57. package/transitGatewayAttachment.d.ts +100 -0
  58. package/transitGatewayAttachment.js +72 -0
  59. package/transitGatewayAttachment.js.map +1 -0
  60. package/types/input.d.ts +253 -50
  61. package/types/output.d.ts +253 -10
@@ -0,0 +1,100 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * ## Import
6
+ *
7
+ * 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>"
8
+ *
9
+ * ```sh
10
+ * $ pulumi import confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment my_tgwa env-abc123/tgwa-abc123
11
+ * ```
12
+ *
13
+ * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
14
+ */
15
+ export declare class TransitGatewayAttachment extends pulumi.CustomResource {
16
+ /**
17
+ * Get an existing TransitGatewayAttachment resource's state with the given name, ID, and optional extra
18
+ * properties used to qualify the lookup.
19
+ *
20
+ * @param name The _unique_ name of the resulting resource.
21
+ * @param id The _unique_ provider ID of the resource to lookup.
22
+ * @param state Any extra arguments used during the lookup.
23
+ * @param opts Optional settings to control the behavior of the CustomResource.
24
+ */
25
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransitGatewayAttachmentState, opts?: pulumi.CustomResourceOptions): TransitGatewayAttachment;
26
+ /**
27
+ * Returns true if the given object is an instance of TransitGatewayAttachment. This is designed to work even
28
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
29
+ */
30
+ static isInstance(obj: any): obj is TransitGatewayAttachment;
31
+ /**
32
+ * (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
33
+ */
34
+ readonly aws: pulumi.Output<outputs.TransitGatewayAttachmentAws | undefined>;
35
+ /**
36
+ * The name of the Transit Gateway Attachment.
37
+ */
38
+ readonly displayName: pulumi.Output<string>;
39
+ /**
40
+ * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
41
+ */
42
+ readonly environment: pulumi.Output<outputs.TransitGatewayAttachmentEnvironment>;
43
+ /**
44
+ * Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider
45
+ * accounts.
46
+ */
47
+ readonly network: pulumi.Output<outputs.TransitGatewayAttachmentNetwork>;
48
+ /**
49
+ * Create a TransitGatewayAttachment resource with the given unique name, arguments, and options.
50
+ *
51
+ * @param name The _unique_ name of the resource.
52
+ * @param args The arguments to use to populate this resource's properties.
53
+ * @param opts A bag of options that control this resource's behavior.
54
+ */
55
+ constructor(name: string, args: TransitGatewayAttachmentArgs, opts?: pulumi.CustomResourceOptions);
56
+ }
57
+ /**
58
+ * Input properties used for looking up and filtering TransitGatewayAttachment resources.
59
+ */
60
+ export interface TransitGatewayAttachmentState {
61
+ /**
62
+ * (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
63
+ */
64
+ aws?: pulumi.Input<inputs.TransitGatewayAttachmentAws>;
65
+ /**
66
+ * The name of the Transit Gateway Attachment.
67
+ */
68
+ displayName?: pulumi.Input<string>;
69
+ /**
70
+ * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
71
+ */
72
+ environment?: pulumi.Input<inputs.TransitGatewayAttachmentEnvironment>;
73
+ /**
74
+ * Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider
75
+ * accounts.
76
+ */
77
+ network?: pulumi.Input<inputs.TransitGatewayAttachmentNetwork>;
78
+ }
79
+ /**
80
+ * The set of arguments for constructing a TransitGatewayAttachment resource.
81
+ */
82
+ export interface TransitGatewayAttachmentArgs {
83
+ /**
84
+ * (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
85
+ */
86
+ aws?: pulumi.Input<inputs.TransitGatewayAttachmentAws>;
87
+ /**
88
+ * The name of the Transit Gateway Attachment.
89
+ */
90
+ displayName?: pulumi.Input<string>;
91
+ /**
92
+ * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
93
+ */
94
+ environment: pulumi.Input<inputs.TransitGatewayAttachmentEnvironment>;
95
+ /**
96
+ * Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider
97
+ * accounts.
98
+ */
99
+ network: pulumi.Input<inputs.TransitGatewayAttachmentNetwork>;
100
+ }
@@ -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
@@ -35,6 +35,56 @@ export interface ApiKeyOwner {
35
35
  */
36
36
  kind: pulumi.Input<string>;
37
37
  }
38
+ export interface ClusterLinkDestinationKafkaCluster {
39
+ /**
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
+ */
42
+ bootstrapEndpoint?: pulumi.Input<string>;
43
+ credentials?: pulumi.Input<inputs.ClusterLinkDestinationKafkaClusterCredentials>;
44
+ /**
45
+ * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
46
+ */
47
+ id: pulumi.Input<string>;
48
+ /**
49
+ * The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
50
+ */
51
+ restEndpoint?: pulumi.Input<string>;
52
+ }
53
+ export interface ClusterLinkDestinationKafkaClusterCredentials {
54
+ /**
55
+ * The Kafka API Key.
56
+ */
57
+ key: pulumi.Input<string>;
58
+ /**
59
+ * The Kafka API Secret.
60
+ */
61
+ secret: pulumi.Input<string>;
62
+ }
63
+ export interface ClusterLinkSourceKafkaCluster {
64
+ /**
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
+ */
67
+ bootstrapEndpoint?: pulumi.Input<string>;
68
+ credentials?: pulumi.Input<inputs.ClusterLinkSourceKafkaClusterCredentials>;
69
+ /**
70
+ * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
71
+ */
72
+ id: pulumi.Input<string>;
73
+ /**
74
+ * The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
75
+ */
76
+ restEndpoint?: pulumi.Input<string>;
77
+ }
78
+ export interface ClusterLinkSourceKafkaClusterCredentials {
79
+ /**
80
+ * The Kafka API Key.
81
+ */
82
+ key: pulumi.Input<string>;
83
+ /**
84
+ * The Kafka API Secret.
85
+ */
86
+ secret: pulumi.Input<string>;
87
+ }
38
88
  export interface ConnectorEnvironment {
39
89
  /**
40
90
  * The ID of the Kafka cluster that the connector belongs to, for example, `lkc-abc123`.
@@ -47,77 +97,77 @@ export interface ConnectorKafkaCluster {
47
97
  */
48
98
  id: pulumi.Input<string>;
49
99
  }
50
- export interface GetIdentityPoolIdentityProvider {
100
+ export interface GetIdentityPoolIdentityProviderArgs {
51
101
  /**
52
102
  * The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
53
103
  */
54
- id: string;
104
+ id: pulumi.Input<string>;
55
105
  }
56
- export interface GetIdentityPoolIdentityProviderArgs {
106
+ export interface GetIdentityPoolIdentityProvider {
57
107
  /**
58
108
  * The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
59
109
  */
60
- id: pulumi.Input<string>;
110
+ id: string;
61
111
  }
62
112
  export interface GetKafkaClusterBasic {
63
113
  }
64
114
  export interface GetKafkaClusterBasicArgs {
65
115
  }
66
- export interface GetKafkaClusterDedicatedArgs {
116
+ export interface GetKafkaClusterDedicated {
67
117
  /**
68
118
  * (Required Number) 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.
69
119
  */
70
- cku?: pulumi.Input<number>;
120
+ cku?: number;
71
121
  /**
72
122
  * (Optional String) The ID of the encryption key that is used to encrypt the data in the Kafka cluster, for example, `arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab` (key Amazon Resource Name) for AWS or `projects/my-test-project/locations/global/keyRings/test-byok/cryptoKeys/test` for GCP. Append required permissions to the key policy before creating a Kafka cluster, see [Encrypt Confluent Cloud Clusters using Self-Managed Keys](https://docs.confluent.io/cloud/current/clusters/byok/index.html) for more details. At the moment, self-managed encryption keys are only available for the Dedicated clusters on AWS or GCP.
73
123
  */
74
- encryptionKey?: pulumi.Input<string>;
124
+ encryptionKey?: string;
75
125
  }
76
- export interface GetKafkaClusterDedicated {
126
+ export interface GetKafkaClusterDedicatedArgs {
77
127
  /**
78
128
  * (Required Number) 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.
79
129
  */
80
- cku?: number;
130
+ cku?: pulumi.Input<number>;
81
131
  /**
82
132
  * (Optional String) The ID of the encryption key that is used to encrypt the data in the Kafka cluster, for example, `arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab` (key Amazon Resource Name) for AWS or `projects/my-test-project/locations/global/keyRings/test-byok/cryptoKeys/test` for GCP. Append required permissions to the key policy before creating a Kafka cluster, see [Encrypt Confluent Cloud Clusters using Self-Managed Keys](https://docs.confluent.io/cloud/current/clusters/byok/index.html) for more details. At the moment, self-managed encryption keys are only available for the Dedicated clusters on AWS or GCP.
83
133
  */
84
- encryptionKey?: string;
134
+ encryptionKey?: pulumi.Input<string>;
85
135
  }
86
- export interface GetKafkaClusterEnvironmentArgs {
136
+ export interface GetKafkaClusterEnvironment {
87
137
  /**
88
138
  * The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
89
139
  */
90
- id: pulumi.Input<string>;
140
+ id: string;
91
141
  }
92
- export interface GetKafkaClusterEnvironment {
142
+ export interface GetKafkaClusterEnvironmentArgs {
93
143
  /**
94
144
  * The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
95
145
  */
96
- id: string;
146
+ id: pulumi.Input<string>;
97
147
  }
98
148
  export interface GetKafkaClusterStandard {
99
149
  }
100
150
  export interface GetKafkaClusterStandardArgs {
101
151
  }
102
- export interface GetKafkaTopicCredentials {
152
+ export interface GetKafkaTopicCredentialsArgs {
103
153
  /**
104
154
  * The Kafka API Key.
105
155
  */
106
- key: string;
156
+ key: pulumi.Input<string>;
107
157
  /**
108
158
  * The Kafka API Secret.
109
159
  */
110
- secret: string;
160
+ secret: pulumi.Input<string>;
111
161
  }
112
- export interface GetKafkaTopicCredentialsArgs {
162
+ export interface GetKafkaTopicCredentials {
113
163
  /**
114
164
  * The Kafka API Key.
115
165
  */
116
- key: pulumi.Input<string>;
166
+ key: string;
117
167
  /**
118
168
  * The Kafka API Secret.
119
169
  */
120
- secret: pulumi.Input<string>;
170
+ secret: string;
121
171
  }
122
172
  export interface GetKafkaTopicKafkaClusterArgs {
123
173
  /**
@@ -145,31 +195,31 @@ export interface GetKsqlClusterEnvironmentArgs {
145
195
  }
146
196
  export interface GetNetworkAw {
147
197
  /**
148
- * (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
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.
149
203
  */
150
204
  privateLinkEndpointService?: string;
151
205
  /**
152
- * (Required String) The AWS VPC ID for the network.
206
+ * (Required String) The Confluent Cloud VPC ID.
153
207
  */
154
208
  vpc?: string;
155
209
  }
156
210
  export interface GetNetworkAwArgs {
157
211
  /**
158
- * (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
212
+ * (Required String) The AWS account ID associated with the Confluent Cloud VPC.
159
213
  */
160
- privateLinkEndpointService?: pulumi.Input<string>;
214
+ account?: pulumi.Input<string>;
161
215
  /**
162
- * (Required String) The AWS VPC ID for the network.
216
+ * (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
163
217
  */
164
- vpc?: pulumi.Input<string>;
165
- }
166
- export interface GetNetworkAzure {
218
+ privateLinkEndpointService?: pulumi.Input<string>;
167
219
  /**
168
- * (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zones and values are [Azure Private Link Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service).
220
+ * (Required String) The Confluent Cloud VPC ID.
169
221
  */
170
- privateLinkServiceAliases?: {
171
- [key: string]: string;
172
- };
222
+ vpc?: pulumi.Input<string>;
173
223
  }
174
224
  export interface GetNetworkAzureArgs {
175
225
  /**
@@ -179,11 +229,13 @@ export interface GetNetworkAzureArgs {
179
229
  [key: string]: pulumi.Input<string>;
180
230
  }>;
181
231
  }
182
- export interface GetNetworkEnvironmentArgs {
232
+ export interface GetNetworkAzure {
183
233
  /**
184
- * The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
234
+ * (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zones and values are [Azure Private Link Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service).
185
235
  */
186
- id: pulumi.Input<string>;
236
+ privateLinkServiceAliases?: {
237
+ [key: string]: string;
238
+ };
187
239
  }
188
240
  export interface GetNetworkEnvironment {
189
241
  /**
@@ -191,49 +243,55 @@ export interface GetNetworkEnvironment {
191
243
  */
192
244
  id: string;
193
245
  }
246
+ export interface GetNetworkEnvironmentArgs {
247
+ /**
248
+ * The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
249
+ */
250
+ id: pulumi.Input<string>;
251
+ }
194
252
  export interface GetNetworkGcp {
195
253
  /**
196
- * (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).
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).
197
255
  */
198
256
  privateServiceConnectServiceAttachments?: {
199
257
  [key: string]: string;
200
258
  };
201
259
  /**
202
- * (Required String) The GCP project ID.
260
+ * (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
203
261
  */
204
262
  project?: string;
205
263
  /**
206
- * (Required String) The GCP VPC network name.
264
+ * (Required String) The network name of the Confluent Cloud VPC.
207
265
  */
208
266
  vpcNetwork?: string;
209
267
  }
210
268
  export interface GetNetworkGcpArgs {
211
269
  /**
212
- * (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).
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).
213
271
  */
214
272
  privateServiceConnectServiceAttachments?: pulumi.Input<{
215
273
  [key: string]: pulumi.Input<string>;
216
274
  }>;
217
275
  /**
218
- * (Required String) The GCP project ID.
276
+ * (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
219
277
  */
220
278
  project?: pulumi.Input<string>;
221
279
  /**
222
- * (Required String) The GCP VPC network name.
280
+ * (Required String) The network name of the Confluent Cloud VPC.
223
281
  */
224
282
  vpcNetwork?: pulumi.Input<string>;
225
283
  }
226
- export interface GetPeeringEnvironmentArgs {
284
+ export interface GetPeeringEnvironment {
227
285
  /**
228
286
  * The ID of the Environment that the Peering belongs to, for example, `env-xyz456`.
229
287
  */
230
- id: pulumi.Input<string>;
288
+ id: string;
231
289
  }
232
- export interface GetPeeringEnvironment {
290
+ export interface GetPeeringEnvironmentArgs {
233
291
  /**
234
292
  * The ID of the Environment that the Peering belongs to, for example, `env-xyz456`.
235
293
  */
236
- id: string;
294
+ id: pulumi.Input<string>;
237
295
  }
238
296
  export interface GetPrivateLinkAccessEnvironment {
239
297
  /**
@@ -247,6 +305,30 @@ export interface GetPrivateLinkAccessEnvironmentArgs {
247
305
  */
248
306
  id: pulumi.Input<string>;
249
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
+ }
250
332
  export interface IdentityPoolIdentityProvider {
251
333
  /**
252
334
  * The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
@@ -269,8 +351,46 @@ export interface KafkaAclKafkaCluster {
269
351
  */
270
352
  id: pulumi.Input<string>;
271
353
  }
354
+ export interface KafkaClientQuotaEnvironment {
355
+ /**
356
+ * The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, `env-abc123`.
357
+ */
358
+ id: pulumi.Input<string>;
359
+ }
360
+ export interface KafkaClientQuotaKafkaCluster {
361
+ /**
362
+ * The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, `env-abc123`.
363
+ */
364
+ id: pulumi.Input<string>;
365
+ }
366
+ export interface KafkaClientQuotaThroughput {
367
+ /**
368
+ * The egress throughput limit in bytes per second.
369
+ */
370
+ egressByteRate: pulumi.Input<string>;
371
+ /**
372
+ * The ingress throughput limit in bytes per second.
373
+ */
374
+ ingressByteRate: pulumi.Input<string>;
375
+ }
272
376
  export interface KafkaClusterBasic {
273
377
  }
378
+ export interface KafkaClusterConfigCredentials {
379
+ /**
380
+ * The Kafka API Key.
381
+ */
382
+ key: pulumi.Input<string>;
383
+ /**
384
+ * The Kafka API Secret.
385
+ */
386
+ secret: pulumi.Input<string>;
387
+ }
388
+ export interface KafkaClusterConfigKafkaCluster {
389
+ /**
390
+ * The ID of the Dedicated Kafka cluster, for example, `lkc-abc123`.
391
+ */
392
+ id: pulumi.Input<string>;
393
+ }
274
394
  export interface KafkaClusterDedicated {
275
395
  /**
276
396
  * 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.
@@ -295,6 +415,39 @@ export interface KafkaClusterNetwork {
295
415
  }
296
416
  export interface KafkaClusterStandard {
297
417
  }
418
+ export interface KafkaMirrorTopicClusterLink {
419
+ /**
420
+ * The name of the cluster link to attach to the mirror topic, for example, `my-cluster-link`.
421
+ */
422
+ linkName: pulumi.Input<string>;
423
+ }
424
+ export interface KafkaMirrorTopicKafkaCluster {
425
+ credentials?: pulumi.Input<inputs.KafkaMirrorTopicKafkaClusterCredentials>;
426
+ /**
427
+ * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
428
+ */
429
+ id: pulumi.Input<string>;
430
+ /**
431
+ * The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
432
+ */
433
+ restEndpoint?: pulumi.Input<string>;
434
+ }
435
+ export interface KafkaMirrorTopicKafkaClusterCredentials {
436
+ /**
437
+ * The Kafka API Key.
438
+ */
439
+ key: pulumi.Input<string>;
440
+ /**
441
+ * The Kafka API Secret.
442
+ */
443
+ secret: pulumi.Input<string>;
444
+ }
445
+ export interface KafkaMirrorTopicSourceKafkaTopic {
446
+ /**
447
+ * 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.
448
+ */
449
+ topicName: pulumi.Input<string>;
450
+ }
298
451
  export interface KafkaTopicCredentials {
299
452
  /**
300
453
  * The Kafka API Key.
@@ -331,11 +484,15 @@ export interface KsqlClusterKafkaCluster {
331
484
  }
332
485
  export interface NetworkAw {
333
486
  /**
334
- * (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
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.
335
492
  */
336
493
  privateLinkEndpointService?: pulumi.Input<string>;
337
494
  /**
338
- * (Required String) The AWS VPC ID for the network.
495
+ * (Required String) The Confluent Cloud VPC ID.
339
496
  */
340
497
  vpc?: pulumi.Input<string>;
341
498
  }
@@ -355,17 +512,17 @@ export interface NetworkEnvironment {
355
512
  }
356
513
  export interface NetworkGcp {
357
514
  /**
358
- * (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).
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).
359
516
  */
360
517
  privateServiceConnectServiceAttachments?: pulumi.Input<{
361
518
  [key: string]: pulumi.Input<string>;
362
519
  }>;
363
520
  /**
364
- * (Required String) The GCP project ID.
521
+ * (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
365
522
  */
366
523
  project?: pulumi.Input<string>;
367
524
  /**
368
- * (Required String) The GCP VPC network name.
525
+ * (Required String) The network name of the Confluent Cloud VPC.
369
526
  */
370
527
  vpcNetwork?: pulumi.Input<string>;
371
528
  }
@@ -457,3 +614,49 @@ export interface PrivateLinkAccessNetwork {
457
614
  */
458
615
  id: pulumi.Input<string>;
459
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
+ }