pulumi-confluentcloud 2.49.0a1761362905__py3-none-any.whl → 2.50.0__py3-none-any.whl

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.
@@ -141,8 +141,12 @@ __all__ = [
141
141
  'PrivateLinkAttachmentConnectionPrivateLinkAttachment',
142
142
  'PrivateLinkAttachmentEnvironment',
143
143
  'PrivateLinkAttachmentGcp',
144
+ 'ProviderIntegrationAuthorizationAzure',
145
+ 'ProviderIntegrationAuthorizationEnvironment',
146
+ 'ProviderIntegrationAuthorizationGcp',
144
147
  'ProviderIntegrationAws',
145
148
  'ProviderIntegrationEnvironment',
149
+ 'ProviderIntegrationSetupEnvironment',
146
150
  'SchemaCredentials',
147
151
  'SchemaExporterCredentials',
148
152
  'SchemaExporterDestinationSchemaRegistryCluster',
@@ -240,6 +244,17 @@ __all__ = [
240
244
  'GetKafkaClusterFreightResult',
241
245
  'GetKafkaClusterNetworkResult',
242
246
  'GetKafkaClusterStandardResult',
247
+ 'GetKafkaClustersClusterResult',
248
+ 'GetKafkaClustersClusterBasicResult',
249
+ 'GetKafkaClustersClusterByokKeyResult',
250
+ 'GetKafkaClustersClusterDedicatedResult',
251
+ 'GetKafkaClustersClusterEndpointResult',
252
+ 'GetKafkaClustersClusterEnterpriseResult',
253
+ 'GetKafkaClustersClusterEnvironmentResult',
254
+ 'GetKafkaClustersClusterFreightResult',
255
+ 'GetKafkaClustersClusterNetworkResult',
256
+ 'GetKafkaClustersClusterStandardResult',
257
+ 'GetKafkaClustersEnvironmentResult',
243
258
  'GetKafkaTopicCredentialsResult',
244
259
  'GetKafkaTopicKafkaClusterResult',
245
260
  'GetKsqlClusterCredentialIdentityResult',
@@ -277,8 +292,12 @@ __all__ = [
277
292
  'GetPrivateLinkAttachmentConnectionPrivateLinkAttachmentResult',
278
293
  'GetPrivateLinkAttachmentEnvironmentResult',
279
294
  'GetPrivateLinkAttachmentGcpResult',
295
+ 'GetProviderIntegrationAuthorizationAzureResult',
296
+ 'GetProviderIntegrationAuthorizationEnvironmentResult',
297
+ 'GetProviderIntegrationAuthorizationGcpResult',
280
298
  'GetProviderIntegrationAwResult',
281
299
  'GetProviderIntegrationEnvironmentResult',
300
+ 'GetProviderIntegrationSetupEnvironmentResult',
282
301
  'GetSchemaCredentialsResult',
283
302
  'GetSchemaMetadataResult',
284
303
  'GetSchemaMetadataTagResult',
@@ -4330,6 +4349,126 @@ class PrivateLinkAttachmentGcp(dict):
4330
4349
  return pulumi.get(self, "private_service_connect_service_attachment")
4331
4350
 
4332
4351
 
4352
+ @pulumi.output_type
4353
+ class ProviderIntegrationAuthorizationAzure(dict):
4354
+ @staticmethod
4355
+ def __key_warning(key: str):
4356
+ suggest = None
4357
+ if key == "customerAzureTenantId":
4358
+ suggest = "customer_azure_tenant_id"
4359
+ elif key == "confluentMultiTenantAppId":
4360
+ suggest = "confluent_multi_tenant_app_id"
4361
+
4362
+ if suggest:
4363
+ pulumi.log.warn(f"Key '{key}' not found in ProviderIntegrationAuthorizationAzure. Access the value via the '{suggest}' property getter instead.")
4364
+
4365
+ def __getitem__(self, key: str) -> Any:
4366
+ ProviderIntegrationAuthorizationAzure.__key_warning(key)
4367
+ return super().__getitem__(key)
4368
+
4369
+ def get(self, key: str, default = None) -> Any:
4370
+ ProviderIntegrationAuthorizationAzure.__key_warning(key)
4371
+ return super().get(key, default)
4372
+
4373
+ def __init__(__self__, *,
4374
+ customer_azure_tenant_id: _builtins.str,
4375
+ confluent_multi_tenant_app_id: Optional[_builtins.str] = None):
4376
+ """
4377
+ :param _builtins.str customer_azure_tenant_id: Customer's Azure Tenant ID.
4378
+ :param _builtins.str confluent_multi_tenant_app_id: (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
4379
+ """
4380
+ pulumi.set(__self__, "customer_azure_tenant_id", customer_azure_tenant_id)
4381
+ if confluent_multi_tenant_app_id is not None:
4382
+ pulumi.set(__self__, "confluent_multi_tenant_app_id", confluent_multi_tenant_app_id)
4383
+
4384
+ @_builtins.property
4385
+ @pulumi.getter(name="customerAzureTenantId")
4386
+ def customer_azure_tenant_id(self) -> _builtins.str:
4387
+ """
4388
+ Customer's Azure Tenant ID.
4389
+ """
4390
+ return pulumi.get(self, "customer_azure_tenant_id")
4391
+
4392
+ @_builtins.property
4393
+ @pulumi.getter(name="confluentMultiTenantAppId")
4394
+ def confluent_multi_tenant_app_id(self) -> Optional[_builtins.str]:
4395
+ """
4396
+ (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
4397
+ """
4398
+ return pulumi.get(self, "confluent_multi_tenant_app_id")
4399
+
4400
+
4401
+ @pulumi.output_type
4402
+ class ProviderIntegrationAuthorizationEnvironment(dict):
4403
+ def __init__(__self__, *,
4404
+ id: _builtins.str):
4405
+ """
4406
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4407
+ """
4408
+ pulumi.set(__self__, "id", id)
4409
+
4410
+ @_builtins.property
4411
+ @pulumi.getter
4412
+ def id(self) -> _builtins.str:
4413
+ """
4414
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4415
+ """
4416
+ return pulumi.get(self, "id")
4417
+
4418
+
4419
+ @pulumi.output_type
4420
+ class ProviderIntegrationAuthorizationGcp(dict):
4421
+ @staticmethod
4422
+ def __key_warning(key: str):
4423
+ suggest = None
4424
+ if key == "customerGoogleServiceAccount":
4425
+ suggest = "customer_google_service_account"
4426
+ elif key == "googleServiceAccount":
4427
+ suggest = "google_service_account"
4428
+
4429
+ if suggest:
4430
+ pulumi.log.warn(f"Key '{key}' not found in ProviderIntegrationAuthorizationGcp. Access the value via the '{suggest}' property getter instead.")
4431
+
4432
+ def __getitem__(self, key: str) -> Any:
4433
+ ProviderIntegrationAuthorizationGcp.__key_warning(key)
4434
+ return super().__getitem__(key)
4435
+
4436
+ def get(self, key: str, default = None) -> Any:
4437
+ ProviderIntegrationAuthorizationGcp.__key_warning(key)
4438
+ return super().get(key, default)
4439
+
4440
+ def __init__(__self__, *,
4441
+ customer_google_service_account: _builtins.str,
4442
+ google_service_account: Optional[_builtins.str] = None):
4443
+ """
4444
+ :param _builtins.str customer_google_service_account: Customer's Google Service Account that Confluent Cloud impersonates.
4445
+
4446
+ > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
4447
+ :param _builtins.str google_service_account: (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
4448
+ """
4449
+ pulumi.set(__self__, "customer_google_service_account", customer_google_service_account)
4450
+ if google_service_account is not None:
4451
+ pulumi.set(__self__, "google_service_account", google_service_account)
4452
+
4453
+ @_builtins.property
4454
+ @pulumi.getter(name="customerGoogleServiceAccount")
4455
+ def customer_google_service_account(self) -> _builtins.str:
4456
+ """
4457
+ Customer's Google Service Account that Confluent Cloud impersonates.
4458
+
4459
+ > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
4460
+ """
4461
+ return pulumi.get(self, "customer_google_service_account")
4462
+
4463
+ @_builtins.property
4464
+ @pulumi.getter(name="googleServiceAccount")
4465
+ def google_service_account(self) -> Optional[_builtins.str]:
4466
+ """
4467
+ (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
4468
+ """
4469
+ return pulumi.get(self, "google_service_account")
4470
+
4471
+
4333
4472
  @pulumi.output_type
4334
4473
  class ProviderIntegrationAws(dict):
4335
4474
  @staticmethod
@@ -4419,6 +4558,24 @@ class ProviderIntegrationEnvironment(dict):
4419
4558
  return pulumi.get(self, "id")
4420
4559
 
4421
4560
 
4561
+ @pulumi.output_type
4562
+ class ProviderIntegrationSetupEnvironment(dict):
4563
+ def __init__(__self__, *,
4564
+ id: _builtins.str):
4565
+ """
4566
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4567
+ """
4568
+ pulumi.set(__self__, "id", id)
4569
+
4570
+ @_builtins.property
4571
+ @pulumi.getter
4572
+ def id(self) -> _builtins.str:
4573
+ """
4574
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4575
+ """
4576
+ return pulumi.get(self, "id")
4577
+
4578
+
4422
4579
  @pulumi.output_type
4423
4580
  class SchemaCredentials(dict):
4424
4581
  def __init__(__self__, *,
@@ -7292,6 +7449,438 @@ class GetKafkaClusterStandardResult(dict):
7292
7449
  pass
7293
7450
 
7294
7451
 
7452
+ @pulumi.output_type
7453
+ class GetKafkaClustersClusterResult(dict):
7454
+ def __init__(__self__, *,
7455
+ api_version: _builtins.str,
7456
+ availability: _builtins.str,
7457
+ bootstrap_endpoint: _builtins.str,
7458
+ byok_keys: Sequence['outputs.GetKafkaClustersClusterByokKeyResult'],
7459
+ cloud: _builtins.str,
7460
+ display_name: _builtins.str,
7461
+ endpoints: Sequence['outputs.GetKafkaClustersClusterEndpointResult'],
7462
+ environment: 'outputs.GetKafkaClustersClusterEnvironmentResult',
7463
+ id: _builtins.str,
7464
+ kind: _builtins.str,
7465
+ networks: Sequence['outputs.GetKafkaClustersClusterNetworkResult'],
7466
+ rbac_crn: _builtins.str,
7467
+ region: _builtins.str,
7468
+ rest_endpoint: _builtins.str,
7469
+ basics: Optional[Sequence['outputs.GetKafkaClustersClusterBasicResult']] = None,
7470
+ dedicated: Optional['outputs.GetKafkaClustersClusterDedicatedResult'] = None,
7471
+ enterprises: Optional[Sequence['outputs.GetKafkaClustersClusterEnterpriseResult']] = None,
7472
+ freights: Optional[Sequence['outputs.GetKafkaClustersClusterFreightResult']] = None,
7473
+ standards: Optional[Sequence['outputs.GetKafkaClustersClusterStandardResult']] = None):
7474
+ """
7475
+ :param _builtins.str api_version: (Required String) An API Version of the schema version of the Kafka cluster, for example, `cmk/v2`.
7476
+ :param _builtins.str availability: (Required String) The availability zone configuration of the Kafka cluster. Accepted values are: `SINGLE_ZONE`, `MULTI_ZONE`, `LOW`, and `HIGH`.
7477
+ :param _builtins.str bootstrap_endpoint: (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`).
7478
+ :param Sequence['GetKafkaClustersClusterByokKeyArgs'] byok_keys: (Optional Configuration Block) supports the following:
7479
+ :param _builtins.str cloud: (Required String) The cloud service provider that runs the Kafka cluster. Accepted values are: `AWS`, `AZURE`, and `GCP`.
7480
+ :param _builtins.str display_name: (Required String) The name of the Kafka cluster.
7481
+ :param Sequence['GetKafkaClustersClusterEndpointArgs'] endpoints: (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:
7482
+ :param 'GetKafkaClustersClusterEnvironmentArgs' environment: (Required Object) exports the following attributes:
7483
+ :param _builtins.str id: (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
7484
+ :param _builtins.str kind: (Required String) A kind of the Kafka cluster, for example, `Cluster`.
7485
+ :param Sequence['GetKafkaClustersClusterNetworkArgs'] networks: (Optional Configuration Block) supports the following:
7486
+ :param _builtins.str rbac_crn: (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`.
7487
+ :param _builtins.str region: (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.
7488
+ :param _builtins.str rest_endpoint: (Required String) The REST endpoint of the Kafka cluster (for example, `https://lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:443`).
7489
+ :param Sequence['GetKafkaClustersClusterBasicArgs'] basics: (Optional Configuration Block) The configuration of the Basic Kafka cluster.
7490
+ :param 'GetKafkaClustersClusterDedicatedArgs' dedicated: (Optional Configuration Block) The configuration of the Dedicated Kafka cluster. It supports the following:
7491
+ :param Sequence['GetKafkaClustersClusterEnterpriseArgs'] enterprises: (Optional Configuration Block) The configuration of the Enterprise Kafka cluster.
7492
+ :param Sequence['GetKafkaClustersClusterFreightArgs'] freights: (Optional Configuration Block) The configuration of the Freight Kafka cluster.
7493
+ :param Sequence['GetKafkaClustersClusterStandardArgs'] standards: (Optional Configuration Block) The configuration of the Standard Kafka cluster.
7494
+ """
7495
+ pulumi.set(__self__, "api_version", api_version)
7496
+ pulumi.set(__self__, "availability", availability)
7497
+ pulumi.set(__self__, "bootstrap_endpoint", bootstrap_endpoint)
7498
+ pulumi.set(__self__, "byok_keys", byok_keys)
7499
+ pulumi.set(__self__, "cloud", cloud)
7500
+ pulumi.set(__self__, "display_name", display_name)
7501
+ pulumi.set(__self__, "endpoints", endpoints)
7502
+ pulumi.set(__self__, "environment", environment)
7503
+ pulumi.set(__self__, "id", id)
7504
+ pulumi.set(__self__, "kind", kind)
7505
+ pulumi.set(__self__, "networks", networks)
7506
+ pulumi.set(__self__, "rbac_crn", rbac_crn)
7507
+ pulumi.set(__self__, "region", region)
7508
+ pulumi.set(__self__, "rest_endpoint", rest_endpoint)
7509
+ if basics is not None:
7510
+ pulumi.set(__self__, "basics", basics)
7511
+ if dedicated is not None:
7512
+ pulumi.set(__self__, "dedicated", dedicated)
7513
+ if enterprises is not None:
7514
+ pulumi.set(__self__, "enterprises", enterprises)
7515
+ if freights is not None:
7516
+ pulumi.set(__self__, "freights", freights)
7517
+ if standards is not None:
7518
+ pulumi.set(__self__, "standards", standards)
7519
+
7520
+ @_builtins.property
7521
+ @pulumi.getter(name="apiVersion")
7522
+ def api_version(self) -> _builtins.str:
7523
+ """
7524
+ (Required String) An API Version of the schema version of the Kafka cluster, for example, `cmk/v2`.
7525
+ """
7526
+ return pulumi.get(self, "api_version")
7527
+
7528
+ @_builtins.property
7529
+ @pulumi.getter
7530
+ def availability(self) -> _builtins.str:
7531
+ """
7532
+ (Required String) The availability zone configuration of the Kafka cluster. Accepted values are: `SINGLE_ZONE`, `MULTI_ZONE`, `LOW`, and `HIGH`.
7533
+ """
7534
+ return pulumi.get(self, "availability")
7535
+
7536
+ @_builtins.property
7537
+ @pulumi.getter(name="bootstrapEndpoint")
7538
+ def bootstrap_endpoint(self) -> _builtins.str:
7539
+ """
7540
+ (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`).
7541
+ """
7542
+ return pulumi.get(self, "bootstrap_endpoint")
7543
+
7544
+ @_builtins.property
7545
+ @pulumi.getter(name="byokKeys")
7546
+ def byok_keys(self) -> Sequence['outputs.GetKafkaClustersClusterByokKeyResult']:
7547
+ """
7548
+ (Optional Configuration Block) supports the following:
7549
+ """
7550
+ return pulumi.get(self, "byok_keys")
7551
+
7552
+ @_builtins.property
7553
+ @pulumi.getter
7554
+ def cloud(self) -> _builtins.str:
7555
+ """
7556
+ (Required String) The cloud service provider that runs the Kafka cluster. Accepted values are: `AWS`, `AZURE`, and `GCP`.
7557
+ """
7558
+ return pulumi.get(self, "cloud")
7559
+
7560
+ @_builtins.property
7561
+ @pulumi.getter(name="displayName")
7562
+ def display_name(self) -> _builtins.str:
7563
+ """
7564
+ (Required String) The name of the Kafka cluster.
7565
+ """
7566
+ return pulumi.get(self, "display_name")
7567
+
7568
+ @_builtins.property
7569
+ @pulumi.getter
7570
+ def endpoints(self) -> Sequence['outputs.GetKafkaClustersClusterEndpointResult']:
7571
+ """
7572
+ (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:
7573
+ """
7574
+ return pulumi.get(self, "endpoints")
7575
+
7576
+ @_builtins.property
7577
+ @pulumi.getter
7578
+ def environment(self) -> 'outputs.GetKafkaClustersClusterEnvironmentResult':
7579
+ """
7580
+ (Required Object) exports the following attributes:
7581
+ """
7582
+ return pulumi.get(self, "environment")
7583
+
7584
+ @_builtins.property
7585
+ @pulumi.getter
7586
+ def id(self) -> _builtins.str:
7587
+ """
7588
+ (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
7589
+ """
7590
+ return pulumi.get(self, "id")
7591
+
7592
+ @_builtins.property
7593
+ @pulumi.getter
7594
+ def kind(self) -> _builtins.str:
7595
+ """
7596
+ (Required String) A kind of the Kafka cluster, for example, `Cluster`.
7597
+ """
7598
+ return pulumi.get(self, "kind")
7599
+
7600
+ @_builtins.property
7601
+ @pulumi.getter
7602
+ def networks(self) -> Sequence['outputs.GetKafkaClustersClusterNetworkResult']:
7603
+ """
7604
+ (Optional Configuration Block) supports the following:
7605
+ """
7606
+ return pulumi.get(self, "networks")
7607
+
7608
+ @_builtins.property
7609
+ @pulumi.getter(name="rbacCrn")
7610
+ def rbac_crn(self) -> _builtins.str:
7611
+ """
7612
+ (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`.
7613
+ """
7614
+ return pulumi.get(self, "rbac_crn")
7615
+
7616
+ @_builtins.property
7617
+ @pulumi.getter
7618
+ def region(self) -> _builtins.str:
7619
+ """
7620
+ (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.
7621
+ """
7622
+ return pulumi.get(self, "region")
7623
+
7624
+ @_builtins.property
7625
+ @pulumi.getter(name="restEndpoint")
7626
+ def rest_endpoint(self) -> _builtins.str:
7627
+ """
7628
+ (Required String) The REST endpoint of the Kafka cluster (for example, `https://lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:443`).
7629
+ """
7630
+ return pulumi.get(self, "rest_endpoint")
7631
+
7632
+ @_builtins.property
7633
+ @pulumi.getter
7634
+ def basics(self) -> Optional[Sequence['outputs.GetKafkaClustersClusterBasicResult']]:
7635
+ """
7636
+ (Optional Configuration Block) The configuration of the Basic Kafka cluster.
7637
+ """
7638
+ return pulumi.get(self, "basics")
7639
+
7640
+ @_builtins.property
7641
+ @pulumi.getter
7642
+ def dedicated(self) -> Optional['outputs.GetKafkaClustersClusterDedicatedResult']:
7643
+ """
7644
+ (Optional Configuration Block) The configuration of the Dedicated Kafka cluster. It supports the following:
7645
+ """
7646
+ return pulumi.get(self, "dedicated")
7647
+
7648
+ @_builtins.property
7649
+ @pulumi.getter
7650
+ def enterprises(self) -> Optional[Sequence['outputs.GetKafkaClustersClusterEnterpriseResult']]:
7651
+ """
7652
+ (Optional Configuration Block) The configuration of the Enterprise Kafka cluster.
7653
+ """
7654
+ return pulumi.get(self, "enterprises")
7655
+
7656
+ @_builtins.property
7657
+ @pulumi.getter
7658
+ def freights(self) -> Optional[Sequence['outputs.GetKafkaClustersClusterFreightResult']]:
7659
+ """
7660
+ (Optional Configuration Block) The configuration of the Freight Kafka cluster.
7661
+ """
7662
+ return pulumi.get(self, "freights")
7663
+
7664
+ @_builtins.property
7665
+ @pulumi.getter
7666
+ def standards(self) -> Optional[Sequence['outputs.GetKafkaClustersClusterStandardResult']]:
7667
+ """
7668
+ (Optional Configuration Block) The configuration of the Standard Kafka cluster.
7669
+ """
7670
+ return pulumi.get(self, "standards")
7671
+
7672
+
7673
+ @pulumi.output_type
7674
+ class GetKafkaClustersClusterBasicResult(dict):
7675
+ def __init__(__self__):
7676
+ pass
7677
+
7678
+
7679
+ @pulumi.output_type
7680
+ class GetKafkaClustersClusterByokKeyResult(dict):
7681
+ def __init__(__self__, *,
7682
+ id: _builtins.str):
7683
+ """
7684
+ :param _builtins.str id: (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
7685
+ """
7686
+ pulumi.set(__self__, "id", id)
7687
+
7688
+ @_builtins.property
7689
+ @pulumi.getter
7690
+ def id(self) -> _builtins.str:
7691
+ """
7692
+ (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
7693
+ """
7694
+ return pulumi.get(self, "id")
7695
+
7696
+
7697
+ @pulumi.output_type
7698
+ class GetKafkaClustersClusterDedicatedResult(dict):
7699
+ def __init__(__self__, *,
7700
+ cku: _builtins.int,
7701
+ encryption_key: _builtins.str,
7702
+ zones: Sequence[_builtins.str]):
7703
+ """
7704
+ :param _builtins.int cku: (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.
7705
+ :param _builtins.str encryption_key: The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
7706
+ :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
7707
+ - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
7708
+ - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
7709
+ - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
7710
+ """
7711
+ pulumi.set(__self__, "cku", cku)
7712
+ pulumi.set(__self__, "encryption_key", encryption_key)
7713
+ pulumi.set(__self__, "zones", zones)
7714
+
7715
+ @_builtins.property
7716
+ @pulumi.getter
7717
+ def cku(self) -> _builtins.int:
7718
+ """
7719
+ (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.
7720
+ """
7721
+ return pulumi.get(self, "cku")
7722
+
7723
+ @_builtins.property
7724
+ @pulumi.getter(name="encryptionKey")
7725
+ def encryption_key(self) -> _builtins.str:
7726
+ """
7727
+ The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
7728
+ """
7729
+ return pulumi.get(self, "encryption_key")
7730
+
7731
+ @_builtins.property
7732
+ @pulumi.getter
7733
+ def zones(self) -> Sequence[_builtins.str]:
7734
+ """
7735
+ (Required List of String) The list of zones the cluster is in.
7736
+ - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
7737
+ - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
7738
+ - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
7739
+ """
7740
+ return pulumi.get(self, "zones")
7741
+
7742
+
7743
+ @pulumi.output_type
7744
+ class GetKafkaClustersClusterEndpointResult(dict):
7745
+ def __init__(__self__, *,
7746
+ access_point_id: _builtins.str,
7747
+ bootstrap_endpoint: _builtins.str,
7748
+ connection_type: _builtins.str,
7749
+ rest_endpoint: _builtins.str):
7750
+ """
7751
+ :param _builtins.str access_point_id: (Required String) The ID of the Access Point that the endpoint corresponds to. Access Point IDs `PUBLIC` and `PRIVATE_LINK` are reserved.
7752
+ :param _builtins.str bootstrap_endpoint: (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`).
7753
+ :param _builtins.str connection_type: (Required String) The type of connection used for the endpoint (for example, `PRIVATE_NETWORK_INTERFACE`).
7754
+ :param _builtins.str rest_endpoint: (Required String) The REST endpoint of the Kafka cluster (for example, `https://lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:443`).
7755
+ """
7756
+ pulumi.set(__self__, "access_point_id", access_point_id)
7757
+ pulumi.set(__self__, "bootstrap_endpoint", bootstrap_endpoint)
7758
+ pulumi.set(__self__, "connection_type", connection_type)
7759
+ pulumi.set(__self__, "rest_endpoint", rest_endpoint)
7760
+
7761
+ @_builtins.property
7762
+ @pulumi.getter(name="accessPointId")
7763
+ def access_point_id(self) -> _builtins.str:
7764
+ """
7765
+ (Required String) The ID of the Access Point that the endpoint corresponds to. Access Point IDs `PUBLIC` and `PRIVATE_LINK` are reserved.
7766
+ """
7767
+ return pulumi.get(self, "access_point_id")
7768
+
7769
+ @_builtins.property
7770
+ @pulumi.getter(name="bootstrapEndpoint")
7771
+ def bootstrap_endpoint(self) -> _builtins.str:
7772
+ """
7773
+ (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`).
7774
+ """
7775
+ return pulumi.get(self, "bootstrap_endpoint")
7776
+
7777
+ @_builtins.property
7778
+ @pulumi.getter(name="connectionType")
7779
+ def connection_type(self) -> _builtins.str:
7780
+ """
7781
+ (Required String) The type of connection used for the endpoint (for example, `PRIVATE_NETWORK_INTERFACE`).
7782
+ """
7783
+ return pulumi.get(self, "connection_type")
7784
+
7785
+ @_builtins.property
7786
+ @pulumi.getter(name="restEndpoint")
7787
+ def rest_endpoint(self) -> _builtins.str:
7788
+ """
7789
+ (Required String) The REST endpoint of the Kafka cluster (for example, `https://lkc-abc123-apfoo123.eu-west-3.aws.accesspoint.glb.confluent.cloud:443`).
7790
+ """
7791
+ return pulumi.get(self, "rest_endpoint")
7792
+
7793
+
7794
+ @pulumi.output_type
7795
+ class GetKafkaClustersClusterEnterpriseResult(dict):
7796
+ def __init__(__self__):
7797
+ pass
7798
+
7799
+
7800
+ @pulumi.output_type
7801
+ class GetKafkaClustersClusterEnvironmentResult(dict):
7802
+ def __init__(__self__, *,
7803
+ id: _builtins.str):
7804
+ """
7805
+ :param _builtins.str id: The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
7806
+ """
7807
+ pulumi.set(__self__, "id", id)
7808
+
7809
+ @_builtins.property
7810
+ @pulumi.getter
7811
+ def id(self) -> _builtins.str:
7812
+ """
7813
+ The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
7814
+ """
7815
+ return pulumi.get(self, "id")
7816
+
7817
+
7818
+ @pulumi.output_type
7819
+ class GetKafkaClustersClusterFreightResult(dict):
7820
+ def __init__(__self__, *,
7821
+ zones: Sequence[_builtins.str]):
7822
+ """
7823
+ :param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
7824
+ - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
7825
+ - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
7826
+ - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
7827
+ """
7828
+ pulumi.set(__self__, "zones", zones)
7829
+
7830
+ @_builtins.property
7831
+ @pulumi.getter
7832
+ def zones(self) -> Sequence[_builtins.str]:
7833
+ """
7834
+ (Required List of String) The list of zones the cluster is in.
7835
+ - On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
7836
+ - On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
7837
+ - On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
7838
+ """
7839
+ return pulumi.get(self, "zones")
7840
+
7841
+
7842
+ @pulumi.output_type
7843
+ class GetKafkaClustersClusterNetworkResult(dict):
7844
+ def __init__(__self__, *,
7845
+ id: _builtins.str):
7846
+ """
7847
+ :param _builtins.str id: (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
7848
+ """
7849
+ pulumi.set(__self__, "id", id)
7850
+
7851
+ @_builtins.property
7852
+ @pulumi.getter
7853
+ def id(self) -> _builtins.str:
7854
+ """
7855
+ (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
7856
+ """
7857
+ return pulumi.get(self, "id")
7858
+
7859
+
7860
+ @pulumi.output_type
7861
+ class GetKafkaClustersClusterStandardResult(dict):
7862
+ def __init__(__self__):
7863
+ pass
7864
+
7865
+
7866
+ @pulumi.output_type
7867
+ class GetKafkaClustersEnvironmentResult(dict):
7868
+ def __init__(__self__, *,
7869
+ id: _builtins.str):
7870
+ """
7871
+ :param _builtins.str id: The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
7872
+ """
7873
+ pulumi.set(__self__, "id", id)
7874
+
7875
+ @_builtins.property
7876
+ @pulumi.getter
7877
+ def id(self) -> _builtins.str:
7878
+ """
7879
+ The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
7880
+ """
7881
+ return pulumi.get(self, "id")
7882
+
7883
+
7295
7884
  @pulumi.output_type
7296
7885
  class GetKafkaTopicCredentialsResult(dict):
7297
7886
  def __init__(__self__, *,
@@ -8147,6 +8736,82 @@ class GetPrivateLinkAttachmentGcpResult(dict):
8147
8736
  return pulumi.get(self, "private_service_connect_service_attachment")
8148
8737
 
8149
8738
 
8739
+ @pulumi.output_type
8740
+ class GetProviderIntegrationAuthorizationAzureResult(dict):
8741
+ def __init__(__self__, *,
8742
+ confluent_multi_tenant_app_id: _builtins.str,
8743
+ customer_azure_tenant_id: _builtins.str):
8744
+ """
8745
+ :param _builtins.str confluent_multi_tenant_app_id: (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
8746
+ :param _builtins.str customer_azure_tenant_id: (Computed String) Customer's Azure Tenant ID.
8747
+ """
8748
+ pulumi.set(__self__, "confluent_multi_tenant_app_id", confluent_multi_tenant_app_id)
8749
+ pulumi.set(__self__, "customer_azure_tenant_id", customer_azure_tenant_id)
8750
+
8751
+ @_builtins.property
8752
+ @pulumi.getter(name="confluentMultiTenantAppId")
8753
+ def confluent_multi_tenant_app_id(self) -> _builtins.str:
8754
+ """
8755
+ (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
8756
+ """
8757
+ return pulumi.get(self, "confluent_multi_tenant_app_id")
8758
+
8759
+ @_builtins.property
8760
+ @pulumi.getter(name="customerAzureTenantId")
8761
+ def customer_azure_tenant_id(self) -> _builtins.str:
8762
+ """
8763
+ (Computed String) Customer's Azure Tenant ID.
8764
+ """
8765
+ return pulumi.get(self, "customer_azure_tenant_id")
8766
+
8767
+
8768
+ @pulumi.output_type
8769
+ class GetProviderIntegrationAuthorizationEnvironmentResult(dict):
8770
+ def __init__(__self__, *,
8771
+ id: _builtins.str):
8772
+ """
8773
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8774
+ """
8775
+ pulumi.set(__self__, "id", id)
8776
+
8777
+ @_builtins.property
8778
+ @pulumi.getter
8779
+ def id(self) -> _builtins.str:
8780
+ """
8781
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8782
+ """
8783
+ return pulumi.get(self, "id")
8784
+
8785
+
8786
+ @pulumi.output_type
8787
+ class GetProviderIntegrationAuthorizationGcpResult(dict):
8788
+ def __init__(__self__, *,
8789
+ customer_google_service_account: _builtins.str,
8790
+ google_service_account: _builtins.str):
8791
+ """
8792
+ :param _builtins.str customer_google_service_account: (Computed String) Customer's Google Service Account that Confluent Cloud impersonates.
8793
+ :param _builtins.str google_service_account: (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
8794
+ """
8795
+ pulumi.set(__self__, "customer_google_service_account", customer_google_service_account)
8796
+ pulumi.set(__self__, "google_service_account", google_service_account)
8797
+
8798
+ @_builtins.property
8799
+ @pulumi.getter(name="customerGoogleServiceAccount")
8800
+ def customer_google_service_account(self) -> _builtins.str:
8801
+ """
8802
+ (Computed String) Customer's Google Service Account that Confluent Cloud impersonates.
8803
+ """
8804
+ return pulumi.get(self, "customer_google_service_account")
8805
+
8806
+ @_builtins.property
8807
+ @pulumi.getter(name="googleServiceAccount")
8808
+ def google_service_account(self) -> _builtins.str:
8809
+ """
8810
+ (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
8811
+ """
8812
+ return pulumi.get(self, "google_service_account")
8813
+
8814
+
8150
8815
  @pulumi.output_type
8151
8816
  class GetProviderIntegrationAwResult(dict):
8152
8817
  def __init__(__self__, *,
@@ -8209,6 +8874,24 @@ class GetProviderIntegrationEnvironmentResult(dict):
8209
8874
  return pulumi.get(self, "id")
8210
8875
 
8211
8876
 
8877
+ @pulumi.output_type
8878
+ class GetProviderIntegrationSetupEnvironmentResult(dict):
8879
+ def __init__(__self__, *,
8880
+ id: _builtins.str):
8881
+ """
8882
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8883
+ """
8884
+ pulumi.set(__self__, "id", id)
8885
+
8886
+ @_builtins.property
8887
+ @pulumi.getter
8888
+ def id(self) -> _builtins.str:
8889
+ """
8890
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8891
+ """
8892
+ return pulumi.get(self, "id")
8893
+
8894
+
8212
8895
  @pulumi.output_type
8213
8896
  class GetSchemaCredentialsResult(dict):
8214
8897
  def __init__(__self__, *,