@pulumi/confluentcloud 2.50.0-alpha.1763185030 → 2.50.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.
@@ -0,0 +1,145 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.ProviderIntegrationSetup = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * ## Example Usage
10
+ *
11
+ * ### Azure Provider Integration
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as confluentcloud from "@pulumi/confluentcloud";
16
+ *
17
+ * const staging = new confluentcloud.Environment("staging", {
18
+ * displayName: "Staging",
19
+ * streamGovernance: {
20
+ * "package": "ESSENTIALS",
21
+ * },
22
+ * });
23
+ * const azure = new confluentcloud.ProviderIntegrationSetup("azure", {
24
+ * environment: {
25
+ * id: staging.id,
26
+ * },
27
+ * displayName: "azure-integration",
28
+ * cloud: "AZURE",
29
+ * });
30
+ * // Configure and validate the Azure integration
31
+ * const azureProviderIntegrationAuthorization = new confluentcloud.ProviderIntegrationAuthorization("azure", {
32
+ * providerIntegrationId: azure.id,
33
+ * environment: {
34
+ * id: staging.id,
35
+ * },
36
+ * azure: {
37
+ * customerAzureTenantId: "12345678-1234-1234-1234-123456789abc",
38
+ * },
39
+ * });
40
+ * ```
41
+ *
42
+ * ### GCP Provider Integration
43
+ *
44
+ * ```typescript
45
+ * import * as pulumi from "@pulumi/pulumi";
46
+ * import * as confluentcloud from "@pulumi/confluentcloud";
47
+ *
48
+ * const gcp = new confluentcloud.ProviderIntegrationSetup("gcp", {
49
+ * environment: {
50
+ * id: staging.id,
51
+ * },
52
+ * displayName: "gcp-integration",
53
+ * cloud: "GCP",
54
+ * });
55
+ * // Configure and validate the GCP integration
56
+ * const gcpProviderIntegrationAuthorization = new confluentcloud.ProviderIntegrationAuthorization("gcp", {
57
+ * providerIntegrationId: gcp.id,
58
+ * environment: {
59
+ * id: staging.id,
60
+ * },
61
+ * gcp: {
62
+ * customerGoogleServiceAccount: "my-sa@my-project.iam.gserviceaccount.com",
63
+ * },
64
+ * });
65
+ * ```
66
+ *
67
+ * ## Getting Started
68
+ *
69
+ * The following end-to-end examples might help to get started with `confluentcloud.ProviderIntegrationSetup` resource:
70
+ * * provider-integration-azure: Complete Azure Provider Integration setup
71
+ * * provider-integration-gcp: Complete GCP Provider Integration setup
72
+ *
73
+ * ## Import
74
+ *
75
+ * You can import a Provider Integration by using Environment ID and Provider Integration ID, in the format `<Environment ID>/<Provider Integration ID>`. The following example shows how to import a Provider Integration:
76
+ *
77
+ * $ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
78
+ *
79
+ * $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
80
+ *
81
+ * ```sh
82
+ * $ pulumi import confluentcloud:index/providerIntegrationSetup:ProviderIntegrationSetup main env-abc123/cspi-4xg0q
83
+ * ```
84
+ *
85
+ * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
86
+ */
87
+ class ProviderIntegrationSetup extends pulumi.CustomResource {
88
+ /**
89
+ * Get an existing ProviderIntegrationSetup resource's state with the given name, ID, and optional extra
90
+ * properties used to qualify the lookup.
91
+ *
92
+ * @param name The _unique_ name of the resulting resource.
93
+ * @param id The _unique_ provider ID of the resource to lookup.
94
+ * @param state Any extra arguments used during the lookup.
95
+ * @param opts Optional settings to control the behavior of the CustomResource.
96
+ */
97
+ static get(name, id, state, opts) {
98
+ return new ProviderIntegrationSetup(name, state, { ...opts, id: id });
99
+ }
100
+ /**
101
+ * Returns true if the given object is an instance of ProviderIntegrationSetup. This is designed to work even
102
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
103
+ */
104
+ static isInstance(obj) {
105
+ if (obj === undefined || obj === null) {
106
+ return false;
107
+ }
108
+ return obj['__pulumiType'] === ProviderIntegrationSetup.__pulumiType;
109
+ }
110
+ constructor(name, argsOrState, opts) {
111
+ let resourceInputs = {};
112
+ opts = opts || {};
113
+ if (opts.id) {
114
+ const state = argsOrState;
115
+ resourceInputs["cloud"] = state?.cloud;
116
+ resourceInputs["displayName"] = state?.displayName;
117
+ resourceInputs["environment"] = state?.environment;
118
+ resourceInputs["status"] = state?.status;
119
+ resourceInputs["usages"] = state?.usages;
120
+ }
121
+ else {
122
+ const args = argsOrState;
123
+ if (args?.cloud === undefined && !opts.urn) {
124
+ throw new Error("Missing required property 'cloud'");
125
+ }
126
+ if (args?.displayName === undefined && !opts.urn) {
127
+ throw new Error("Missing required property 'displayName'");
128
+ }
129
+ if (args?.environment === undefined && !opts.urn) {
130
+ throw new Error("Missing required property 'environment'");
131
+ }
132
+ resourceInputs["cloud"] = args?.cloud;
133
+ resourceInputs["displayName"] = args?.displayName;
134
+ resourceInputs["environment"] = args?.environment;
135
+ resourceInputs["status"] = undefined /*out*/;
136
+ resourceInputs["usages"] = undefined /*out*/;
137
+ }
138
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
139
+ super(ProviderIntegrationSetup.__pulumiType, name, resourceInputs, opts);
140
+ }
141
+ }
142
+ exports.ProviderIntegrationSetup = ProviderIntegrationSetup;
143
+ /** @internal */
144
+ ProviderIntegrationSetup.__pulumiType = 'confluentcloud:index/providerIntegrationSetup:ProviderIntegrationSetup';
145
+ //# sourceMappingURL=providerIntegrationSetup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"providerIntegrationSetup.js","sourceRoot":"","sources":["../providerIntegrationSetup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8EG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IA+BD,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,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,IAAI,EAAE,KAAK,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxC,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;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;;AAtFL,4DAuFC;AAzEG,gBAAgB;AACO,qCAAY,GAAG,wEAAwE,CAAC"}
package/types/input.d.ts CHANGED
@@ -1111,6 +1111,18 @@ export interface GetKafkaClusterStandard {
1111
1111
  }
1112
1112
  export interface GetKafkaClusterStandardArgs {
1113
1113
  }
1114
+ export interface GetKafkaClustersEnvironment {
1115
+ /**
1116
+ * The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
1117
+ */
1118
+ id: string;
1119
+ }
1120
+ export interface GetKafkaClustersEnvironmentArgs {
1121
+ /**
1122
+ * The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
1123
+ */
1124
+ id: pulumi.Input<string>;
1125
+ }
1114
1126
  export interface GetKafkaTopicCredentials {
1115
1127
  /**
1116
1128
  * The Kafka API Key.
@@ -1371,6 +1383,18 @@ export interface GetPrivateLinkAttachmentEnvironmentArgs {
1371
1383
  */
1372
1384
  id: pulumi.Input<string>;
1373
1385
  }
1386
+ export interface GetProviderIntegrationAuthorizationEnvironment {
1387
+ /**
1388
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
1389
+ */
1390
+ id: string;
1391
+ }
1392
+ export interface GetProviderIntegrationAuthorizationEnvironmentArgs {
1393
+ /**
1394
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
1395
+ */
1396
+ id: pulumi.Input<string>;
1397
+ }
1374
1398
  export interface GetProviderIntegrationEnvironment {
1375
1399
  /**
1376
1400
  * The ID of the Environment that the Provider Integration belongs to, for example, `env-xyz456`.
@@ -1387,6 +1411,18 @@ export interface GetProviderIntegrationEnvironmentArgs {
1387
1411
  */
1388
1412
  id: pulumi.Input<string>;
1389
1413
  }
1414
+ export interface GetProviderIntegrationSetupEnvironment {
1415
+ /**
1416
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
1417
+ */
1418
+ id: string;
1419
+ }
1420
+ export interface GetProviderIntegrationSetupEnvironmentArgs {
1421
+ /**
1422
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
1423
+ */
1424
+ id: pulumi.Input<string>;
1425
+ }
1390
1426
  export interface GetSchemaCredentials {
1391
1427
  /**
1392
1428
  * The Schema Registry API Key.
@@ -2590,6 +2626,34 @@ export interface PrivateLinkAttachmentGcp {
2590
2626
  */
2591
2627
  privateServiceConnectServiceAttachment?: pulumi.Input<string>;
2592
2628
  }
2629
+ export interface ProviderIntegrationAuthorizationAzure {
2630
+ /**
2631
+ * (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
2632
+ */
2633
+ confluentMultiTenantAppId?: pulumi.Input<string>;
2634
+ /**
2635
+ * Customer's Azure Tenant ID.
2636
+ */
2637
+ customerAzureTenantId: pulumi.Input<string>;
2638
+ }
2639
+ export interface ProviderIntegrationAuthorizationEnvironment {
2640
+ /**
2641
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
2642
+ */
2643
+ id: pulumi.Input<string>;
2644
+ }
2645
+ export interface ProviderIntegrationAuthorizationGcp {
2646
+ /**
2647
+ * Customer's Google Service Account that Confluent Cloud impersonates.
2648
+ *
2649
+ * > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
2650
+ */
2651
+ customerGoogleServiceAccount: pulumi.Input<string>;
2652
+ /**
2653
+ * (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
2654
+ */
2655
+ googleServiceAccount?: pulumi.Input<string>;
2656
+ }
2593
2657
  export interface ProviderIntegrationAws {
2594
2658
  /**
2595
2659
  * Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account.
@@ -2614,6 +2678,12 @@ export interface ProviderIntegrationEnvironment {
2614
2678
  */
2615
2679
  id: pulumi.Input<string>;
2616
2680
  }
2681
+ export interface ProviderIntegrationSetupEnvironment {
2682
+ /**
2683
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
2684
+ */
2685
+ id: pulumi.Input<string>;
2686
+ }
2617
2687
  export interface ProviderOauth {
2618
2688
  /**
2619
2689
  * OAuth existing static access token already fetched from external Identity Provider.
package/types/output.d.ts CHANGED
@@ -1194,6 +1194,158 @@ export interface GetKafkaClusterNetwork {
1194
1194
  }
1195
1195
  export interface GetKafkaClusterStandard {
1196
1196
  }
1197
+ export interface GetKafkaClustersCluster {
1198
+ /**
1199
+ * (Required String) An API Version of the schema version of the Kafka cluster, for example, `cmk/v2`.
1200
+ */
1201
+ apiVersion: string;
1202
+ /**
1203
+ * (Required String) The availability zone configuration of the Kafka cluster. Accepted values are: `SINGLE_ZONE`, `MULTI_ZONE`, `LOW`, and `HIGH`.
1204
+ */
1205
+ availability: string;
1206
+ /**
1207
+ * (Optional Configuration Block) The configuration of the Basic Kafka cluster.
1208
+ */
1209
+ basics?: outputs.GetKafkaClustersClusterBasic[];
1210
+ /**
1211
+ * (Required String) The bootstrap endpoint used by Kafka clients to connect to the cluster (for example, `lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:9092`).
1212
+ */
1213
+ bootstrapEndpoint: string;
1214
+ /**
1215
+ * (Optional Configuration Block) supports the following:
1216
+ */
1217
+ byokKeys: outputs.GetKafkaClustersClusterByokKey[];
1218
+ /**
1219
+ * (Required String) The cloud service provider that runs the Kafka cluster. Accepted values are: `AWS`, `AZURE`, and `GCP`.
1220
+ */
1221
+ cloud: string;
1222
+ /**
1223
+ * (Optional Configuration Block) The configuration of the Dedicated Kafka cluster. It supports the following:
1224
+ */
1225
+ dedicated?: outputs.GetKafkaClustersClusterDedicated;
1226
+ /**
1227
+ * (Required String) The name of the Kafka cluster.
1228
+ */
1229
+ displayName: string;
1230
+ /**
1231
+ * (Optional List) The list of endpoints for connecting to the Kafka cluster. These endpoints provide different network access methods or regions for connecting to the cluster:
1232
+ */
1233
+ endpoints: outputs.GetKafkaClustersClusterEndpoint[];
1234
+ /**
1235
+ * (Optional Configuration Block) The configuration of the Enterprise Kafka cluster.
1236
+ */
1237
+ enterprises?: outputs.GetKafkaClustersClusterEnterprise[];
1238
+ /**
1239
+ * (Required Object) exports the following attributes:
1240
+ */
1241
+ environment: outputs.GetKafkaClustersClusterEnvironment;
1242
+ /**
1243
+ * (Optional Configuration Block) The configuration of the Freight Kafka cluster.
1244
+ */
1245
+ freights?: outputs.GetKafkaClustersClusterFreight[];
1246
+ /**
1247
+ * (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
1248
+ */
1249
+ id: string;
1250
+ /**
1251
+ * (Required String) A kind of the Kafka cluster, for example, `Cluster`.
1252
+ */
1253
+ kind: string;
1254
+ /**
1255
+ * (Optional Configuration Block) supports the following:
1256
+ */
1257
+ networks: outputs.GetKafkaClustersClusterNetwork[];
1258
+ /**
1259
+ * (Required String) The Confluent Resource Name of the Kafka cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/cloud-cluster=lkc-abc123`.
1260
+ */
1261
+ rbacCrn: string;
1262
+ /**
1263
+ * (Required String) The cloud service provider region where the Kafka cluster is running, for example, `us-west-2`. See [Cloud Providers and Regions](https://docs.confluent.io/cloud/current/clusters/regions.html#cloud-providers-and-regions) for a full list of options for AWS, Azure, and GCP.
1264
+ */
1265
+ region: string;
1266
+ /**
1267
+ * (Required String) The REST endpoint of the Kafka cluster (for example, `https://lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:443`).
1268
+ */
1269
+ restEndpoint: string;
1270
+ /**
1271
+ * (Optional Configuration Block) The configuration of the Standard Kafka cluster.
1272
+ */
1273
+ standards?: outputs.GetKafkaClustersClusterStandard[];
1274
+ }
1275
+ export interface GetKafkaClustersClusterBasic {
1276
+ }
1277
+ export interface GetKafkaClustersClusterByokKey {
1278
+ /**
1279
+ * (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
1280
+ */
1281
+ id: string;
1282
+ }
1283
+ export interface GetKafkaClustersClusterDedicated {
1284
+ /**
1285
+ * (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 `2` CKUs or more.
1286
+ */
1287
+ cku: number;
1288
+ /**
1289
+ * The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
1290
+ */
1291
+ encryptionKey: string;
1292
+ /**
1293
+ * (Required List of String) The list of zones the cluster is in.
1294
+ * - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
1295
+ * - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
1296
+ * - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
1297
+ */
1298
+ zones: string[];
1299
+ }
1300
+ export interface GetKafkaClustersClusterEndpoint {
1301
+ /**
1302
+ * (Required String) The ID of the Access Point that the endpoint corresponds to. Access Point IDs `PUBLIC` and `PRIVATE_LINK` are reserved.
1303
+ */
1304
+ accessPointId: string;
1305
+ /**
1306
+ * (Required String) The bootstrap endpoint used by Kafka clients to connect to the cluster (for example, `lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:9092`).
1307
+ */
1308
+ bootstrapEndpoint: string;
1309
+ /**
1310
+ * (Required String) The type of connection used for the endpoint (for example, `PRIVATE_NETWORK_INTERFACE`).
1311
+ */
1312
+ connectionType: string;
1313
+ /**
1314
+ * (Required String) The REST endpoint of the Kafka cluster (for example, `https://lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:443`).
1315
+ */
1316
+ restEndpoint: string;
1317
+ }
1318
+ export interface GetKafkaClustersClusterEnterprise {
1319
+ }
1320
+ export interface GetKafkaClustersClusterEnvironment {
1321
+ /**
1322
+ * The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
1323
+ */
1324
+ id: string;
1325
+ }
1326
+ export interface GetKafkaClustersClusterFreight {
1327
+ /**
1328
+ * (Required List of String) The list of zones the cluster is in.
1329
+ * - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
1330
+ * - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
1331
+ * - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
1332
+ */
1333
+ zones: string[];
1334
+ }
1335
+ export interface GetKafkaClustersClusterNetwork {
1336
+ /**
1337
+ * (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
1338
+ */
1339
+ id: string;
1340
+ }
1341
+ export interface GetKafkaClustersClusterStandard {
1342
+ }
1343
+ export interface GetKafkaClustersEnvironment {
1344
+ /**
1345
+ * The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
1346
+ */
1347
+ id: string;
1348
+ }
1197
1349
  export interface GetKafkaTopicCredentials {
1198
1350
  /**
1199
1351
  * The Kafka API Key.
@@ -1492,6 +1644,32 @@ export interface GetPrivateLinkAttachmentGcp {
1492
1644
  */
1493
1645
  privateServiceConnectServiceAttachment: string;
1494
1646
  }
