@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,96 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * [![Open Preview](https://img.shields.io/badge/Lifecycle%20Stage-Open%20Preview-%2300afba)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
6
+ *
7
+ * > **Note:** `confluentcloud.StreamGovernanceCluster` resource is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
8
+ * **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
9
+ *
10
+ * `confluentcloud.StreamGovernanceCluster` describes a Stream Governance cluster data source.
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as confluentcloud from "@pulumi/confluentcloud";
17
+ *
18
+ * const exampleUsingIdStreatGovernanceCluster = confluentcloud.getStreatGovernanceCluster({
19
+ * id: "lsrc-abc123",
20
+ * environment: {
21
+ * id: "env-xyz456",
22
+ * },
23
+ * });
24
+ * export const exampleUsingId = exampleUsingIdStreatGovernanceCluster;
25
+ * const exampleUsingNameStreatGovernanceCluster = confluentcloud.getStreatGovernanceCluster({
26
+ * displayName: "Stream Governance Package",
27
+ * environment: {
28
+ * id: "env-xyz456",
29
+ * },
30
+ * });
31
+ * export const exampleUsingName = exampleUsingNameStreatGovernanceCluster;
32
+ * ```
33
+ */
34
+ export declare function getStreatGovernanceCluster(args: GetStreatGovernanceClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetStreatGovernanceClusterResult>;
35
+ /**
36
+ * A collection of arguments for invoking getStreatGovernanceCluster.
37
+ */
38
+ export interface GetStreatGovernanceClusterArgs {
39
+ /**
40
+ * The name for the Stream Governance cluster.
41
+ */
42
+ displayName?: string;
43
+ environment: inputs.GetStreatGovernanceClusterEnvironment;
44
+ /**
45
+ * The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
46
+ */
47
+ id?: string;
48
+ }
49
+ /**
50
+ * A collection of values returned by getStreatGovernanceCluster.
51
+ */
52
+ export interface GetStreatGovernanceClusterResult {
53
+ /**
54
+ * (Required String) An API Version of the schema version of the Stream Governance cluster, for example, `stream-governance/v2`.
55
+ */
56
+ readonly apiVersion: string;
57
+ /**
58
+ * (Required String) The name of the Stream Governance cluster, for example, `Stream Governance Package`.
59
+ */
60
+ readonly displayName: string;
61
+ readonly environment: outputs.GetStreatGovernanceClusterEnvironment;
62
+ /**
63
+ * (Required String) The HTTP endpoint of the Stream Governance cluster, for example, `https://psrc-00000.us-west-2.aws.confluent.cloud`.
64
+ */
65
+ readonly httpEndpoint: string;
66
+ readonly id: string;
67
+ /**
68
+ * (Required String) A kind of the Stream Governance cluster, for example, `Cluster`.
69
+ */
70
+ readonly kind: string;
71
+ /**
72
+ * (Required String) The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
73
+ * - `region` (Required Configuration Block) supports the following:
74
+ */
75
+ readonly package: string;
76
+ readonly regions: outputs.GetStreatGovernanceClusterRegion[];
77
+ /**
78
+ * (Required String) The Confluent Resource Name of the Stream Governance cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123`.
79
+ */
80
+ readonly resourceName: string;
81
+ }
82
+ export declare function getStreatGovernanceClusterOutput(args: GetStreatGovernanceClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetStreatGovernanceClusterResult>;
83
+ /**
84
+ * A collection of arguments for invoking getStreatGovernanceCluster.
85
+ */
86
+ export interface GetStreatGovernanceClusterOutputArgs {
87
+ /**
88
+ * The name for the Stream Governance cluster.
89
+ */
90
+ displayName?: pulumi.Input<string>;
91
+ environment: pulumi.Input<inputs.GetStreatGovernanceClusterEnvironmentArgs>;
92
+ /**
93
+ * The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
94
+ */
95
+ id?: pulumi.Input<string>;
96
+ }
@@ -0,0 +1,54 @@
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.getStreatGovernanceClusterOutput = exports.getStreatGovernanceCluster = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * [![Open Preview](https://img.shields.io/badge/Lifecycle%20Stage-Open%20Preview-%2300afba)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
10
+ *
11
+ * > **Note:** `confluentcloud.StreamGovernanceCluster` resource is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
12
+ * **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
13
+ *
14
+ * `confluentcloud.StreamGovernanceCluster` describes a Stream Governance cluster data source.
15
+ *
16
+ * ## Example Usage
17
+ *
18
+ * ```typescript
19
+ * import * as pulumi from "@pulumi/pulumi";
20
+ * import * as confluentcloud from "@pulumi/confluentcloud";
21
+ *
22
+ * const exampleUsingIdStreatGovernanceCluster = confluentcloud.getStreatGovernanceCluster({
23
+ * id: "lsrc-abc123",
24
+ * environment: {
25
+ * id: "env-xyz456",
26
+ * },
27
+ * });
28
+ * export const exampleUsingId = exampleUsingIdStreatGovernanceCluster;
29
+ * const exampleUsingNameStreatGovernanceCluster = confluentcloud.getStreatGovernanceCluster({
30
+ * displayName: "Stream Governance Package",
31
+ * environment: {
32
+ * id: "env-xyz456",
33
+ * },
34
+ * });
35
+ * export const exampleUsingName = exampleUsingNameStreatGovernanceCluster;
36
+ * ```
37
+ */
38
+ function getStreatGovernanceCluster(args, opts) {
39
+ if (!opts) {
40
+ opts = {};
41
+ }
42
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
43
+ return pulumi.runtime.invoke("confluentcloud:index/getStreatGovernanceCluster:getStreatGovernanceCluster", {
44
+ "displayName": args.displayName,
45
+ "environment": args.environment,
46
+ "id": args.id,
47
+ }, opts);
48
+ }
49
+ exports.getStreatGovernanceCluster = getStreatGovernanceCluster;
50
+ function getStreatGovernanceClusterOutput(args, opts) {
51
+ return pulumi.output(args).apply(a => getStreatGovernanceCluster(a, opts));
52
+ }
53
+ exports.getStreatGovernanceClusterOutput = getStreatGovernanceClusterOutput;
54
+ //# sourceMappingURL=getStreatGovernanceCluster.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getStreatGovernanceCluster.js","sourceRoot":"","sources":["../getStreatGovernanceCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4EAA4E,EAAE;QACvG,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gEAWC;AAmDD,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAA2B;IACpH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,0BAA0B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,4EAEC"}
@@ -0,0 +1,83 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * [![Early Access](https://img.shields.io/badge/Lifecycle%20Stage-Early%20Access-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [![Request Access To Networking v1](https://img.shields.io/badge/-Request%20Access%20To%20Networking%20v1-%23bc8540)](mailto:ccloud-api-access+networking-v1-early-access@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Early%20Access&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Early%20Access%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
6
+ *
7
+ * > **Note:** `confluentcloud.TransitGatewayAttachment` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
8
+ * **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Early Access features at any time in Confluent’s sole discretion.
9
+ *
10
+ * `confluentcloud.TransitGatewayAttachment` describes a Transit Gateway Attachment data source.
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as confluentcloud from "@pulumi/confluentcloud";
17
+ *
18
+ * const exampleUsingIdTransitGatewayAttachment = confluentcloud.getTransitGatewayAttachment({
19
+ * id: "tgwa-abc123",
20
+ * environment: {
21
+ * id: "env-xyz456",
22
+ * },
23
+ * });
24
+ * export const exampleUsingId = exampleUsingIdTransitGatewayAttachment;
25
+ * const exampleUsingNameTransitGatewayAttachment = confluentcloud.getTransitGatewayAttachment({
26
+ * displayName: "my_tgwa",
27
+ * environment: {
28
+ * id: "env-xyz456",
29
+ * },
30
+ * });
31
+ * export const exampleUsingName = exampleUsingNameTransitGatewayAttachment;
32
+ * ```
33
+ */
34
+ export declare function getTransitGatewayAttachment(args: GetTransitGatewayAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetTransitGatewayAttachmentResult>;
35
+ /**
36
+ * A collection of arguments for invoking getTransitGatewayAttachment.
37
+ */
38
+ export interface GetTransitGatewayAttachmentArgs {
39
+ /**
40
+ * A human-readable name for the Transit Gateway Attachment.
41
+ */
42
+ displayName?: string;
43
+ environment: inputs.GetTransitGatewayAttachmentEnvironment;
44
+ /**
45
+ * The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
46
+ */
47
+ id?: string;
48
+ }
49
+ /**
50
+ * A collection of values returned by getTransitGatewayAttachment.
51
+ */
52
+ export interface GetTransitGatewayAttachmentResult {
53
+ /**
54
+ * (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
55
+ */
56
+ readonly aws: outputs.GetTransitGatewayAttachmentAw[];
57
+ /**
58
+ * (Required String) The name of the Transit Gateway Attachment.
59
+ * - `environment` (Required Configuration Block) supports the following:
60
+ */
61
+ readonly displayName: string;
62
+ readonly environment: outputs.GetTransitGatewayAttachmentEnvironment;
63
+ /**
64
+ * (Required String) The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
65
+ */
66
+ readonly id: string;
67
+ readonly networks: outputs.GetTransitGatewayAttachmentNetwork[];
68
+ }
69
+ export declare function getTransitGatewayAttachmentOutput(args: GetTransitGatewayAttachmentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTransitGatewayAttachmentResult>;
70
+ /**
71
+ * A collection of arguments for invoking getTransitGatewayAttachment.
72
+ */
73
+ export interface GetTransitGatewayAttachmentOutputArgs {
74
+ /**
75
+ * A human-readable name for the Transit Gateway Attachment.
76
+ */
77
+ displayName?: pulumi.Input<string>;
78
+ environment: pulumi.Input<inputs.GetTransitGatewayAttachmentEnvironmentArgs>;
79
+ /**
80
+ * The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
81
+ */
82
+ id?: pulumi.Input<string>;
83
+ }
@@ -0,0 +1,54 @@
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.getTransitGatewayAttachmentOutput = exports.getTransitGatewayAttachment = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * [![Early Access](https://img.shields.io/badge/Lifecycle%20Stage-Early%20Access-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [![Request Access To Networking v1](https://img.shields.io/badge/-Request%20Access%20To%20Networking%20v1-%23bc8540)](mailto:ccloud-api-access+networking-v1-early-access@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Early%20Access&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Early%20Access%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
10
+ *
11
+ * > **Note:** `confluentcloud.TransitGatewayAttachment` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
12
+ * **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Early Access features at any time in Confluent’s sole discretion.
13
+ *
14
+ * `confluentcloud.TransitGatewayAttachment` describes a Transit Gateway Attachment data source.
15
+ *
16
+ * ## Example Usage
17
+ *
18
+ * ```typescript
19
+ * import * as pulumi from "@pulumi/pulumi";
20
+ * import * as confluentcloud from "@pulumi/confluentcloud";
21
+ *
22
+ * const exampleUsingIdTransitGatewayAttachment = confluentcloud.getTransitGatewayAttachment({
23
+ * id: "tgwa-abc123",
24
+ * environment: {
25
+ * id: "env-xyz456",
26
+ * },
27
+ * });
28
+ * export const exampleUsingId = exampleUsingIdTransitGatewayAttachment;
29
+ * const exampleUsingNameTransitGatewayAttachment = confluentcloud.getTransitGatewayAttachment({
30
+ * displayName: "my_tgwa",
31
+ * environment: {
32
+ * id: "env-xyz456",
33
+ * },
34
+ * });
35
+ * export const exampleUsingName = exampleUsingNameTransitGatewayAttachment;
36
+ * ```
37
+ */
38
+ function getTransitGatewayAttachment(args, opts) {
39
+ if (!opts) {
40
+ opts = {};
41
+ }
42
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
43
+ return pulumi.runtime.invoke("confluentcloud:index/getTransitGatewayAttachment:getTransitGatewayAttachment", {
44
+ "displayName": args.displayName,
45
+ "environment": args.environment,
46
+ "id": args.id,
47
+ }, opts);
48
+ }
49
+ exports.getTransitGatewayAttachment = getTransitGatewayAttachment;
50
+ function getTransitGatewayAttachmentOutput(args, opts) {
51
+ return pulumi.output(args).apply(a => getTransitGatewayAttachment(a, opts));
52
+ }
53
+ exports.getTransitGatewayAttachmentOutput = getTransitGatewayAttachmentOutput;
54
+ //# sourceMappingURL=getTransitGatewayAttachment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getTransitGatewayAttachment.js","sourceRoot":"","sources":["../getTransitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8EAA8E,EAAE;QACzG,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,kEAWC;AAsCD,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,2BAA2B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,8EAEC"}
package/identityPool.d.ts CHANGED
@@ -4,9 +4,6 @@ import * as outputs from "./types/output";
4
4
  /**
5
5
  * [![Limited Availability](https://img.shields.io/badge/Lifecycle%20Stage-Limited%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [![Request Access To OAuth API](https://img.shields.io/badge/-Request%20Access%20To%20OAuth%20API-%23bc8540)](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
6
6
  *
7
- * > **Note:** `confluentcloud.IdentityPool` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
8
- * **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
9
- *
10
7
  * `confluentcloud.IdentityPool` provides an Identity Pool resource that enables creating, editing, and deleting identity pools on Confluent Cloud.
11
8
  *
12
9
  * ## Example Usage
package/identityPool.js CHANGED
@@ -8,9 +8,6 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * [![Limited Availability](https://img.shields.io/badge/Lifecycle%20Stage-Limited%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [![Request Access To OAuth API](https://img.shields.io/badge/-Request%20Access%20To%20OAuth%20API-%23bc8540)](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
10
10
  *
11
- * > **Note:** `confluentcloud.IdentityPool` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
12
- * **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
13
- *
14
11
  * `confluentcloud.IdentityPool` provides an Identity Pool resource that enables creating, editing, and deleting identity pools on Confluent Cloud.
15
12
  *
16
13
  * ## Example Usage
@@ -1 +1 @@
1
- {"version":3,"file":"identityPool.js","sourceRoot":"","sources":["../identityPool.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"identityPool.js","sourceRoot":"","sources":["../identityPool.ts"],"names":[],"mappings":"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"}
@@ -2,9 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * [![Limited Availability](https://img.shields.io/badge/Lifecycle%20Stage-Limited%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [![Request Access To OAuth API](https://img.shields.io/badge/-Request%20Access%20To%20OAuth%20API-%23bc8540)](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
4
4
  *
5
- * > **Note:** `confluentcloud.IdentityProvider` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
6
- * **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
7
- *
8
5
  * `confluentcloud.IdentityProvider` provides an Identity Provider resource that enables creating, editing, and deleting identity providers on Confluent Cloud.
9
6
  *
10
7
  * ## Example Usage
@@ -8,9 +8,6 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * [![Limited Availability](https://img.shields.io/badge/Lifecycle%20Stage-Limited%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [![Request Access To OAuth API](https://img.shields.io/badge/-Request%20Access%20To%20OAuth%20API-%23bc8540)](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
10
10
  *
11
- * > **Note:** `confluentcloud.IdentityProvider` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
12
- * **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
13
- *
14
11
  * `confluentcloud.IdentityProvider` provides an Identity Provider resource that enables creating, editing, and deleting identity providers on Confluent Cloud.
15
12
  *
16
13
  * ## Example Usage
@@ -1 +1 @@
1
- {"version":3,"file":"identityProvider.js","sourceRoot":"","sources":["../identityProvider.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"identityProvider.js","sourceRoot":"","sources":["../identityProvider.ts"],"names":[],"mappings":"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"}
package/index.d.ts CHANGED
@@ -1,6 +1,9 @@
1
1
  export { ApiKeyArgs, ApiKeyState } from "./apiKey";
2
2
  export declare type ApiKey = import("./apiKey").ApiKey;
3
3
  export declare const ApiKey: typeof import("./apiKey").ApiKey;
4
+ export { ClusterLinkArgs, ClusterLinkState } from "./clusterLink";
5
+ export declare type ClusterLink = import("./clusterLink").ClusterLink;
6
+ export declare const ClusterLink: typeof import("./clusterLink").ClusterLink;
4
7
  export { ConnectorArgs, ConnectorState } from "./connector";
5
8
  export declare type Connector = import("./connector").Connector;
6
9
  export declare const Connector: typeof import("./connector").Connector;
@@ -16,6 +19,9 @@ export declare const getIdentityPoolOutput: typeof import("./getIdentityPool").g
16
19
  export { GetIdentityProviderArgs, GetIdentityProviderResult, GetIdentityProviderOutputArgs } from "./getIdentityProvider";
17
20
  export declare const getIdentityProvider: typeof import("./getIdentityProvider").getIdentityProvider;
18
21
  export declare const getIdentityProviderOutput: typeof import("./getIdentityProvider").getIdentityProviderOutput;
22
+ export { GetKafkaClientQuotaArgs, GetKafkaClientQuotaResult, GetKafkaClientQuotaOutputArgs } from "./getKafkaClientQuota";
23
+ export declare const getKafkaClientQuota: typeof import("./getKafkaClientQuota").getKafkaClientQuota;
24
+ export declare const getKafkaClientQuotaOutput: typeof import("./getKafkaClientQuota").getKafkaClientQuotaOutput;
19
25
  export { GetKafkaClusterArgs, GetKafkaClusterResult, GetKafkaClusterOutputArgs } from "./getKafkaCluster";
20
26
  export declare const getKafkaCluster: typeof import("./getKafkaCluster").getKafkaCluster;
21
27
  export declare const getKafkaClusterOutput: typeof import("./getKafkaCluster").getKafkaClusterOutput;
@@ -42,6 +48,15 @@ export declare const getRoleBindingOutput: typeof import("./getRoleBinding").get
42
48
  export { GetServiceAccountArgs, GetServiceAccountResult, GetServiceAccountOutputArgs } from "./getServiceAccount";
43
49
  export declare const getServiceAccount: typeof import("./getServiceAccount").getServiceAccount;
44
50
  export declare const getServiceAccountOutput: typeof import("./getServiceAccount").getServiceAccountOutput;
51
+ export { GetStreamGovernanceRegionArgs, GetStreamGovernanceRegionResult, GetStreamGovernanceRegionOutputArgs } from "./getStreamGovernanceRegion";
52
+ export declare const getStreamGovernanceRegion: typeof import("./getStreamGovernanceRegion").getStreamGovernanceRegion;
53
+ export declare const getStreamGovernanceRegionOutput: typeof import("./getStreamGovernanceRegion").getStreamGovernanceRegionOutput;
54
+ export { GetStreatGovernanceClusterArgs, GetStreatGovernanceClusterResult, GetStreatGovernanceClusterOutputArgs } from "./getStreatGovernanceCluster";
55
+ export declare const getStreatGovernanceCluster: typeof import("./getStreatGovernanceCluster").getStreatGovernanceCluster;
56
+ export declare const getStreatGovernanceClusterOutput: typeof import("./getStreatGovernanceCluster").getStreatGovernanceClusterOutput;
57
+ export { GetTransitGatewayAttachmentArgs, GetTransitGatewayAttachmentResult, GetTransitGatewayAttachmentOutputArgs } from "./getTransitGatewayAttachment";
58
+ export declare const getTransitGatewayAttachment: typeof import("./getTransitGatewayAttachment").getTransitGatewayAttachment;
59
+ export declare const getTransitGatewayAttachmentOutput: typeof import("./getTransitGatewayAttachment").getTransitGatewayAttachmentOutput;
45
60
  export { GetUserArgs, GetUserResult, GetUserOutputArgs } from "./getUser";
46
61
  export declare const getUser: typeof import("./getUser").getUser;
47
62
  export declare const getUserOutput: typeof import("./getUser").getUserOutput;
@@ -54,9 +69,18 @@ export declare const IdentityProvider: typeof import("./identityProvider").Ident
54
69
  export { KafkaAclArgs, KafkaAclState } from "./kafkaAcl";
55
70
  export declare type KafkaAcl = import("./kafkaAcl").KafkaAcl;
56
71
  export declare const KafkaAcl: typeof import("./kafkaAcl").KafkaAcl;
72
+ export { KafkaClientQuotaArgs, KafkaClientQuotaState } from "./kafkaClientQuota";
73
+ export declare type KafkaClientQuota = import("./kafkaClientQuota").KafkaClientQuota;
74
+ export declare const KafkaClientQuota: typeof import("./kafkaClientQuota").KafkaClientQuota;
57
75
  export { KafkaClusterArgs, KafkaClusterState } from "./kafkaCluster";
58
76
  export declare type KafkaCluster = import("./kafkaCluster").KafkaCluster;
59
77
  export declare const KafkaCluster: typeof import("./kafkaCluster").KafkaCluster;
78
+ export { KafkaClusterConfigArgs, KafkaClusterConfigState } from "./kafkaClusterConfig";
79
+ export declare type KafkaClusterConfig = import("./kafkaClusterConfig").KafkaClusterConfig;
80
+ export declare const KafkaClusterConfig: typeof import("./kafkaClusterConfig").KafkaClusterConfig;
81
+ export { KafkaMirrorTopicArgs, KafkaMirrorTopicState } from "./kafkaMirrorTopic";
82
+ export declare type KafkaMirrorTopic = import("./kafkaMirrorTopic").KafkaMirrorTopic;
83
+ export declare const KafkaMirrorTopic: typeof import("./kafkaMirrorTopic").KafkaMirrorTopic;
60
84
  export { KafkaTopicArgs, KafkaTopicState } from "./kafkaTopic";
61
85
  export declare type KafkaTopic = import("./kafkaTopic").KafkaTopic;
62
86
  export declare const KafkaTopic: typeof import("./kafkaTopic").KafkaTopic;
@@ -81,6 +105,12 @@ export declare const RoleBinding: typeof import("./roleBinding").RoleBinding;
81
105
  export { ServiceAccountArgs, ServiceAccountState } from "./serviceAccount";
82
106
  export declare type ServiceAccount = import("./serviceAccount").ServiceAccount;
83
107
  export declare const ServiceAccount: typeof import("./serviceAccount").ServiceAccount;
108
+ export { StreamGovernanceClusterArgs, StreamGovernanceClusterState } from "./streamGovernanceCluster";
109
+ export declare type StreamGovernanceCluster = import("./streamGovernanceCluster").StreamGovernanceCluster;
110
+ export declare const StreamGovernanceCluster: typeof import("./streamGovernanceCluster").StreamGovernanceCluster;
111
+ export { TransitGatewayAttachmentArgs, TransitGatewayAttachmentState } from "./transitGatewayAttachment";
112
+ export declare type TransitGatewayAttachment = import("./transitGatewayAttachment").TransitGatewayAttachment;
113
+ export declare const TransitGatewayAttachment: typeof import("./transitGatewayAttachment").TransitGatewayAttachment;
84
114
  import * as config from "./config";
85
115
  import * as types from "./types";
86
116
  export { config, types, };
package/index.js CHANGED
@@ -2,10 +2,12 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.types = exports.config = exports.ServiceAccount = exports.RoleBinding = exports.Provider = exports.PrivateLinkAccess = exports.Peering = exports.Network = exports.KsqlCluster = exports.KafkaTopic = exports.KafkaCluster = exports.KafkaAcl = exports.IdentityProvider = exports.IdentityPool = exports.getUserOutput = exports.getUser = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getPrivateLinkAccessOutput = exports.getPrivateLinkAccess = exports.getPeeringOutput = exports.getPeering = exports.getOrganization = exports.getNetworkOutput = exports.getNetwork = exports.getKsqlClusterOutput = exports.getKsqlCluster = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaClusterOutput = exports.getKafkaCluster = exports.getIdentityProviderOutput = exports.getIdentityProvider = exports.getIdentityPoolOutput = exports.getIdentityPool = exports.getEnvironmentOutput = exports.getEnvironment = exports.Environment = exports.Connector = exports.ApiKey = void 0;
5
+ exports.Provider = exports.PrivateLinkAccess = exports.Peering = exports.Network = exports.KsqlCluster = exports.KafkaTopic = exports.KafkaMirrorTopic = exports.KafkaClusterConfig = exports.KafkaCluster = exports.KafkaClientQuota = exports.KafkaAcl = exports.IdentityProvider = exports.IdentityPool = exports.getUserOutput = exports.getUser = exports.getTransitGatewayAttachmentOutput = exports.getTransitGatewayAttachment = exports.getStreatGovernanceClusterOutput = exports.getStreatGovernanceCluster = exports.getStreamGovernanceRegionOutput = exports.getStreamGovernanceRegion = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getPrivateLinkAccessOutput = exports.getPrivateLinkAccess = exports.getPeeringOutput = exports.getPeering = exports.getOrganization = exports.getNetworkOutput = exports.getNetwork = exports.getKsqlClusterOutput = exports.getKsqlCluster = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaClusterOutput = exports.getKafkaCluster = exports.getKafkaClientQuotaOutput = exports.getKafkaClientQuota = exports.getIdentityProviderOutput = exports.getIdentityProvider = exports.getIdentityPoolOutput = exports.getIdentityPool = exports.getEnvironmentOutput = exports.getEnvironment = exports.Environment = exports.Connector = exports.ClusterLink = exports.ApiKey = void 0;
6
+ exports.types = exports.config = exports.TransitGatewayAttachment = exports.StreamGovernanceCluster = exports.ServiceAccount = exports.RoleBinding = void 0;
6
7
  const pulumi = require("@pulumi/pulumi");
7
8
  const utilities = require("./utilities");
8
9
  exports.ApiKey = null;
10
+ exports.ClusterLink = null;
9
11
  exports.Connector = null;
10
12
  exports.Environment = null;
11
13
  exports.getEnvironment = null;
@@ -14,6 +16,8 @@ exports.getIdentityPool = null;
14
16
  exports.getIdentityPoolOutput = null;
15
17
  exports.getIdentityProvider = null;
16
18
  exports.getIdentityProviderOutput = null;
19
+ exports.getKafkaClientQuota = null;
20
+ exports.getKafkaClientQuotaOutput = null;
17
21
  exports.getKafkaCluster = null;
18
22
  exports.getKafkaClusterOutput = null;
19
23
  exports.getKafkaTopic = null;
@@ -31,12 +35,21 @@ exports.getRoleBinding = null;
31
35
  exports.getRoleBindingOutput = null;
32
36
  exports.getServiceAccount = null;
33
37
  exports.getServiceAccountOutput = null;
38
+ exports.getStreamGovernanceRegion = null;
39
+ exports.getStreamGovernanceRegionOutput = null;
40
+ exports.getStreatGovernanceCluster = null;
41
+ exports.getStreatGovernanceClusterOutput = null;
42
+ exports.getTransitGatewayAttachment = null;
43
+ exports.getTransitGatewayAttachmentOutput = null;
34
44
  exports.getUser = null;
35
45
  exports.getUserOutput = null;
36
46
  exports.IdentityPool = null;
37
47
  exports.IdentityProvider = null;
38
48
  exports.KafkaAcl = null;
49
+ exports.KafkaClientQuota = null;
39
50
  exports.KafkaCluster = null;
51
+ exports.KafkaClusterConfig = null;
52
+ exports.KafkaMirrorTopic = null;
40
53
  exports.KafkaTopic = null;
41
54
  exports.KsqlCluster = null;
42
55
  exports.Network = null;
@@ -45,12 +58,16 @@ exports.PrivateLinkAccess = null;
45
58
  exports.Provider = null;
46
59
  exports.RoleBinding = null;
47
60
  exports.ServiceAccount = null;
61
+ exports.StreamGovernanceCluster = null;
62
+ exports.TransitGatewayAttachment = null;
48
63
  utilities.lazyLoad(exports, ["ApiKey"], () => require("./apiKey"));
64
+ utilities.lazyLoad(exports, ["ClusterLink"], () => require("./clusterLink"));
49
65
  utilities.lazyLoad(exports, ["Connector"], () => require("./connector"));
50
66
  utilities.lazyLoad(exports, ["Environment"], () => require("./environment"));
51
67
  utilities.lazyLoad(exports, ["getEnvironment", "getEnvironmentOutput"], () => require("./getEnvironment"));
52
68
  utilities.lazyLoad(exports, ["getIdentityPool", "getIdentityPoolOutput"], () => require("./getIdentityPool"));
53
69
  utilities.lazyLoad(exports, ["getIdentityProvider", "getIdentityProviderOutput"], () => require("./getIdentityProvider"));
70
+ utilities.lazyLoad(exports, ["getKafkaClientQuota", "getKafkaClientQuotaOutput"], () => require("./getKafkaClientQuota"));
54
71
  utilities.lazyLoad(exports, ["getKafkaCluster", "getKafkaClusterOutput"], () => require("./getKafkaCluster"));
55
72
  utilities.lazyLoad(exports, ["getKafkaTopic", "getKafkaTopicOutput"], () => require("./getKafkaTopic"));
56
73
  utilities.lazyLoad(exports, ["getKsqlCluster", "getKsqlClusterOutput"], () => require("./getKsqlCluster"));
@@ -60,11 +77,17 @@ utilities.lazyLoad(exports, ["getPeering", "getPeeringOutput"], () => require(".
60
77
  utilities.lazyLoad(exports, ["getPrivateLinkAccess", "getPrivateLinkAccessOutput"], () => require("./getPrivateLinkAccess"));
61
78
  utilities.lazyLoad(exports, ["getRoleBinding", "getRoleBindingOutput"], () => require("./getRoleBinding"));
62
79
  utilities.lazyLoad(exports, ["getServiceAccount", "getServiceAccountOutput"], () => require("./getServiceAccount"));
80
+ utilities.lazyLoad(exports, ["getStreamGovernanceRegion", "getStreamGovernanceRegionOutput"], () => require("./getStreamGovernanceRegion"));
81
+ utilities.lazyLoad(exports, ["getStreatGovernanceCluster", "getStreatGovernanceClusterOutput"], () => require("./getStreatGovernanceCluster"));
82
+ utilities.lazyLoad(exports, ["getTransitGatewayAttachment", "getTransitGatewayAttachmentOutput"], () => require("./getTransitGatewayAttachment"));
63
83
  utilities.lazyLoad(exports, ["getUser", "getUserOutput"], () => require("./getUser"));
64
84
  utilities.lazyLoad(exports, ["IdentityPool"], () => require("./identityPool"));
65
85
  utilities.lazyLoad(exports, ["IdentityProvider"], () => require("./identityProvider"));
66
86
  utilities.lazyLoad(exports, ["KafkaAcl"], () => require("./kafkaAcl"));
87
+ utilities.lazyLoad(exports, ["KafkaClientQuota"], () => require("./kafkaClientQuota"));
67
88
  utilities.lazyLoad(exports, ["KafkaCluster"], () => require("./kafkaCluster"));
89
+ utilities.lazyLoad(exports, ["KafkaClusterConfig"], () => require("./kafkaClusterConfig"));
90
+ utilities.lazyLoad(exports, ["KafkaMirrorTopic"], () => require("./kafkaMirrorTopic"));
68
91
  utilities.lazyLoad(exports, ["KafkaTopic"], () => require("./kafkaTopic"));
69
92
  utilities.lazyLoad(exports, ["KsqlCluster"], () => require("./ksqlCluster"));
70
93
  utilities.lazyLoad(exports, ["Network"], () => require("./network"));
@@ -73,6 +96,8 @@ utilities.lazyLoad(exports, ["PrivateLinkAccess"], () => require("./privateLinkA
73
96
  utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
74
97
  utilities.lazyLoad(exports, ["RoleBinding"], () => require("./roleBinding"));
75
98
  utilities.lazyLoad(exports, ["ServiceAccount"], () => require("./serviceAccount"));
99
+ utilities.lazyLoad(exports, ["StreamGovernanceCluster"], () => require("./streamGovernanceCluster"));
100
+ utilities.lazyLoad(exports, ["TransitGatewayAttachment"], () => require("./transitGatewayAttachment"));
76
101
  // Export sub-modules:
77
102
  const config = require("./config");
78
103
  exports.config = config;
@@ -84,6 +109,8 @@ const _module = {
84
109
  switch (type) {
85
110
  case "confluentcloud:index/apiKey:ApiKey":
86
111
  return new exports.ApiKey(name, undefined, { urn });
112
+ case "confluentcloud:index/clusterLink:ClusterLink":
113
+ return new exports.ClusterLink(name, undefined, { urn });
87
114
  case "confluentcloud:index/connector:Connector":
88
115
  return new exports.Connector(name, undefined, { urn });
89
116
  case "confluentcloud:index/environment:Environment":
@@ -94,8 +121,14 @@ const _module = {
94
121
  return new exports.IdentityProvider(name, undefined, { urn });
95
122
  case "confluentcloud:index/kafkaAcl:KafkaAcl":
96
123
  return new exports.KafkaAcl(name, undefined, { urn });
124
+ case "confluentcloud:index/kafkaClientQuota:KafkaClientQuota":
125
+ return new exports.KafkaClientQuota(name, undefined, { urn });
97
126
  case "confluentcloud:index/kafkaCluster:KafkaCluster":
98
127
  return new exports.KafkaCluster(name, undefined, { urn });
128
+ case "confluentcloud:index/kafkaClusterConfig:KafkaClusterConfig":
129
+ return new exports.KafkaClusterConfig(name, undefined, { urn });
130
+ case "confluentcloud:index/kafkaMirrorTopic:KafkaMirrorTopic":
131
+ return new exports.KafkaMirrorTopic(name, undefined, { urn });
99
132
  case "confluentcloud:index/kafkaTopic:KafkaTopic":
100
133
  return new exports.KafkaTopic(name, undefined, { urn });
101
134
  case "confluentcloud:index/ksqlCluster:KsqlCluster":
@@ -110,18 +143,26 @@ const _module = {
110
143
  return new exports.RoleBinding(name, undefined, { urn });
111
144
  case "confluentcloud:index/serviceAccount:ServiceAccount":
112
145
  return new exports.ServiceAccount(name, undefined, { urn });
146
+ case "confluentcloud:index/streamGovernanceCluster:StreamGovernanceCluster":
147
+ return new exports.StreamGovernanceCluster(name, undefined, { urn });
148
+ case "confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment":
149
+ return new exports.TransitGatewayAttachment(name, undefined, { urn });
113
150
  default:
114
151
  throw new Error(`unknown resource type ${type}`);
115
152
  }
116
153
  },
117
154
  };
118
155
  pulumi.runtime.registerResourceModule("confluentcloud", "index/apiKey", _module);
156
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/clusterLink", _module);
119
157
  pulumi.runtime.registerResourceModule("confluentcloud", "index/connector", _module);
120
158
  pulumi.runtime.registerResourceModule("confluentcloud", "index/environment", _module);
121
159
  pulumi.runtime.registerResourceModule("confluentcloud", "index/identityPool", _module);
122
160
  pulumi.runtime.registerResourceModule("confluentcloud", "index/identityProvider", _module);
123
161
  pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaAcl", _module);
162
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaClientQuota", _module);
124
163
  pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaCluster", _module);
164
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaClusterConfig", _module);
165
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaMirrorTopic", _module);
125
166
  pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaTopic", _module);
126
167
  pulumi.runtime.registerResourceModule("confluentcloud", "index/ksqlCluster", _module);
127
168
  pulumi.runtime.registerResourceModule("confluentcloud", "index/network", _module);
@@ -129,6 +170,8 @@ pulumi.runtime.registerResourceModule("confluentcloud", "index/peering", _module
129
170
  pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAccess", _module);
130
171
  pulumi.runtime.registerResourceModule("confluentcloud", "index/roleBinding", _module);
131
172
  pulumi.runtime.registerResourceModule("confluentcloud", "index/serviceAccount", _module);
173
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/streamGovernanceCluster", _module);
174
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/transitGatewayAttachment", _module);
132
175
  pulumi.runtime.registerResourcePackage("confluentcloud", {
133
176
  version: utilities.getVersion(),
134
177
  constructProvider: (name, type, urn) => {