pulumi-confluentcloud 2.42.0__py3-none-any.whl → 2.54.0a1766503424__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.
- pulumi_confluentcloud/__init__.py +21 -0
- pulumi_confluentcloud/_inputs.py +611 -27
- pulumi_confluentcloud/api_key.py +184 -0
- pulumi_confluentcloud/catalog_entity_attributes.py +48 -0
- pulumi_confluentcloud/dns_forwarder.py +52 -0
- pulumi_confluentcloud/get_catalog_integration.py +60 -0
- pulumi_confluentcloud/get_kafka_clusters.py +136 -0
- pulumi_confluentcloud/get_private_link_attachment.py +0 -1
- pulumi_confluentcloud/get_provider_integration_authorization.py +142 -0
- pulumi_confluentcloud/get_provider_integration_setup.py +270 -0
- pulumi_confluentcloud/get_tableflow_topic.py +30 -2
- pulumi_confluentcloud/outputs.py +1147 -29
- pulumi_confluentcloud/private_link_attachment.py +0 -4
- pulumi_confluentcloud/provider_integration_authorization.py +320 -0
- pulumi_confluentcloud/provider_integration_setup.py +448 -0
- pulumi_confluentcloud/pulumi-plugin.json +1 -1
- pulumi_confluentcloud/schema.py +228 -0
- pulumi_confluentcloud/tableflow_topic.py +90 -18
- {pulumi_confluentcloud-2.42.0.dist-info → pulumi_confluentcloud-2.54.0a1766503424.dist-info}/METADATA +1 -1
- {pulumi_confluentcloud-2.42.0.dist-info → pulumi_confluentcloud-2.54.0a1766503424.dist-info}/RECORD +22 -17
- {pulumi_confluentcloud-2.42.0.dist-info → pulumi_confluentcloud-2.54.0a1766503424.dist-info}/WHEEL +0 -0
- {pulumi_confluentcloud-2.42.0.dist-info → pulumi_confluentcloud-2.54.0a1766503424.dist-info}/top_level.txt +0 -0
pulumi_confluentcloud/_inputs.py
CHANGED
|
@@ -265,10 +265,18 @@ __all__ = [
|
|
|
265
265
|
'PrivateLinkAttachmentEnvironmentArgsDict',
|
|
266
266
|
'PrivateLinkAttachmentGcpArgs',
|
|
267
267
|
'PrivateLinkAttachmentGcpArgsDict',
|
|
268
|
+
'ProviderIntegrationAuthorizationAzureArgs',
|
|
269
|
+
'ProviderIntegrationAuthorizationAzureArgsDict',
|
|
270
|
+
'ProviderIntegrationAuthorizationEnvironmentArgs',
|
|
271
|
+
'ProviderIntegrationAuthorizationEnvironmentArgsDict',
|
|
272
|
+
'ProviderIntegrationAuthorizationGcpArgs',
|
|
273
|
+
'ProviderIntegrationAuthorizationGcpArgsDict',
|
|
268
274
|
'ProviderIntegrationAwsArgs',
|
|
269
275
|
'ProviderIntegrationAwsArgsDict',
|
|
270
276
|
'ProviderIntegrationEnvironmentArgs',
|
|
271
277
|
'ProviderIntegrationEnvironmentArgsDict',
|
|
278
|
+
'ProviderIntegrationSetupEnvironmentArgs',
|
|
279
|
+
'ProviderIntegrationSetupEnvironmentArgsDict',
|
|
272
280
|
'ProviderOauthArgs',
|
|
273
281
|
'ProviderOauthArgsDict',
|
|
274
282
|
'SchemaCredentialsArgs',
|
|
@@ -319,12 +327,16 @@ __all__ = [
|
|
|
319
327
|
'SubjectModeCredentialsArgsDict',
|
|
320
328
|
'SubjectModeSchemaRegistryClusterArgs',
|
|
321
329
|
'SubjectModeSchemaRegistryClusterArgsDict',
|
|
330
|
+
'TableflowTopicAzureDataLakeStorageGen2Args',
|
|
331
|
+
'TableflowTopicAzureDataLakeStorageGen2ArgsDict',
|
|
322
332
|
'TableflowTopicByobAwsArgs',
|
|
323
333
|
'TableflowTopicByobAwsArgsDict',
|
|
324
334
|
'TableflowTopicCredentialsArgs',
|
|
325
335
|
'TableflowTopicCredentialsArgsDict',
|
|
326
336
|
'TableflowTopicEnvironmentArgs',
|
|
327
337
|
'TableflowTopicEnvironmentArgsDict',
|
|
338
|
+
'TableflowTopicErrorHandlingArgs',
|
|
339
|
+
'TableflowTopicErrorHandlingArgsDict',
|
|
328
340
|
'TableflowTopicKafkaClusterArgs',
|
|
329
341
|
'TableflowTopicKafkaClusterArgsDict',
|
|
330
342
|
'TableflowTopicManagedStorageArgs',
|
|
@@ -405,6 +417,8 @@ __all__ = [
|
|
|
405
417
|
'GetKafkaClusterFreightArgsDict',
|
|
406
418
|
'GetKafkaClusterStandardArgs',
|
|
407
419
|
'GetKafkaClusterStandardArgsDict',
|
|
420
|
+
'GetKafkaClustersEnvironmentArgs',
|
|
421
|
+
'GetKafkaClustersEnvironmentArgsDict',
|
|
408
422
|
'GetKafkaTopicCredentialsArgs',
|
|
409
423
|
'GetKafkaTopicCredentialsArgsDict',
|
|
410
424
|
'GetKafkaTopicKafkaClusterArgs',
|
|
@@ -435,8 +449,12 @@ __all__ = [
|
|
|
435
449
|
'GetPrivateLinkAttachmentConnectionEnvironmentArgsDict',
|
|
436
450
|
'GetPrivateLinkAttachmentEnvironmentArgs',
|
|
437
451
|
'GetPrivateLinkAttachmentEnvironmentArgsDict',
|
|
452
|
+
'GetProviderIntegrationAuthorizationEnvironmentArgs',
|
|
453
|
+
'GetProviderIntegrationAuthorizationEnvironmentArgsDict',
|
|
438
454
|
'GetProviderIntegrationEnvironmentArgs',
|
|
439
455
|
'GetProviderIntegrationEnvironmentArgsDict',
|
|
456
|
+
'GetProviderIntegrationSetupEnvironmentArgs',
|
|
457
|
+
'GetProviderIntegrationSetupEnvironmentArgsDict',
|
|
440
458
|
'GetSchemaCredentialsArgs',
|
|
441
459
|
'GetSchemaCredentialsArgsDict',
|
|
442
460
|
'GetSchemaMetadataArgs',
|
|
@@ -3936,14 +3954,34 @@ class KafkaClientQuotaThroughputArgs:
|
|
|
3936
3954
|
|
|
3937
3955
|
if not MYPY:
|
|
3938
3956
|
class KafkaClusterBasicArgsDict(TypedDict):
|
|
3939
|
-
|
|
3957
|
+
max_ecku: NotRequired[pulumi.Input[_builtins.int]]
|
|
3958
|
+
"""
|
|
3959
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
3960
|
+
"""
|
|
3940
3961
|
elif False:
|
|
3941
3962
|
KafkaClusterBasicArgsDict: TypeAlias = Mapping[str, Any]
|
|
3942
3963
|
|
|
3943
3964
|
@pulumi.input_type
|
|
3944
3965
|
class KafkaClusterBasicArgs:
|
|
3945
|
-
def __init__(__self__
|
|
3946
|
-
|
|
3966
|
+
def __init__(__self__, *,
|
|
3967
|
+
max_ecku: Optional[pulumi.Input[_builtins.int]] = None):
|
|
3968
|
+
"""
|
|
3969
|
+
:param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
3970
|
+
"""
|
|
3971
|
+
if max_ecku is not None:
|
|
3972
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
3973
|
+
|
|
3974
|
+
@_builtins.property
|
|
3975
|
+
@pulumi.getter(name="maxEcku")
|
|
3976
|
+
def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
3977
|
+
"""
|
|
3978
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
3979
|
+
"""
|
|
3980
|
+
return pulumi.get(self, "max_ecku")
|
|
3981
|
+
|
|
3982
|
+
@max_ecku.setter
|
|
3983
|
+
def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
3984
|
+
pulumi.set(self, "max_ecku", value)
|
|
3947
3985
|
|
|
3948
3986
|
|
|
3949
3987
|
if not MYPY:
|
|
@@ -4083,6 +4121,8 @@ if not MYPY:
|
|
|
4083
4121
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
4084
4122
|
|
|
4085
4123
|
> **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
|
|
4124
|
+
|
|
4125
|
+
> **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
|
|
4086
4126
|
"""
|
|
4087
4127
|
encryption_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
4088
4128
|
"""
|
|
@@ -4112,6 +4152,8 @@ class KafkaClusterDedicatedArgs:
|
|
|
4112
4152
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
4113
4153
|
|
|
4114
4154
|
> **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
|
|
4155
|
+
|
|
4156
|
+
> **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
|
|
4115
4157
|
:param pulumi.Input[_builtins.str] encryption_key: The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
|
|
4116
4158
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: (Required List of String) The list of zones the cluster is in.
|
|
4117
4159
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
@@ -4135,6 +4177,8 @@ class KafkaClusterDedicatedArgs:
|
|
|
4135
4177
|
!> **Warning:** You can only upgrade clusters from `basic` to `standard`.
|
|
4136
4178
|
|
|
4137
4179
|
> **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
|
|
4180
|
+
|
|
4181
|
+
> **Note:** Refer to [eCKU/CKU comparison](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#ecku-cku-comparison) documentation for the minimum/maximum eCKU requirements for each cluster type.
|
|
4138
4182
|
"""
|
|
4139
4183
|
return pulumi.get(self, "cku")
|
|
4140
4184
|
|
|
@@ -4262,14 +4306,34 @@ class KafkaClusterEndpointArgs:
|
|
|
4262
4306
|
|
|
4263
4307
|
if not MYPY:
|
|
4264
4308
|
class KafkaClusterEnterpriseArgsDict(TypedDict):
|
|
4265
|
-
|
|
4309
|
+
max_ecku: NotRequired[pulumi.Input[_builtins.int]]
|
|
4310
|
+
"""
|
|
4311
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4312
|
+
"""
|
|
4266
4313
|
elif False:
|
|
4267
4314
|
KafkaClusterEnterpriseArgsDict: TypeAlias = Mapping[str, Any]
|
|
4268
4315
|
|
|
4269
4316
|
@pulumi.input_type
|
|
4270
4317
|
class KafkaClusterEnterpriseArgs:
|
|
4271
|
-
def __init__(__self__
|
|
4272
|
-
|
|
4318
|
+
def __init__(__self__, *,
|
|
4319
|
+
max_ecku: Optional[pulumi.Input[_builtins.int]] = None):
|
|
4320
|
+
"""
|
|
4321
|
+
:param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4322
|
+
"""
|
|
4323
|
+
if max_ecku is not None:
|
|
4324
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
4325
|
+
|
|
4326
|
+
@_builtins.property
|
|
4327
|
+
@pulumi.getter(name="maxEcku")
|
|
4328
|
+
def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4329
|
+
"""
|
|
4330
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4331
|
+
"""
|
|
4332
|
+
return pulumi.get(self, "max_ecku")
|
|
4333
|
+
|
|
4334
|
+
@max_ecku.setter
|
|
4335
|
+
def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4336
|
+
pulumi.set(self, "max_ecku", value)
|
|
4273
4337
|
|
|
4274
4338
|
|
|
4275
4339
|
if not MYPY:
|
|
@@ -4305,6 +4369,10 @@ class KafkaClusterEnvironmentArgs:
|
|
|
4305
4369
|
|
|
4306
4370
|
if not MYPY:
|
|
4307
4371
|
class KafkaClusterFreightArgsDict(TypedDict):
|
|
4372
|
+
max_ecku: NotRequired[pulumi.Input[_builtins.int]]
|
|
4373
|
+
"""
|
|
4374
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4375
|
+
"""
|
|
4308
4376
|
zones: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4309
4377
|
"""
|
|
4310
4378
|
(Required List of String) The list of zones the cluster is in.
|
|
@@ -4316,14 +4384,30 @@ elif False:
|
|
|
4316
4384
|
@pulumi.input_type
|
|
4317
4385
|
class KafkaClusterFreightArgs:
|
|
4318
4386
|
def __init__(__self__, *,
|
|
4387
|
+
max_ecku: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4319
4388
|
zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
4320
4389
|
"""
|
|
4390
|
+
:param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4321
4391
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: (Required List of String) The list of zones the cluster is in.
|
|
4322
4392
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
4323
4393
|
"""
|
|
4394
|
+
if max_ecku is not None:
|
|
4395
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
4324
4396
|
if zones is not None:
|
|
4325
4397
|
pulumi.set(__self__, "zones", zones)
|
|
4326
4398
|
|
|
4399
|
+
@_builtins.property
|
|
4400
|
+
@pulumi.getter(name="maxEcku")
|
|
4401
|
+
def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4402
|
+
"""
|
|
4403
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4404
|
+
"""
|
|
4405
|
+
return pulumi.get(self, "max_ecku")
|
|
4406
|
+
|
|
4407
|
+
@max_ecku.setter
|
|
4408
|
+
def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4409
|
+
pulumi.set(self, "max_ecku", value)
|
|
4410
|
+
|
|
4327
4411
|
@_builtins.property
|
|
4328
4412
|
@pulumi.getter
|
|
4329
4413
|
def zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -4371,14 +4455,34 @@ class KafkaClusterNetworkArgs:
|
|
|
4371
4455
|
|
|
4372
4456
|
if not MYPY:
|
|
4373
4457
|
class KafkaClusterStandardArgsDict(TypedDict):
|
|
4374
|
-
|
|
4458
|
+
max_ecku: NotRequired[pulumi.Input[_builtins.int]]
|
|
4459
|
+
"""
|
|
4460
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4461
|
+
"""
|
|
4375
4462
|
elif False:
|
|
4376
4463
|
KafkaClusterStandardArgsDict: TypeAlias = Mapping[str, Any]
|
|
4377
4464
|
|
|
4378
4465
|
@pulumi.input_type
|
|
4379
4466
|
class KafkaClusterStandardArgs:
|
|
4380
|
-
def __init__(__self__
|
|
4381
|
-
|
|
4467
|
+
def __init__(__self__, *,
|
|
4468
|
+
max_ecku: Optional[pulumi.Input[_builtins.int]] = None):
|
|
4469
|
+
"""
|
|
4470
|
+
:param pulumi.Input[_builtins.int] max_ecku: The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4471
|
+
"""
|
|
4472
|
+
if max_ecku is not None:
|
|
4473
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
4474
|
+
|
|
4475
|
+
@_builtins.property
|
|
4476
|
+
@pulumi.getter(name="maxEcku")
|
|
4477
|
+
def max_ecku(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4478
|
+
"""
|
|
4479
|
+
The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs.
|
|
4480
|
+
"""
|
|
4481
|
+
return pulumi.get(self, "max_ecku")
|
|
4482
|
+
|
|
4483
|
+
@max_ecku.setter
|
|
4484
|
+
def max_ecku(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4485
|
+
pulumi.set(self, "max_ecku", value)
|
|
4382
4486
|
|
|
4383
4487
|
|
|
4384
4488
|
if not MYPY:
|
|
@@ -5841,11 +5945,11 @@ if not MYPY:
|
|
|
5841
5945
|
class PrivateLinkAttachmentAzureArgsDict(TypedDict):
|
|
5842
5946
|
private_link_service_alias: NotRequired[pulumi.Input[_builtins.str]]
|
|
5843
5947
|
"""
|
|
5844
|
-
Azure
|
|
5948
|
+
(Required String) Azure Private Link service alias for the availability zone.
|
|
5845
5949
|
"""
|
|
5846
5950
|
private_link_service_resource_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
5847
5951
|
"""
|
|
5848
|
-
(Required String) Azure Private Link service resource
|
|
5952
|
+
(Required String) Azure Private Link service resource ID for the availability zone.
|
|
5849
5953
|
"""
|
|
5850
5954
|
elif False:
|
|
5851
5955
|
PrivateLinkAttachmentAzureArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -5856,8 +5960,8 @@ class PrivateLinkAttachmentAzureArgs:
|
|
|
5856
5960
|
private_link_service_alias: Optional[pulumi.Input[_builtins.str]] = None,
|
|
5857
5961
|
private_link_service_resource_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
5858
5962
|
"""
|
|
5859
|
-
:param pulumi.Input[_builtins.str] private_link_service_alias: Azure
|
|
5860
|
-
:param pulumi.Input[_builtins.str] private_link_service_resource_id: (Required String) Azure Private Link service resource
|
|
5963
|
+
:param pulumi.Input[_builtins.str] private_link_service_alias: (Required String) Azure Private Link service alias for the availability zone.
|
|
5964
|
+
:param pulumi.Input[_builtins.str] private_link_service_resource_id: (Required String) Azure Private Link service resource ID for the availability zone.
|
|
5861
5965
|
"""
|
|
5862
5966
|
if private_link_service_alias is not None:
|
|
5863
5967
|
pulumi.set(__self__, "private_link_service_alias", private_link_service_alias)
|
|
@@ -5868,7 +5972,7 @@ class PrivateLinkAttachmentAzureArgs:
|
|
|
5868
5972
|
@pulumi.getter(name="privateLinkServiceAlias")
|
|
5869
5973
|
def private_link_service_alias(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5870
5974
|
"""
|
|
5871
|
-
Azure
|
|
5975
|
+
(Required String) Azure Private Link service alias for the availability zone.
|
|
5872
5976
|
"""
|
|
5873
5977
|
return pulumi.get(self, "private_link_service_alias")
|
|
5874
5978
|
|
|
@@ -5880,7 +5984,7 @@ class PrivateLinkAttachmentAzureArgs:
|
|
|
5880
5984
|
@pulumi.getter(name="privateLinkServiceResourceId")
|
|
5881
5985
|
def private_link_service_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5882
5986
|
"""
|
|
5883
|
-
(Required String) Azure Private Link service resource
|
|
5987
|
+
(Required String) Azure Private Link service resource ID for the availability zone.
|
|
5884
5988
|
"""
|
|
5885
5989
|
return pulumi.get(self, "private_link_service_resource_id")
|
|
5886
5990
|
|
|
@@ -6079,7 +6183,7 @@ if not MYPY:
|
|
|
6079
6183
|
class PrivateLinkAttachmentGcpArgsDict(TypedDict):
|
|
6080
6184
|
private_service_connect_service_attachment: NotRequired[pulumi.Input[_builtins.str]]
|
|
6081
6185
|
"""
|
|
6082
|
-
|
|
6186
|
+
(Required String) The ID of the GCP Private Service Connect Service Attachment on Confluent Cloud.
|
|
6083
6187
|
"""
|
|
6084
6188
|
elif False:
|
|
6085
6189
|
PrivateLinkAttachmentGcpArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -6089,7 +6193,7 @@ class PrivateLinkAttachmentGcpArgs:
|
|
|
6089
6193
|
def __init__(__self__, *,
|
|
6090
6194
|
private_service_connect_service_attachment: Optional[pulumi.Input[_builtins.str]] = None):
|
|
6091
6195
|
"""
|
|
6092
|
-
:param pulumi.Input[_builtins.str] private_service_connect_service_attachment:
|
|
6196
|
+
:param pulumi.Input[_builtins.str] private_service_connect_service_attachment: (Required String) The ID of the GCP Private Service Connect Service Attachment on Confluent Cloud.
|
|
6093
6197
|
"""
|
|
6094
6198
|
if private_service_connect_service_attachment is not None:
|
|
6095
6199
|
pulumi.set(__self__, "private_service_connect_service_attachment", private_service_connect_service_attachment)
|
|
@@ -6098,7 +6202,7 @@ class PrivateLinkAttachmentGcpArgs:
|
|
|
6098
6202
|
@pulumi.getter(name="privateServiceConnectServiceAttachment")
|
|
6099
6203
|
def private_service_connect_service_attachment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
6100
6204
|
"""
|
|
6101
|
-
|
|
6205
|
+
(Required String) The ID of the GCP Private Service Connect Service Attachment on Confluent Cloud.
|
|
6102
6206
|
"""
|
|
6103
6207
|
return pulumi.get(self, "private_service_connect_service_attachment")
|
|
6104
6208
|
|
|
@@ -6107,6 +6211,145 @@ class PrivateLinkAttachmentGcpArgs:
|
|
|
6107
6211
|
pulumi.set(self, "private_service_connect_service_attachment", value)
|
|
6108
6212
|
|
|
6109
6213
|
|
|
6214
|
+
if not MYPY:
|
|
6215
|
+
class ProviderIntegrationAuthorizationAzureArgsDict(TypedDict):
|
|
6216
|
+
customer_azure_tenant_id: pulumi.Input[_builtins.str]
|
|
6217
|
+
"""
|
|
6218
|
+
Customer's Azure Tenant ID.
|
|
6219
|
+
"""
|
|
6220
|
+
confluent_multi_tenant_app_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
6221
|
+
"""
|
|
6222
|
+
(Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
|
|
6223
|
+
"""
|
|
6224
|
+
elif False:
|
|
6225
|
+
ProviderIntegrationAuthorizationAzureArgsDict: TypeAlias = Mapping[str, Any]
|
|
6226
|
+
|
|
6227
|
+
@pulumi.input_type
|
|
6228
|
+
class ProviderIntegrationAuthorizationAzureArgs:
|
|
6229
|
+
def __init__(__self__, *,
|
|
6230
|
+
customer_azure_tenant_id: pulumi.Input[_builtins.str],
|
|
6231
|
+
confluent_multi_tenant_app_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
6232
|
+
"""
|
|
6233
|
+
:param pulumi.Input[_builtins.str] customer_azure_tenant_id: Customer's Azure Tenant ID.
|
|
6234
|
+
:param pulumi.Input[_builtins.str] confluent_multi_tenant_app_id: (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
|
|
6235
|
+
"""
|
|
6236
|
+
pulumi.set(__self__, "customer_azure_tenant_id", customer_azure_tenant_id)
|
|
6237
|
+
if confluent_multi_tenant_app_id is not None:
|
|
6238
|
+
pulumi.set(__self__, "confluent_multi_tenant_app_id", confluent_multi_tenant_app_id)
|
|
6239
|
+
|
|
6240
|
+
@_builtins.property
|
|
6241
|
+
@pulumi.getter(name="customerAzureTenantId")
|
|
6242
|
+
def customer_azure_tenant_id(self) -> pulumi.Input[_builtins.str]:
|
|
6243
|
+
"""
|
|
6244
|
+
Customer's Azure Tenant ID.
|
|
6245
|
+
"""
|
|
6246
|
+
return pulumi.get(self, "customer_azure_tenant_id")
|
|
6247
|
+
|
|
6248
|
+
@customer_azure_tenant_id.setter
|
|
6249
|
+
def customer_azure_tenant_id(self, value: pulumi.Input[_builtins.str]):
|
|
6250
|
+
pulumi.set(self, "customer_azure_tenant_id", value)
|
|
6251
|
+
|
|
6252
|
+
@_builtins.property
|
|
6253
|
+
@pulumi.getter(name="confluentMultiTenantAppId")
|
|
6254
|
+
def confluent_multi_tenant_app_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
6255
|
+
"""
|
|
6256
|
+
(Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
|
|
6257
|
+
"""
|
|
6258
|
+
return pulumi.get(self, "confluent_multi_tenant_app_id")
|
|
6259
|
+
|
|
6260
|
+
@confluent_multi_tenant_app_id.setter
|
|
6261
|
+
def confluent_multi_tenant_app_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
6262
|
+
pulumi.set(self, "confluent_multi_tenant_app_id", value)
|
|
6263
|
+
|
|
6264
|
+
|
|
6265
|
+
if not MYPY:
|
|
6266
|
+
class ProviderIntegrationAuthorizationEnvironmentArgsDict(TypedDict):
|
|
6267
|
+
id: pulumi.Input[_builtins.str]
|
|
6268
|
+
"""
|
|
6269
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
6270
|
+
"""
|
|
6271
|
+
elif False:
|
|
6272
|
+
ProviderIntegrationAuthorizationEnvironmentArgsDict: TypeAlias = Mapping[str, Any]
|
|
6273
|
+
|
|
6274
|
+
@pulumi.input_type
|
|
6275
|
+
class ProviderIntegrationAuthorizationEnvironmentArgs:
|
|
6276
|
+
def __init__(__self__, *,
|
|
6277
|
+
id: pulumi.Input[_builtins.str]):
|
|
6278
|
+
"""
|
|
6279
|
+
:param pulumi.Input[_builtins.str] id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
6280
|
+
"""
|
|
6281
|
+
pulumi.set(__self__, "id", id)
|
|
6282
|
+
|
|
6283
|
+
@_builtins.property
|
|
6284
|
+
@pulumi.getter
|
|
6285
|
+
def id(self) -> pulumi.Input[_builtins.str]:
|
|
6286
|
+
"""
|
|
6287
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
6288
|
+
"""
|
|
6289
|
+
return pulumi.get(self, "id")
|
|
6290
|
+
|
|
6291
|
+
@id.setter
|
|
6292
|
+
def id(self, value: pulumi.Input[_builtins.str]):
|
|
6293
|
+
pulumi.set(self, "id", value)
|
|
6294
|
+
|
|
6295
|
+
|
|
6296
|
+
if not MYPY:
|
|
6297
|
+
class ProviderIntegrationAuthorizationGcpArgsDict(TypedDict):
|
|
6298
|
+
customer_google_service_account: pulumi.Input[_builtins.str]
|
|
6299
|
+
"""
|
|
6300
|
+
Customer's Google Service Account that Confluent Cloud impersonates.
|
|
6301
|
+
|
|
6302
|
+
> **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
|
|
6303
|
+
"""
|
|
6304
|
+
google_service_account: NotRequired[pulumi.Input[_builtins.str]]
|
|
6305
|
+
"""
|
|
6306
|
+
(Computed String) Google Service Account that Confluent Cloud uses for impersonation.
|
|
6307
|
+
"""
|
|
6308
|
+
elif False:
|
|
6309
|
+
ProviderIntegrationAuthorizationGcpArgsDict: TypeAlias = Mapping[str, Any]
|
|
6310
|
+
|
|
6311
|
+
@pulumi.input_type
|
|
6312
|
+
class ProviderIntegrationAuthorizationGcpArgs:
|
|
6313
|
+
def __init__(__self__, *,
|
|
6314
|
+
customer_google_service_account: pulumi.Input[_builtins.str],
|
|
6315
|
+
google_service_account: Optional[pulumi.Input[_builtins.str]] = None):
|
|
6316
|
+
"""
|
|
6317
|
+
:param pulumi.Input[_builtins.str] customer_google_service_account: Customer's Google Service Account that Confluent Cloud impersonates.
|
|
6318
|
+
|
|
6319
|
+
> **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
|
|
6320
|
+
:param pulumi.Input[_builtins.str] google_service_account: (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
|
|
6321
|
+
"""
|
|
6322
|
+
pulumi.set(__self__, "customer_google_service_account", customer_google_service_account)
|
|
6323
|
+
if google_service_account is not None:
|
|
6324
|
+
pulumi.set(__self__, "google_service_account", google_service_account)
|
|
6325
|
+
|
|
6326
|
+
@_builtins.property
|
|
6327
|
+
@pulumi.getter(name="customerGoogleServiceAccount")
|
|
6328
|
+
def customer_google_service_account(self) -> pulumi.Input[_builtins.str]:
|
|
6329
|
+
"""
|
|
6330
|
+
Customer's Google Service Account that Confluent Cloud impersonates.
|
|
6331
|
+
|
|
6332
|
+
> **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
|
|
6333
|
+
"""
|
|
6334
|
+
return pulumi.get(self, "customer_google_service_account")
|
|
6335
|
+
|
|
6336
|
+
@customer_google_service_account.setter
|
|
6337
|
+
def customer_google_service_account(self, value: pulumi.Input[_builtins.str]):
|
|
6338
|
+
pulumi.set(self, "customer_google_service_account", value)
|
|
6339
|
+
|
|
6340
|
+
@_builtins.property
|
|
6341
|
+
@pulumi.getter(name="googleServiceAccount")
|
|
6342
|
+
def google_service_account(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
6343
|
+
"""
|
|
6344
|
+
(Computed String) Google Service Account that Confluent Cloud uses for impersonation.
|
|
6345
|
+
"""
|
|
6346
|
+
return pulumi.get(self, "google_service_account")
|
|
6347
|
+
|
|
6348
|
+
@google_service_account.setter
|
|
6349
|
+
def google_service_account(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
6350
|
+
pulumi.set(self, "google_service_account", value)
|
|
6351
|
+
|
|
6352
|
+
|
|
6110
6353
|
if not MYPY:
|
|
6111
6354
|
class ProviderIntegrationAwsArgsDict(TypedDict):
|
|
6112
6355
|
customer_role_arn: pulumi.Input[_builtins.str]
|
|
@@ -6221,6 +6464,37 @@ class ProviderIntegrationEnvironmentArgs:
|
|
|
6221
6464
|
pulumi.set(self, "id", value)
|
|
6222
6465
|
|
|
6223
6466
|
|
|
6467
|
+
if not MYPY:
|
|
6468
|
+
class ProviderIntegrationSetupEnvironmentArgsDict(TypedDict):
|
|
6469
|
+
id: pulumi.Input[_builtins.str]
|
|
6470
|
+
"""
|
|
6471
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
6472
|
+
"""
|
|
6473
|
+
elif False:
|
|
6474
|
+
ProviderIntegrationSetupEnvironmentArgsDict: TypeAlias = Mapping[str, Any]
|
|
6475
|
+
|
|
6476
|
+
@pulumi.input_type
|
|
6477
|
+
class ProviderIntegrationSetupEnvironmentArgs:
|
|
6478
|
+
def __init__(__self__, *,
|
|
6479
|
+
id: pulumi.Input[_builtins.str]):
|
|
6480
|
+
"""
|
|
6481
|
+
:param pulumi.Input[_builtins.str] id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
6482
|
+
"""
|
|
6483
|
+
pulumi.set(__self__, "id", id)
|
|
6484
|
+
|
|
6485
|
+
@_builtins.property
|
|
6486
|
+
@pulumi.getter
|
|
6487
|
+
def id(self) -> pulumi.Input[_builtins.str]:
|
|
6488
|
+
"""
|
|
6489
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
6490
|
+
"""
|
|
6491
|
+
return pulumi.get(self, "id")
|
|
6492
|
+
|
|
6493
|
+
@id.setter
|
|
6494
|
+
def id(self, value: pulumi.Input[_builtins.str]):
|
|
6495
|
+
pulumi.set(self, "id", value)
|
|
6496
|
+
|
|
6497
|
+
|
|
6224
6498
|
if not MYPY:
|
|
6225
6499
|
class ProviderOauthArgsDict(TypedDict):
|
|
6226
6500
|
oauth_identity_pool_id: pulumi.Input[_builtins.str]
|
|
@@ -7654,6 +7928,95 @@ class SubjectModeSchemaRegistryClusterArgs:
|
|
|
7654
7928
|
pulumi.set(self, "id", value)
|
|
7655
7929
|
|
|
7656
7930
|
|
|
7931
|
+
if not MYPY:
|
|
7932
|
+
class TableflowTopicAzureDataLakeStorageGen2ArgsDict(TypedDict):
|
|
7933
|
+
container_name: pulumi.Input[_builtins.str]
|
|
7934
|
+
"""
|
|
7935
|
+
The container name.
|
|
7936
|
+
"""
|
|
7937
|
+
provider_integration_id: pulumi.Input[_builtins.str]
|
|
7938
|
+
"""
|
|
7939
|
+
The provider integration id.
|
|
7940
|
+
"""
|
|
7941
|
+
storage_account_name: pulumi.Input[_builtins.str]
|
|
7942
|
+
"""
|
|
7943
|
+
The storage account name.
|
|
7944
|
+
"""
|
|
7945
|
+
storage_region: NotRequired[pulumi.Input[_builtins.str]]
|
|
7946
|
+
"""
|
|
7947
|
+
(Required String) The storage region.
|
|
7948
|
+
"""
|
|
7949
|
+
elif False:
|
|
7950
|
+
TableflowTopicAzureDataLakeStorageGen2ArgsDict: TypeAlias = Mapping[str, Any]
|
|
7951
|
+
|
|
7952
|
+
@pulumi.input_type
|
|
7953
|
+
class TableflowTopicAzureDataLakeStorageGen2Args:
|
|
7954
|
+
def __init__(__self__, *,
|
|
7955
|
+
container_name: pulumi.Input[_builtins.str],
|
|
7956
|
+
provider_integration_id: pulumi.Input[_builtins.str],
|
|
7957
|
+
storage_account_name: pulumi.Input[_builtins.str],
|
|
7958
|
+
storage_region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
7959
|
+
"""
|
|
7960
|
+
:param pulumi.Input[_builtins.str] container_name: The container name.
|
|
7961
|
+
:param pulumi.Input[_builtins.str] provider_integration_id: The provider integration id.
|
|
7962
|
+
:param pulumi.Input[_builtins.str] storage_account_name: The storage account name.
|
|
7963
|
+
:param pulumi.Input[_builtins.str] storage_region: (Required String) The storage region.
|
|
7964
|
+
"""
|
|
7965
|
+
pulumi.set(__self__, "container_name", container_name)
|
|
7966
|
+
pulumi.set(__self__, "provider_integration_id", provider_integration_id)
|
|
7967
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
7968
|
+
if storage_region is not None:
|
|
7969
|
+
pulumi.set(__self__, "storage_region", storage_region)
|
|
7970
|
+
|
|
7971
|
+
@_builtins.property
|
|
7972
|
+
@pulumi.getter(name="containerName")
|
|
7973
|
+
def container_name(self) -> pulumi.Input[_builtins.str]:
|
|
7974
|
+
"""
|
|
7975
|
+
The container name.
|
|
7976
|
+
"""
|
|
7977
|
+
return pulumi.get(self, "container_name")
|
|
7978
|
+
|
|
7979
|
+
@container_name.setter
|
|
7980
|
+
def container_name(self, value: pulumi.Input[_builtins.str]):
|
|
7981
|
+
pulumi.set(self, "container_name", value)
|
|
7982
|
+
|
|
7983
|
+
@_builtins.property
|
|
7984
|
+
@pulumi.getter(name="providerIntegrationId")
|
|
7985
|
+
def provider_integration_id(self) -> pulumi.Input[_builtins.str]:
|
|
7986
|
+
"""
|
|
7987
|
+
The provider integration id.
|
|
7988
|
+
"""
|
|
7989
|
+
return pulumi.get(self, "provider_integration_id")
|
|
7990
|
+
|
|
7991
|
+
@provider_integration_id.setter
|
|
7992
|
+
def provider_integration_id(self, value: pulumi.Input[_builtins.str]):
|
|
7993
|
+
pulumi.set(self, "provider_integration_id", value)
|
|
7994
|
+
|
|
7995
|
+
@_builtins.property
|
|
7996
|
+
@pulumi.getter(name="storageAccountName")
|
|
7997
|
+
def storage_account_name(self) -> pulumi.Input[_builtins.str]:
|
|
7998
|
+
"""
|
|
7999
|
+
The storage account name.
|
|
8000
|
+
"""
|
|
8001
|
+
return pulumi.get(self, "storage_account_name")
|
|
8002
|
+
|
|
8003
|
+
@storage_account_name.setter
|
|
8004
|
+
def storage_account_name(self, value: pulumi.Input[_builtins.str]):
|
|
8005
|
+
pulumi.set(self, "storage_account_name", value)
|
|
8006
|
+
|
|
8007
|
+
@_builtins.property
|
|
8008
|
+
@pulumi.getter(name="storageRegion")
|
|
8009
|
+
def storage_region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
8010
|
+
"""
|
|
8011
|
+
(Required String) The storage region.
|
|
8012
|
+
"""
|
|
8013
|
+
return pulumi.get(self, "storage_region")
|
|
8014
|
+
|
|
8015
|
+
@storage_region.setter
|
|
8016
|
+
def storage_region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
8017
|
+
pulumi.set(self, "storage_region", value)
|
|
8018
|
+
|
|
8019
|
+
|
|
7657
8020
|
if not MYPY:
|
|
7658
8021
|
class TableflowTopicByobAwsArgsDict(TypedDict):
|
|
7659
8022
|
bucket_name: pulumi.Input[_builtins.str]
|
|
@@ -7805,6 +8168,58 @@ class TableflowTopicEnvironmentArgs:
|
|
|
7805
8168
|
pulumi.set(self, "id", value)
|
|
7806
8169
|
|
|
7807
8170
|
|
|
8171
|
+
if not MYPY:
|
|
8172
|
+
class TableflowTopicErrorHandlingArgsDict(TypedDict):
|
|
8173
|
+
log_target: NotRequired[pulumi.Input[_builtins.str]]
|
|
8174
|
+
"""
|
|
8175
|
+
The topic to which the bad records will be logged for error handling mode `LOG`. Creates the topic if it doesn't already exist. The default topic is "error_log" if error handling mode is `LOG`, and empty otherwise.
|
|
8176
|
+
"""
|
|
8177
|
+
mode: NotRequired[pulumi.Input[_builtins.str]]
|
|
8178
|
+
"""
|
|
8179
|
+
The error handling mode. For `SUSPEND`, the materialization of the topic is suspended in case of record failures. For `SKIP`, bad records are skipped and the materialization continues with the next record. For `LOG`, bad records are logged to a dead-letter queue (DLQ) topic and the materialization continues with the next record. The default mode is `SUSPEND`.
|
|
8180
|
+
"""
|
|
8181
|
+
elif False:
|
|
8182
|
+
TableflowTopicErrorHandlingArgsDict: TypeAlias = Mapping[str, Any]
|
|
8183
|
+
|
|
8184
|
+
@pulumi.input_type
|
|
8185
|
+
class TableflowTopicErrorHandlingArgs:
|
|
8186
|
+
def __init__(__self__, *,
|
|
8187
|
+
log_target: Optional[pulumi.Input[_builtins.str]] = None,
|
|
8188
|
+
mode: Optional[pulumi.Input[_builtins.str]] = None):
|
|
8189
|
+
"""
|
|
8190
|
+
:param pulumi.Input[_builtins.str] log_target: The topic to which the bad records will be logged for error handling mode `LOG`. Creates the topic if it doesn't already exist. The default topic is "error_log" if error handling mode is `LOG`, and empty otherwise.
|
|
8191
|
+
:param pulumi.Input[_builtins.str] mode: The error handling mode. For `SUSPEND`, the materialization of the topic is suspended in case of record failures. For `SKIP`, bad records are skipped and the materialization continues with the next record. For `LOG`, bad records are logged to a dead-letter queue (DLQ) topic and the materialization continues with the next record. The default mode is `SUSPEND`.
|
|
8192
|
+
"""
|
|
8193
|
+
if log_target is not None:
|
|
8194
|
+
pulumi.set(__self__, "log_target", log_target)
|
|
8195
|
+
if mode is not None:
|
|
8196
|
+
pulumi.set(__self__, "mode", mode)
|
|
8197
|
+
|
|
8198
|
+
@_builtins.property
|
|
8199
|
+
@pulumi.getter(name="logTarget")
|
|
8200
|
+
def log_target(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
8201
|
+
"""
|
|
8202
|
+
The topic to which the bad records will be logged for error handling mode `LOG`. Creates the topic if it doesn't already exist. The default topic is "error_log" if error handling mode is `LOG`, and empty otherwise.
|
|
8203
|
+
"""
|
|
8204
|
+
return pulumi.get(self, "log_target")
|
|
8205
|
+
|
|
8206
|
+
@log_target.setter
|
|
8207
|
+
def log_target(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
8208
|
+
pulumi.set(self, "log_target", value)
|
|
8209
|
+
|
|
8210
|
+
@_builtins.property
|
|
8211
|
+
@pulumi.getter
|
|
8212
|
+
def mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
8213
|
+
"""
|
|
8214
|
+
The error handling mode. For `SUSPEND`, the materialization of the topic is suspended in case of record failures. For `SKIP`, bad records are skipped and the materialization continues with the next record. For `LOG`, bad records are logged to a dead-letter queue (DLQ) topic and the materialization continues with the next record. The default mode is `SUSPEND`.
|
|
8215
|
+
"""
|
|
8216
|
+
return pulumi.get(self, "mode")
|
|
8217
|
+
|
|
8218
|
+
@mode.setter
|
|
8219
|
+
def mode(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
8220
|
+
pulumi.set(self, "mode", value)
|
|
8221
|
+
|
|
8222
|
+
|
|
7808
8223
|
if not MYPY:
|
|
7809
8224
|
class TableflowTopicKafkaClusterArgsDict(TypedDict):
|
|
7810
8225
|
id: pulumi.Input[_builtins.str]
|
|
@@ -9187,14 +9602,33 @@ class GetIpAddressesFilterArgs:
|
|
|
9187
9602
|
|
|
9188
9603
|
if not MYPY:
|
|
9189
9604
|
class GetKafkaClusterBasicArgsDict(TypedDict):
|
|
9190
|
-
|
|
9605
|
+
max_ecku: _builtins.int
|
|
9606
|
+
"""
|
|
9607
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9608
|
+
"""
|
|
9191
9609
|
elif False:
|
|
9192
9610
|
GetKafkaClusterBasicArgsDict: TypeAlias = Mapping[str, Any]
|
|
9193
9611
|
|
|
9194
9612
|
@pulumi.input_type
|
|
9195
9613
|
class GetKafkaClusterBasicArgs:
|
|
9196
|
-
def __init__(__self__
|
|
9197
|
-
|
|
9614
|
+
def __init__(__self__, *,
|
|
9615
|
+
max_ecku: _builtins.int):
|
|
9616
|
+
"""
|
|
9617
|
+
:param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9618
|
+
"""
|
|
9619
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
9620
|
+
|
|
9621
|
+
@_builtins.property
|
|
9622
|
+
@pulumi.getter(name="maxEcku")
|
|
9623
|
+
def max_ecku(self) -> _builtins.int:
|
|
9624
|
+
"""
|
|
9625
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9626
|
+
"""
|
|
9627
|
+
return pulumi.get(self, "max_ecku")
|
|
9628
|
+
|
|
9629
|
+
@max_ecku.setter
|
|
9630
|
+
def max_ecku(self, value: _builtins.int):
|
|
9631
|
+
pulumi.set(self, "max_ecku", value)
|
|
9198
9632
|
|
|
9199
9633
|
|
|
9200
9634
|
if not MYPY:
|
|
@@ -9277,14 +9711,33 @@ class GetKafkaClusterDedicatedArgs:
|
|
|
9277
9711
|
|
|
9278
9712
|
if not MYPY:
|
|
9279
9713
|
class GetKafkaClusterEnterpriseArgsDict(TypedDict):
|
|
9280
|
-
|
|
9714
|
+
max_ecku: _builtins.int
|
|
9715
|
+
"""
|
|
9716
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9717
|
+
"""
|
|
9281
9718
|
elif False:
|
|
9282
9719
|
GetKafkaClusterEnterpriseArgsDict: TypeAlias = Mapping[str, Any]
|
|
9283
9720
|
|
|
9284
9721
|
@pulumi.input_type
|
|
9285
9722
|
class GetKafkaClusterEnterpriseArgs:
|
|
9286
|
-
def __init__(__self__
|
|
9287
|
-
|
|
9723
|
+
def __init__(__self__, *,
|
|
9724
|
+
max_ecku: _builtins.int):
|
|
9725
|
+
"""
|
|
9726
|
+
:param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9727
|
+
"""
|
|
9728
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
9729
|
+
|
|
9730
|
+
@_builtins.property
|
|
9731
|
+
@pulumi.getter(name="maxEcku")
|
|
9732
|
+
def max_ecku(self) -> _builtins.int:
|
|
9733
|
+
"""
|
|
9734
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9735
|
+
"""
|
|
9736
|
+
return pulumi.get(self, "max_ecku")
|
|
9737
|
+
|
|
9738
|
+
@max_ecku.setter
|
|
9739
|
+
def max_ecku(self, value: _builtins.int):
|
|
9740
|
+
pulumi.set(self, "max_ecku", value)
|
|
9288
9741
|
|
|
9289
9742
|
|
|
9290
9743
|
if not MYPY:
|
|
@@ -9326,6 +9779,10 @@ class GetKafkaClusterEnvironmentArgs:
|
|
|
9326
9779
|
|
|
9327
9780
|
if not MYPY:
|
|
9328
9781
|
class GetKafkaClusterFreightArgsDict(TypedDict):
|
|
9782
|
+
max_ecku: _builtins.int
|
|
9783
|
+
"""
|
|
9784
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9785
|
+
"""
|
|
9329
9786
|
zones: Sequence[_builtins.str]
|
|
9330
9787
|
"""
|
|
9331
9788
|
(Required List of String) The list of zones the cluster is in.
|
|
@@ -9339,15 +9796,30 @@ elif False:
|
|
|
9339
9796
|
@pulumi.input_type
|
|
9340
9797
|
class GetKafkaClusterFreightArgs:
|
|
9341
9798
|
def __init__(__self__, *,
|
|
9799
|
+
max_ecku: _builtins.int,
|
|
9342
9800
|
zones: Sequence[_builtins.str]):
|
|
9343
9801
|
"""
|
|
9802
|
+
:param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9344
9803
|
:param Sequence[_builtins.str] zones: (Required List of String) The list of zones the cluster is in.
|
|
9345
9804
|
- On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
9346
9805
|
- On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
|
|
9347
9806
|
- On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
|
|
9348
9807
|
"""
|
|
9808
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
9349
9809
|
pulumi.set(__self__, "zones", zones)
|
|
9350
9810
|
|
|
9811
|
+
@_builtins.property
|
|
9812
|
+
@pulumi.getter(name="maxEcku")
|
|
9813
|
+
def max_ecku(self) -> _builtins.int:
|
|
9814
|
+
"""
|
|
9815
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9816
|
+
"""
|
|
9817
|
+
return pulumi.get(self, "max_ecku")
|
|
9818
|
+
|
|
9819
|
+
@max_ecku.setter
|
|
9820
|
+
def max_ecku(self, value: _builtins.int):
|
|
9821
|
+
pulumi.set(self, "max_ecku", value)
|
|
9822
|
+
|
|
9351
9823
|
@_builtins.property
|
|
9352
9824
|
@pulumi.getter
|
|
9353
9825
|
def zones(self) -> Sequence[_builtins.str]:
|
|
@@ -9366,14 +9838,64 @@ class GetKafkaClusterFreightArgs:
|
|
|
9366
9838
|
|
|
9367
9839
|
if not MYPY:
|
|
9368
9840
|
class GetKafkaClusterStandardArgsDict(TypedDict):
|
|
9369
|
-
|
|
9841
|
+
max_ecku: _builtins.int
|
|
9842
|
+
"""
|
|
9843
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9844
|
+
"""
|
|
9370
9845
|
elif False:
|
|
9371
9846
|
GetKafkaClusterStandardArgsDict: TypeAlias = Mapping[str, Any]
|
|
9372
9847
|
|
|
9373
9848
|
@pulumi.input_type
|
|
9374
9849
|
class GetKafkaClusterStandardArgs:
|
|
9375
|
-
def __init__(__self__
|
|
9376
|
-
|
|
9850
|
+
def __init__(__self__, *,
|
|
9851
|
+
max_ecku: _builtins.int):
|
|
9852
|
+
"""
|
|
9853
|
+
:param _builtins.int max_ecku: (Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9854
|
+
"""
|
|
9855
|
+
pulumi.set(__self__, "max_ecku", max_ecku)
|
|
9856
|
+
|
|
9857
|
+
@_builtins.property
|
|
9858
|
+
@pulumi.getter(name="maxEcku")
|
|
9859
|
+
def max_ecku(self) -> _builtins.int:
|
|
9860
|
+
"""
|
|
9861
|
+
(Optional Number) The maximum number of Elastic Confluent Kafka Units (eCKUs) that Kafka clusters should auto-scale to. Kafka clusters with "HIGH" availability must have at least two eCKUs. For more details, see [Maximum eCKU requirements](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#minimum-maximum-ecku-requirements).
|
|
9862
|
+
"""
|
|
9863
|
+
return pulumi.get(self, "max_ecku")
|
|
9864
|
+
|
|
9865
|
+
@max_ecku.setter
|
|
9866
|
+
def max_ecku(self, value: _builtins.int):
|
|
9867
|
+
pulumi.set(self, "max_ecku", value)
|
|
9868
|
+
|
|
9869
|
+
|
|
9870
|
+
if not MYPY:
|
|
9871
|
+
class GetKafkaClustersEnvironmentArgsDict(TypedDict):
|
|
9872
|
+
id: _builtins.str
|
|
9873
|
+
"""
|
|
9874
|
+
The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
|
|
9875
|
+
"""
|
|
9876
|
+
elif False:
|
|
9877
|
+
GetKafkaClustersEnvironmentArgsDict: TypeAlias = Mapping[str, Any]
|
|
9878
|
+
|
|
9879
|
+
@pulumi.input_type
|
|
9880
|
+
class GetKafkaClustersEnvironmentArgs:
|
|
9881
|
+
def __init__(__self__, *,
|
|
9882
|
+
id: _builtins.str):
|
|
9883
|
+
"""
|
|
9884
|
+
:param _builtins.str id: The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
|
|
9885
|
+
"""
|
|
9886
|
+
pulumi.set(__self__, "id", id)
|
|
9887
|
+
|
|
9888
|
+
@_builtins.property
|
|
9889
|
+
@pulumi.getter
|
|
9890
|
+
def id(self) -> _builtins.str:
|
|
9891
|
+
"""
|
|
9892
|
+
The ID of the Environment that the Kafka clusters belongs to, for example, `env-xyz456`.
|
|
9893
|
+
"""
|
|
9894
|
+
return pulumi.get(self, "id")
|
|
9895
|
+
|
|
9896
|
+
@id.setter
|
|
9897
|
+
def id(self, value: _builtins.str):
|
|
9898
|
+
pulumi.set(self, "id", value)
|
|
9377
9899
|
|
|
9378
9900
|
|
|
9379
9901
|
if not MYPY:
|
|
@@ -9991,6 +10513,37 @@ class GetPrivateLinkAttachmentEnvironmentArgs:
|
|
|
9991
10513
|
pulumi.set(self, "id", value)
|
|
9992
10514
|
|
|
9993
10515
|
|
|
10516
|
+
if not MYPY:
|
|
10517
|
+
class GetProviderIntegrationAuthorizationEnvironmentArgsDict(TypedDict):
|
|
10518
|
+
id: _builtins.str
|
|
10519
|
+
"""
|
|
10520
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
10521
|
+
"""
|
|
10522
|
+
elif False:
|
|
10523
|
+
GetProviderIntegrationAuthorizationEnvironmentArgsDict: TypeAlias = Mapping[str, Any]
|
|
10524
|
+
|
|
10525
|
+
@pulumi.input_type
|
|
10526
|
+
class GetProviderIntegrationAuthorizationEnvironmentArgs:
|
|
10527
|
+
def __init__(__self__, *,
|
|
10528
|
+
id: _builtins.str):
|
|
10529
|
+
"""
|
|
10530
|
+
:param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
10531
|
+
"""
|
|
10532
|
+
pulumi.set(__self__, "id", id)
|
|
10533
|
+
|
|
10534
|
+
@_builtins.property
|
|
10535
|
+
@pulumi.getter
|
|
10536
|
+
def id(self) -> _builtins.str:
|
|
10537
|
+
"""
|
|
10538
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
10539
|
+
"""
|
|
10540
|
+
return pulumi.get(self, "id")
|
|
10541
|
+
|
|
10542
|
+
@id.setter
|
|
10543
|
+
def id(self, value: _builtins.str):
|
|
10544
|
+
pulumi.set(self, "id", value)
|
|
10545
|
+
|
|
10546
|
+
|
|
9994
10547
|
if not MYPY:
|
|
9995
10548
|
class GetProviderIntegrationEnvironmentArgsDict(TypedDict):
|
|
9996
10549
|
id: _builtins.str
|
|
@@ -10028,6 +10581,37 @@ class GetProviderIntegrationEnvironmentArgs:
|
|
|
10028
10581
|
pulumi.set(self, "id", value)
|
|
10029
10582
|
|
|
10030
10583
|
|
|
10584
|
+
if not MYPY:
|
|
10585
|
+
class GetProviderIntegrationSetupEnvironmentArgsDict(TypedDict):
|
|
10586
|
+
id: _builtins.str
|
|
10587
|
+
"""
|
|
10588
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
10589
|
+
"""
|
|
10590
|
+
elif False:
|
|
10591
|
+
GetProviderIntegrationSetupEnvironmentArgsDict: TypeAlias = Mapping[str, Any]
|
|
10592
|
+
|
|
10593
|
+
@pulumi.input_type
|
|
10594
|
+
class GetProviderIntegrationSetupEnvironmentArgs:
|
|
10595
|
+
def __init__(__self__, *,
|
|
10596
|
+
id: _builtins.str):
|
|
10597
|
+
"""
|
|
10598
|
+
:param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
10599
|
+
"""
|
|
10600
|
+
pulumi.set(__self__, "id", id)
|
|
10601
|
+
|
|
10602
|
+
@_builtins.property
|
|
10603
|
+
@pulumi.getter
|
|
10604
|
+
def id(self) -> _builtins.str:
|
|
10605
|
+
"""
|
|
10606
|
+
The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
10607
|
+
"""
|
|
10608
|
+
return pulumi.get(self, "id")
|
|
10609
|
+
|
|
10610
|
+
@id.setter
|
|
10611
|
+
def id(self, value: _builtins.str):
|
|
10612
|
+
pulumi.set(self, "id", value)
|
|
10613
|
+
|
|
10614
|
+
|
|
10031
10615
|
if not MYPY:
|
|
10032
10616
|
class GetSchemaCredentialsArgsDict(TypedDict):
|
|
10033
10617
|
key: _builtins.str
|