1647
+ export interface GetProviderIntegrationAuthorizationAzure {
1648
+ /**
1649
+ * (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
1650
+ */
1651
+ confluentMultiTenantAppId: string;
1652
+ /**
1653
+ * (Computed String) Customer's Azure Tenant ID.
1654
+ */
1655
+ customerAzureTenantId: string;
1656
+ }
1657
+ export interface GetProviderIntegrationAuthorizationEnvironment {
1658
+ /**
1659
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
1660
+ */
1661
+ id: string;
1662
+ }
1663
+ export interface GetProviderIntegrationAuthorizationGcp {
1664
+ /**
1665
+ * (Computed String) Customer's Google Service Account that Confluent Cloud impersonates.
1666
+ */
1667
+ customerGoogleServiceAccount: string;
1668
+ /**
1669
+ * (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
1670
+ */
1671
+ googleServiceAccount: string;
1672
+ }
1495
1673
  export interface GetProviderIntegrationAw {
1496
1674
  /**
1497
1675
  * (Required String) Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account, and must be unique in the same environment.
@@ -1514,6 +1692,12 @@ export interface GetProviderIntegrationEnvironment {
1514
1692
  */
1515
1693
  id: string;
1516
1694
  }
1695
+ export interface GetProviderIntegrationSetupEnvironment {
1696
+ /**
1697
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
1698
+ */
1699
+ id: string;
1700
+ }
1517
1701
  export interface GetSchemaCredentials {
1518
1702
  /**
1519
1703
  * The Schema Registry API Key.
@@ -2535,6 +2719,34 @@ export interface PrivateLinkAttachmentGcp {
2535
2719
  */
2536
2720
  privateServiceConnectServiceAttachment: string;
2537
2721
  }
2722
+ export interface ProviderIntegrationAuthorizationAzure {
2723
+ /**
2724
+ * (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
2725
+ */
2726
+ confluentMultiTenantAppId: string;
2727
+ /**
2728
+ * Customer's Azure Tenant ID.
2729
+ */
2730
+ customerAzureTenantId: string;
2731
+ }
2732
+ export interface ProviderIntegrationAuthorizationEnvironment {
2733
+ /**
2734
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
2735
+ */
2736
+ id: string;
2737
+ }
2738
+ export interface ProviderIntegrationAuthorizationGcp {
2739
+ /**
2740
+ * Customer's Google Service Account that Confluent Cloud impersonates.
2741
+ *
2742
+ * > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
2743
+ */
2744
+ customerGoogleServiceAccount: string;
2745
+ /**
2746
+ * (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
2747
+ */
2748
+ googleServiceAccount: string;
2749
+ }
2538
2750
  export interface ProviderIntegrationAws {
2539
2751
  /**
2540
2752
  * Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account.
@@ -2559,6 +2771,12 @@ export interface ProviderIntegrationEnvironment {
2559
2771
  */
2560
2772
  id: string;
2561
2773
  }
2774
+ export interface ProviderIntegrationSetupEnvironment {
2775
+ /**
2776
+ * The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
2777
+ */
2778
+ id: string;
2779
+ }
2562
2780
  export interface SchemaCredentials {
2563
2781
  /**
2564
2782
  * The Schema Registry API Key.