pulumi-confluentcloud 2.51.0__py3-none-any.whl → 2.52.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.
@@ -327,6 +327,8 @@ __all__ = [
327
327
  'SubjectModeCredentialsArgsDict',
328
328
  'SubjectModeSchemaRegistryClusterArgs',
329
329
  'SubjectModeSchemaRegistryClusterArgsDict',
330
+ 'TableflowTopicAzureDataLakeStorageGen2Args',
331
+ 'TableflowTopicAzureDataLakeStorageGen2ArgsDict',
330
332
  'TableflowTopicByobAwsArgs',
331
333
  'TableflowTopicByobAwsArgsDict',
332
334
  'TableflowTopicCredentialsArgs',
@@ -7840,6 +7842,95 @@ class SubjectModeSchemaRegistryClusterArgs:
7840
7842
  pulumi.set(self, "id", value)
7841
7843
 
7842
7844
 
7845
+ if not MYPY:
7846
+ class TableflowTopicAzureDataLakeStorageGen2ArgsDict(TypedDict):
7847
+ container_name: pulumi.Input[_builtins.str]
7848
+ """
7849
+ The container name.
7850
+ """
7851
+ provider_integration_id: pulumi.Input[_builtins.str]
7852
+ """
7853
+ The provider integration id.
7854
+ """
7855
+ storage_account_name: pulumi.Input[_builtins.str]
7856
+ """
7857
+ The storage account name.
7858
+ """
7859
+ storage_region: NotRequired[pulumi.Input[_builtins.str]]
7860
+ """
7861
+ (Required String) The storage region.
7862
+ """
7863
+ elif False:
7864
+ TableflowTopicAzureDataLakeStorageGen2ArgsDict: TypeAlias = Mapping[str, Any]
7865
+
7866
+ @pulumi.input_type
7867
+ class TableflowTopicAzureDataLakeStorageGen2Args:
7868
+ def __init__(__self__, *,
7869
+ container_name: pulumi.Input[_builtins.str],
7870
+ provider_integration_id: pulumi.Input[_builtins.str],
7871
+ storage_account_name: pulumi.Input[_builtins.str],
7872
+ storage_region: Optional[pulumi.Input[_builtins.str]] = None):
7873
+ """
7874
+ :param pulumi.Input[_builtins.str] container_name: The container name.
7875
+ :param pulumi.Input[_builtins.str] provider_integration_id: The provider integration id.
7876
+ :param pulumi.Input[_builtins.str] storage_account_name: The storage account name.
7877
+ :param pulumi.Input[_builtins.str] storage_region: (Required String) The storage region.
7878
+ """
7879
+ pulumi.set(__self__, "container_name", container_name)
7880
+ pulumi.set(__self__, "provider_integration_id", provider_integration_id)
7881
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
7882
+ if storage_region is not None:
7883
+ pulumi.set(__self__, "storage_region", storage_region)
7884
+
7885
+ @_builtins.property
7886
+ @pulumi.getter(name="containerName")
7887
+ def container_name(self) -> pulumi.Input[_builtins.str]:
7888
+ """
7889
+ The container name.
7890
+ """
7891
+ return pulumi.get(self, "container_name")
7892
+
7893
+ @container_name.setter
7894
+ def container_name(self, value: pulumi.Input[_builtins.str]):
7895
+ pulumi.set(self, "container_name", value)
7896
+
7897
+ @_builtins.property
7898
+ @pulumi.getter(name="providerIntegrationId")
7899
+ def provider_integration_id(self) -> pulumi.Input[_builtins.str]:
7900
+ """
7901
+ The provider integration id.
7902
+ """
7903
+ return pulumi.get(self, "provider_integration_id")
7904
+
7905
+ @provider_integration_id.setter
7906
+ def provider_integration_id(self, value: pulumi.Input[_builtins.str]):
7907
+ pulumi.set(self, "provider_integration_id", value)
7908
+
7909
+ @_builtins.property
7910
+ @pulumi.getter(name="storageAccountName")
7911
+ def storage_account_name(self) -> pulumi.Input[_builtins.str]:
7912
+ """
7913
+ The storage account name.
7914
+ """
7915
+ return pulumi.get(self, "storage_account_name")
7916
+
7917
+ @storage_account_name.setter
7918
+ def storage_account_name(self, value: pulumi.Input[_builtins.str]):
7919
+ pulumi.set(self, "storage_account_name", value)
7920
+
7921
+ @_builtins.property
7922
+ @pulumi.getter(name="storageRegion")
7923
+ def storage_region(self) -> Optional[pulumi.Input[_builtins.str]]:
7924
+ """
7925
+ (Required String) The storage region.
7926
+ """
7927
+ return pulumi.get(self, "storage_region")
7928
+
7929
+ @storage_region.setter
7930
+ def storage_region(self, value: Optional[pulumi.Input[_builtins.str]]):
7931
+ pulumi.set(self, "storage_region", value)
7932
+
7933
+
7843
7934
  if not MYPY:
7844
7935
  class TableflowTopicByobAwsArgsDict(TypedDict):
7845
7936
  bucket_name: pulumi.Input[_builtins.str]
@@ -28,7 +28,10 @@ class GetTableflowTopicResult:
28
28
  """
29
29
  A collection of values returned by getTableflowTopic.
30
30
  """
31
- def __init__(__self__, byob_aws=None, credentials=None, display_name=None, enable_compaction=None, enable_partitioning=None, environment=None, error_handlings=None, id=None, kafka_cluster=None, managed_storages=None, record_failure_strategy=None, retention_ms=None, suspended=None, table_formats=None, table_path=None, write_mode=None):
31
+ def __init__(__self__, azure_data_lake_storage_gen2s=None, byob_aws=None, credentials=None, display_name=None, enable_compaction=None, enable_partitioning=None, environment=None, error_handlings=None, id=None, kafka_cluster=None, managed_storages=None, record_failure_strategy=None, retention_ms=None, suspended=None, table_formats=None, table_path=None, write_mode=None):
32
+ if azure_data_lake_storage_gen2s and not isinstance(azure_data_lake_storage_gen2s, list):
33
+ raise TypeError("Expected argument 'azure_data_lake_storage_gen2s' to be a list")
34
+ pulumi.set(__self__, "azure_data_lake_storage_gen2s", azure_data_lake_storage_gen2s)
32
35
  if byob_aws and not isinstance(byob_aws, list):
33
36
  raise TypeError("Expected argument 'byob_aws' to be a list")
34
37
  pulumi.set(__self__, "byob_aws", byob_aws)
@@ -78,6 +81,14 @@ class GetTableflowTopicResult:
78
81
  raise TypeError("Expected argument 'write_mode' to be a str")
79
82
  pulumi.set(__self__, "write_mode", write_mode)
80
83
 
84
+ @_builtins.property
85
+ @pulumi.getter(name="azureDataLakeStorageGen2s")
86
+ def azure_data_lake_storage_gen2s(self) -> Sequence['outputs.GetTableflowTopicAzureDataLakeStorageGen2Result']:
87
+ """
88
+ (Optional Configuration Block) supports the following:
89
+ """
90
+ return pulumi.get(self, "azure_data_lake_storage_gen2s")
91
+
81
92
  @_builtins.property
82
93
  @pulumi.getter(name="byobAws")
83
94
  def byob_aws(self) -> Sequence['outputs.GetTableflowTopicByobAwResult']:
@@ -201,6 +212,7 @@ class AwaitableGetTableflowTopicResult(GetTableflowTopicResult):
201
212
  if False:
202
213
  yield self
203
214
  return GetTableflowTopicResult(
215
+ azure_data_lake_storage_gen2s=self.azure_data_lake_storage_gen2s,
204
216
  byob_aws=self.byob_aws,
205
217
  credentials=self.credentials,
206
218
  display_name=self.display_name,
@@ -273,6 +285,7 @@ def get_tableflow_topic(credentials: Optional[Union['GetTableflowTopicCredential
273
285
  __ret__ = pulumi.runtime.invoke('confluentcloud:index/getTableflowTopic:getTableflowTopic', __args__, opts=opts, typ=GetTableflowTopicResult).value
274
286
 
275
287
  return AwaitableGetTableflowTopicResult(
288
+ azure_data_lake_storage_gen2s=pulumi.get(__ret__, 'azure_data_lake_storage_gen2s'),
276
289
  byob_aws=pulumi.get(__ret__, 'byob_aws'),
277
290
  credentials=pulumi.get(__ret__, 'credentials'),
278
291
  display_name=pulumi.get(__ret__, 'display_name'),
@@ -342,6 +355,7 @@ def get_tableflow_topic_output(credentials: Optional[pulumi.Input[Optional[Union
342
355
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
343
356
  __ret__ = pulumi.runtime.invoke_output('confluentcloud:index/getTableflowTopic:getTableflowTopic', __args__, opts=opts, typ=GetTableflowTopicResult)
344
357
  return __ret__.apply(lambda __response__: GetTableflowTopicResult(
358
+ azure_data_lake_storage_gen2s=pulumi.get(__response__, 'azure_data_lake_storage_gen2s'),
345
359
  byob_aws=pulumi.get(__response__, 'byob_aws'),
346
360
  credentials=pulumi.get(__response__, 'credentials'),
347
361
  display_name=pulumi.get(__response__, 'display_name'),
@@ -171,6 +171,7 @@ __all__ = [
171
171
  'SubjectConfigSchemaRegistryCluster',
172
172
  'SubjectModeCredentials',
173
173
  'SubjectModeSchemaRegistryCluster',
174
+ 'TableflowTopicAzureDataLakeStorageGen2',
174
175
  'TableflowTopicByobAws',
175
176
  'TableflowTopicCredentials',
176
177
  'TableflowTopicEnvironment',
@@ -327,6 +328,7 @@ __all__ = [
327
328
  'GetSubjectConfigSchemaRegistryClusterResult',
328
329
  'GetSubjectModeCredentialsResult',
329
330
  'GetSubjectModeSchemaRegistryClusterResult',
331
+ 'GetTableflowTopicAzureDataLakeStorageGen2Result',
330
332
  'GetTableflowTopicByobAwResult',
331
333
  'GetTableflowTopicCredentialsResult',
332
334
  'GetTableflowTopicEnvironmentResult',
@@ -5419,6 +5421,81 @@ class SubjectModeSchemaRegistryCluster(dict):
5419
5421
  return pulumi.get(self, "id")
5420
5422
 
5421
5423
 
5424
+ @pulumi.output_type
5425
+ class TableflowTopicAzureDataLakeStorageGen2(dict):
5426
+ @staticmethod
5427
+ def __key_warning(key: str):
5428
+ suggest = None
5429
+ if key == "containerName":
5430
+ suggest = "container_name"
5431
+ elif key == "providerIntegrationId":
5432
+ suggest = "provider_integration_id"
5433
+ elif key == "storageAccountName":
5434
+ suggest = "storage_account_name"
5435
+ elif key == "storageRegion":
5436
+ suggest = "storage_region"
5437
+
5438
+ if suggest:
5439
+ pulumi.log.warn(f"Key '{key}' not found in TableflowTopicAzureDataLakeStorageGen2. Access the value via the '{suggest}' property getter instead.")
5440
+
5441
+ def __getitem__(self, key: str) -> Any:
5442
+ TableflowTopicAzureDataLakeStorageGen2.__key_warning(key)
5443
+ return super().__getitem__(key)
5444
+
5445
+ def get(self, key: str, default = None) -> Any:
5446
+ TableflowTopicAzureDataLakeStorageGen2.__key_warning(key)
5447
+ return super().get(key, default)
5448
+
5449
+ def __init__(__self__, *,
5450
+ container_name: _builtins.str,
5451
+ provider_integration_id: _builtins.str,
5452
+ storage_account_name: _builtins.str,
5453
+ storage_region: Optional[_builtins.str] = None):
5454
+ """
5455
+ :param _builtins.str container_name: The container name.
5456
+ :param _builtins.str provider_integration_id: The provider integration id.
5457
+ :param _builtins.str storage_account_name: The storage account name.
5458
+ :param _builtins.str storage_region: (Required String) The storage region.
5459
+ """
5460
+ pulumi.set(__self__, "container_name", container_name)
5461
+ pulumi.set(__self__, "provider_integration_id", provider_integration_id)
5462
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
5463
+ if storage_region is not None:
5464
+ pulumi.set(__self__, "storage_region", storage_region)
5465
+
5466
+ @_builtins.property
5467
+ @pulumi.getter(name="containerName")
5468
+ def container_name(self) -> _builtins.str:
5469
+ """
5470
+ The container name.
5471
+ """
5472
+ return pulumi.get(self, "container_name")
5473
+
5474
+ @_builtins.property
5475
+ @pulumi.getter(name="providerIntegrationId")
5476
+ def provider_integration_id(self) -> _builtins.str:
5477
+ """
5478
+ The provider integration id.
5479
+ """
5480
+ return pulumi.get(self, "provider_integration_id")
5481
+
5482
+ @_builtins.property
5483
+ @pulumi.getter(name="storageAccountName")
5484
+ def storage_account_name(self) -> _builtins.str:
5485
+ """
5486
+ The storage account name.
5487
+ """
5488
+ return pulumi.get(self, "storage_account_name")
5489
+
5490
+ @_builtins.property
5491
+ @pulumi.getter(name="storageRegion")
5492
+ def storage_region(self) -> Optional[_builtins.str]:
5493
+ """
5494
+ (Required String) The storage region.
5495
+ """
5496
+ return pulumi.get(self, "storage_region")
5497
+
5498
+
5422
5499
  @pulumi.output_type
5423
5500
  class TableflowTopicByobAws(dict):
5424
5501
  @staticmethod
@@ -10043,6 +10120,68 @@ class GetSubjectModeSchemaRegistryClusterResult(dict):
10043
10120
  return pulumi.get(self, "id")
10044
10121
 
10045
10122
 
10123
+ @pulumi.output_type
10124
+ class GetTableflowTopicAzureDataLakeStorageGen2Result(dict):
10125
+ def __init__(__self__, *,
10126
+ container_name: _builtins.str,
10127
+ provider_integration_id: _builtins.str,
10128
+ storage_account_name: _builtins.str,
10129
+ storage_region: _builtins.str,
10130
+ table_path: _builtins.str):
10131
+ """
10132
+ :param _builtins.str container_name: (Required String) The container name.
10133
+ :param _builtins.str provider_integration_id: (Required String) The provider integration id.
10134
+ :param _builtins.str storage_account_name: (Required String) The storage account name.
10135
+ :param _builtins.str storage_region: (Required String) The storage region.
10136
+ :param _builtins.str table_path: (Optional String) The current storage path where the data and metadata is stored for this table.
10137
+ """
10138
+ pulumi.set(__self__, "container_name", container_name)
10139
+ pulumi.set(__self__, "provider_integration_id", provider_integration_id)
10140
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
10141
+ pulumi.set(__self__, "storage_region", storage_region)
10142
+ pulumi.set(__self__, "table_path", table_path)
10143
+
10144
+ @_builtins.property
10145
+ @pulumi.getter(name="containerName")
10146
+ def container_name(self) -> _builtins.str:
10147
+ """
10148
+ (Required String) The container name.
10149
+ """
10150
+ return pulumi.get(self, "container_name")
10151
+
10152
+ @_builtins.property
10153
+ @pulumi.getter(name="providerIntegrationId")
10154
+ def provider_integration_id(self) -> _builtins.str:
10155
+ """
10156
+ (Required String) The provider integration id.
10157
+ """
10158
+ return pulumi.get(self, "provider_integration_id")
10159
+
10160
+ @_builtins.property
10161
+ @pulumi.getter(name="storageAccountName")
10162
+ def storage_account_name(self) -> _builtins.str:
10163
+ """
10164
+ (Required String) The storage account name.
10165
+ """
10166
+ return pulumi.get(self, "storage_account_name")
10167
+
10168
+ @_builtins.property
10169
+ @pulumi.getter(name="storageRegion")
10170
+ def storage_region(self) -> _builtins.str:
10171
+ """
10172
+ (Required String) The storage region.
10173
+ """
10174
+ return pulumi.get(self, "storage_region")
10175
+
10176
+ @_builtins.property
10177
+ @pulumi.getter(name="tablePath")
10178
+ def table_path(self) -> _builtins.str:
10179
+ """
10180
+ (Optional String) The current storage path where the data and metadata is stored for this table.
10181
+ """
10182
+ return pulumi.get(self, "table_path")
10183
+
10184
+
10046
10185
  @pulumi.output_type
10047
10186
  class GetTableflowTopicByobAwResult(dict):
10048
10187
  def __init__(__self__, *,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "confluentcloud",
4
- "version": "2.51.0"
4
+ "version": "2.52.0"
5
5
  }
@@ -24,6 +24,7 @@ class TableflowTopicArgs:
24
24
  display_name: pulumi.Input[_builtins.str],
25
25
  environment: pulumi.Input['TableflowTopicEnvironmentArgs'],
26
26
  kafka_cluster: pulumi.Input['TableflowTopicKafkaClusterArgs'],
27
+ azure_data_lake_storage_gen2: Optional[pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args']] = None,
27
28
  byob_aws: Optional[pulumi.Input['TableflowTopicByobAwsArgs']] = None,
28
29
  credentials: Optional[pulumi.Input['TableflowTopicCredentialsArgs']] = None,
29
30
  error_handling: Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']] = None,
@@ -35,6 +36,7 @@ class TableflowTopicArgs:
35
36
  The set of arguments for constructing a TableflowTopic resource.
36
37
  :param pulumi.Input[_builtins.str] display_name: The name of the Kafka topic for which Tableflow is enabled.
37
38
  :param pulumi.Input['TableflowTopicEnvironmentArgs'] environment: Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
39
+ :param pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args'] azure_data_lake_storage_gen2: (Optional Configuration Block) supports the following:
38
40
  :param pulumi.Input['TableflowTopicByobAwsArgs'] byob_aws: supports the following (See [Quick Start with Custom Storage](https://docs.confluent.io/cloud/current/topics/tableflow/get-started/quick-start-custom-storage-glue.html#cloud-tableflow-quick-start) for more details):
39
41
  :param pulumi.Input['TableflowTopicCredentialsArgs'] credentials: The Cluster API Credentials.
40
42
  :param pulumi.Input[Sequence[pulumi.Input['TableflowTopicManagedStorageArgs']]] managed_storages: The configuration of the Confluent managed storage. See [Quick Start with Managed Storage](https://docs.confluent.io/cloud/current/topics/tableflow/get-started/quick-start-managed-storage.html#cloud-tableflow-quick-start-managed-storage) for more details.
@@ -45,6 +47,8 @@ class TableflowTopicArgs:
45
47
  pulumi.set(__self__, "display_name", display_name)
46
48
  pulumi.set(__self__, "environment", environment)
47
49
  pulumi.set(__self__, "kafka_cluster", kafka_cluster)
50
+ if azure_data_lake_storage_gen2 is not None:
51
+ pulumi.set(__self__, "azure_data_lake_storage_gen2", azure_data_lake_storage_gen2)
48
52
  if byob_aws is not None:
49
53
  pulumi.set(__self__, "byob_aws", byob_aws)
50
54
  if credentials is not None:
@@ -96,6 +100,18 @@ class TableflowTopicArgs:
96
100
  def kafka_cluster(self, value: pulumi.Input['TableflowTopicKafkaClusterArgs']):
97
101
  pulumi.set(self, "kafka_cluster", value)
98
102
 
103
+ @_builtins.property
104
+ @pulumi.getter(name="azureDataLakeStorageGen2")
105
+ def azure_data_lake_storage_gen2(self) -> Optional[pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args']]:
106
+ """
107
+ (Optional Configuration Block) supports the following:
108
+ """
109
+ return pulumi.get(self, "azure_data_lake_storage_gen2")
110
+
111
+ @azure_data_lake_storage_gen2.setter
112
+ def azure_data_lake_storage_gen2(self, value: Optional[pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args']]):
113
+ pulumi.set(self, "azure_data_lake_storage_gen2", value)
114
+
99
115
  @_builtins.property
100
116
  @pulumi.getter(name="byobAws")
101
117
  def byob_aws(self) -> Optional[pulumi.Input['TableflowTopicByobAwsArgs']]:
@@ -182,6 +198,7 @@ class TableflowTopicArgs:
182
198
  @pulumi.input_type
183
199
  class _TableflowTopicState:
184
200
  def __init__(__self__, *,
201
+ azure_data_lake_storage_gen2: Optional[pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args']] = None,
185
202
  byob_aws: Optional[pulumi.Input['TableflowTopicByobAwsArgs']] = None,
186
203
  credentials: Optional[pulumi.Input['TableflowTopicCredentialsArgs']] = None,
187
204
  display_name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -199,6 +216,7 @@ class _TableflowTopicState:
199
216
  write_mode: Optional[pulumi.Input[_builtins.str]] = None):
200
217
  """
201
218
  Input properties used for looking up and filtering TableflowTopic resources.
219
+ :param pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args'] azure_data_lake_storage_gen2: (Optional Configuration Block) supports the following:
202
220
  :param pulumi.Input['TableflowTopicByobAwsArgs'] byob_aws: supports the following (See [Quick Start with Custom Storage](https://docs.confluent.io/cloud/current/topics/tableflow/get-started/quick-start-custom-storage-glue.html#cloud-tableflow-quick-start) for more details):
203
221
  :param pulumi.Input['TableflowTopicCredentialsArgs'] credentials: The Cluster API Credentials.
204
222
  :param pulumi.Input[_builtins.str] display_name: The name of the Kafka topic for which Tableflow is enabled.
@@ -213,6 +231,8 @@ class _TableflowTopicState:
213
231
  :param pulumi.Input[_builtins.str] table_path: (Optional String) The current storage path where the data and metadata is stored for this table.
214
232
  :param pulumi.Input[_builtins.str] write_mode: (Optional String) Indicates the write mode of the Tableflow topic.
215
233
  """
234
+ if azure_data_lake_storage_gen2 is not None:
235
+ pulumi.set(__self__, "azure_data_lake_storage_gen2", azure_data_lake_storage_gen2)
216
236
  if byob_aws is not None:
217
237
  pulumi.set(__self__, "byob_aws", byob_aws)
218
238
  if credentials is not None:
@@ -247,6 +267,18 @@ class _TableflowTopicState:
247
267
  if write_mode is not None:
248
268
  pulumi.set(__self__, "write_mode", write_mode)
249
269
 
270
+ @_builtins.property
271
+ @pulumi.getter(name="azureDataLakeStorageGen2")
272
+ def azure_data_lake_storage_gen2(self) -> Optional[pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args']]:
273
+ """
274
+ (Optional Configuration Block) supports the following:
275
+ """
276
+ return pulumi.get(self, "azure_data_lake_storage_gen2")
277
+
278
+ @azure_data_lake_storage_gen2.setter
279
+ def azure_data_lake_storage_gen2(self, value: Optional[pulumi.Input['TableflowTopicAzureDataLakeStorageGen2Args']]):
280
+ pulumi.set(self, "azure_data_lake_storage_gen2", value)
281
+
250
282
  @_builtins.property
251
283
  @pulumi.getter(name="byobAws")
252
284
  def byob_aws(self) -> Optional[pulumi.Input['TableflowTopicByobAwsArgs']]:
@@ -429,6 +461,7 @@ class TableflowTopic(pulumi.CustomResource):
429
461
  def __init__(__self__,
430
462
  resource_name: str,
431
463
  opts: Optional[pulumi.ResourceOptions] = None,
464
+ azure_data_lake_storage_gen2: Optional[pulumi.Input[Union['TableflowTopicAzureDataLakeStorageGen2Args', 'TableflowTopicAzureDataLakeStorageGen2ArgsDict']]] = None,
432
465
  byob_aws: Optional[pulumi.Input[Union['TableflowTopicByobAwsArgs', 'TableflowTopicByobAwsArgsDict']]] = None,
433
466
  credentials: Optional[pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']]] = None,
434
467
  display_name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -487,15 +520,6 @@ class TableflowTopic(pulumi.CustomResource):
487
520
  "provider_integration_id": main["id"],
488
521
  })
489
522
  ```
490
-
491
- ## Getting Started
492
-
493
- The following end-to-end examples might help to get started with `TableflowTopic` resource:
494
- * confluent-managed-storage: Tableflow topic with Confluent-managed storage.
495
- * byob-aws-storage: Tableflow topic with custom (BYOB AWS) storage.
496
- * datagen-connector-byob-aws-storage: Datagen Source connector with a Tableflow topic with custom (BYOB AWS) storage.
497
- * datagen-connector-confluent-managed-storage: Datagen Source connector with a Tableflow topic with Confluent-managed storage.
498
-
499
523
  ## Import
500
524
 
501
525
  You can import a Tableflow Topic by using the Tableflow Topic name, Environment ID, and Kafka Cluster ID, in the format `<Environment ID>/<Kafka Cluster ID>/<Tableflow Topic name>`, for example:
@@ -520,6 +544,7 @@ class TableflowTopic(pulumi.CustomResource):
520
544
 
521
545
  :param str resource_name: The name of the resource.
522
546
  :param pulumi.ResourceOptions opts: Options for the resource.
547
+ :param pulumi.Input[Union['TableflowTopicAzureDataLakeStorageGen2Args', 'TableflowTopicAzureDataLakeStorageGen2ArgsDict']] azure_data_lake_storage_gen2: (Optional Configuration Block) supports the following:
523
548
  :param pulumi.Input[Union['TableflowTopicByobAwsArgs', 'TableflowTopicByobAwsArgsDict']] byob_aws: supports the following (See [Quick Start with Custom Storage](https://docs.confluent.io/cloud/current/topics/tableflow/get-started/quick-start-custom-storage-glue.html#cloud-tableflow-quick-start) for more details):
524
549
  :param pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']] credentials: The Cluster API Credentials.
525
550
  :param pulumi.Input[_builtins.str] display_name: The name of the Kafka topic for which Tableflow is enabled.
@@ -582,15 +607,6 @@ class TableflowTopic(pulumi.CustomResource):
582
607
  "provider_integration_id": main["id"],
583
608
  })
584
609
  ```
585
-
586
- ## Getting Started
587
-
588
- The following end-to-end examples might help to get started with `TableflowTopic` resource:
589
- * confluent-managed-storage: Tableflow topic with Confluent-managed storage.
590
- * byob-aws-storage: Tableflow topic with custom (BYOB AWS) storage.
591
- * datagen-connector-byob-aws-storage: Datagen Source connector with a Tableflow topic with custom (BYOB AWS) storage.
592
- * datagen-connector-confluent-managed-storage: Datagen Source connector with a Tableflow topic with Confluent-managed storage.
593
-
594
610
  ## Import
595
611
 
596
612
  You can import a Tableflow Topic by using the Tableflow Topic name, Environment ID, and Kafka Cluster ID, in the format `<Environment ID>/<Kafka Cluster ID>/<Tableflow Topic name>`, for example:
@@ -628,6 +644,7 @@ class TableflowTopic(pulumi.CustomResource):
628
644
  def _internal_init(__self__,
629
645
  resource_name: str,
630
646
  opts: Optional[pulumi.ResourceOptions] = None,
647
+ azure_data_lake_storage_gen2: Optional[pulumi.Input[Union['TableflowTopicAzureDataLakeStorageGen2Args', 'TableflowTopicAzureDataLakeStorageGen2ArgsDict']]] = None,
631
648
  byob_aws: Optional[pulumi.Input[Union['TableflowTopicByobAwsArgs', 'TableflowTopicByobAwsArgsDict']]] = None,
632
649
  credentials: Optional[pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']]] = None,
633
650
  display_name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -647,6 +664,7 @@ class TableflowTopic(pulumi.CustomResource):
647
664
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
648
665
  __props__ = TableflowTopicArgs.__new__(TableflowTopicArgs)
649
666
 
667
+ __props__.__dict__["azure_data_lake_storage_gen2"] = azure_data_lake_storage_gen2
650
668
  __props__.__dict__["byob_aws"] = byob_aws
651
669
  __props__.__dict__["credentials"] = None if credentials is None else pulumi.Output.secret(credentials)
652
670
  if display_name is None and not opts.urn:
@@ -680,6 +698,7 @@ class TableflowTopic(pulumi.CustomResource):
680
698
  def get(resource_name: str,
681
699
  id: pulumi.Input[str],
682
700
  opts: Optional[pulumi.ResourceOptions] = None,
701
+ azure_data_lake_storage_gen2: Optional[pulumi.Input[Union['TableflowTopicAzureDataLakeStorageGen2Args', 'TableflowTopicAzureDataLakeStorageGen2ArgsDict']]] = None,
683
702
  byob_aws: Optional[pulumi.Input[Union['TableflowTopicByobAwsArgs', 'TableflowTopicByobAwsArgsDict']]] = None,
684
703
  credentials: Optional[pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']]] = None,
685
704
  display_name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -702,6 +721,7 @@ class TableflowTopic(pulumi.CustomResource):
702
721
  :param str resource_name: The unique name of the resulting resource.
703
722
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
704
723
  :param pulumi.ResourceOptions opts: Options for the resource.
724
+ :param pulumi.Input[Union['TableflowTopicAzureDataLakeStorageGen2Args', 'TableflowTopicAzureDataLakeStorageGen2ArgsDict']] azure_data_lake_storage_gen2: (Optional Configuration Block) supports the following:
705
725
  :param pulumi.Input[Union['TableflowTopicByobAwsArgs', 'TableflowTopicByobAwsArgsDict']] byob_aws: supports the following (See [Quick Start with Custom Storage](https://docs.confluent.io/cloud/current/topics/tableflow/get-started/quick-start-custom-storage-glue.html#cloud-tableflow-quick-start) for more details):
706
726
  :param pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']] credentials: The Cluster API Credentials.
707
727
  :param pulumi.Input[_builtins.str] display_name: The name of the Kafka topic for which Tableflow is enabled.
@@ -720,6 +740,7 @@ class TableflowTopic(pulumi.CustomResource):
720
740
 
721
741
  __props__ = _TableflowTopicState.__new__(_TableflowTopicState)
722
742
 
743
+ __props__.__dict__["azure_data_lake_storage_gen2"] = azure_data_lake_storage_gen2
723
744
  __props__.__dict__["byob_aws"] = byob_aws
724
745
  __props__.__dict__["credentials"] = credentials
725
746
  __props__.__dict__["display_name"] = display_name
@@ -737,6 +758,14 @@ class TableflowTopic(pulumi.CustomResource):
737
758
  __props__.__dict__["write_mode"] = write_mode
738
759
  return TableflowTopic(resource_name, opts=opts, __props__=__props__)
739
760
 
761
+ @_builtins.property
762
+ @pulumi.getter(name="azureDataLakeStorageGen2")
763
+ def azure_data_lake_storage_gen2(self) -> pulumi.Output[Optional['outputs.TableflowTopicAzureDataLakeStorageGen2']]:
764
+ """
765
+ (Optional Configuration Block) supports the following:
766
+ """
767
+ return pulumi.get(self, "azure_data_lake_storage_gen2")
768
+
740
769
  @_builtins.property
741
770
  @pulumi.getter(name="byobAws")
742
771
  def byob_aws(self) -> pulumi.Output[Optional['outputs.TableflowTopicByobAws']]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_confluentcloud
3
- Version: 2.51.0
3
+ Version: 2.52.0
4
4
  Summary: A Pulumi package for creating and managing Confluent cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -1,5 +1,5 @@
1
1
  pulumi_confluentcloud/__init__.py,sha256=njoOocldDmVmxvwjY0h3gDa9vLDo_vpJsKmu8LK1Uks,16765
2
- pulumi_confluentcloud/_inputs.py,sha256=3saWgVNL2700CGB6W2Jhshc_jEwLEnINGZz4MWURJC0,475774
2
+ pulumi_confluentcloud/_inputs.py,sha256=T1lZNvkdO0i2ujq__I58IvunwXp20PRcKUxNNWzPywg,479260
3
3
  pulumi_confluentcloud/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_confluentcloud/access_point.py,sha256=EWjw5oS5Zvch3deV4n8oUv9AV73aYy7qUrEJ6ji0Db0,32976
5
5
  pulumi_confluentcloud/api_key.py,sha256=-jTRJ8ztmZQoqb3T9IzR7bhBdV9PxwUHDj8sG4O93Dc,36850
@@ -75,7 +75,7 @@ pulumi_confluentcloud/get_schemas.py,sha256=Mr-OM-3oJsdPPXbq1J38Z2N8aybF6WXBq-bM
75
75
  pulumi_confluentcloud/get_service_account.py,sha256=3lk7TNkGjmi4c1oa4o8O4XjMw8EIlZg332Ije6jUqfg,7331
76
76
  pulumi_confluentcloud/get_subject_config.py,sha256=dKd28r2YSQZZ5Wtjn5CxfiX1sCYQBubvbCWDWc9-jhU,9328
77
77
  pulumi_confluentcloud/get_subject_mode.py,sha256=RJKGulZlRGGkoGVgEW8_Mv7wkVJfu5wB5RU2Po9PJ_E,10545
78
- pulumi_confluentcloud/get_tableflow_topic.py,sha256=7SFh2xCXl34dADEhEJ0lSzWxHgzFnRsCtWHwCyUs59g,16521
78
+ pulumi_confluentcloud/get_tableflow_topic.py,sha256=dYeXZbuN815Z4BE5usmhQSdqIkvRfMRwA8P-uzDRkpA,17455
79
79
  pulumi_confluentcloud/get_tag.py,sha256=vBOXia2VjmhKoQfRY0A9wv8KXO5IcPOdDa_CAtDfd6M,11178
80
80
  pulumi_confluentcloud/get_tag_binding.py,sha256=1yXnizQsxxxD5YaTezzbC8bx4W_guaXD4UAJbaD94Tc,13071
81
81
  pulumi_confluentcloud/get_transit_gateway_attachment.py,sha256=TUOrt6fi7LD4QukfQkthoSRprS9cMoSZMpZehK_yhIU,8504
@@ -97,7 +97,7 @@ pulumi_confluentcloud/ksql_cluster.py,sha256=2iHuwHft1nFCJHHUZ_OQ6za0Wwhc01VyfdV
97
97
  pulumi_confluentcloud/network.py,sha256=8CtwHx8oTbnbgX7F4WLcmyFHUR5v-d6mt4XtcYdGShw,65777
98
98
  pulumi_confluentcloud/network_link_endpoint.py,sha256=mIDIlsxhKa5wwaLJzBn9aMGGl_lYRcZvUDjLFEh5aYI,21019
99
99
  pulumi_confluentcloud/network_link_service.py,sha256=1EYvdSSxGVyf9EYUb9KQEGF_d7ct74B4BTQcy5VvTto,21597
100
- pulumi_confluentcloud/outputs.py,sha256=JpWdKPjiDZ-saZ8ZfkZGWcfQr1KmPvLmX_2WZAQdRvY,416836
100
+ pulumi_confluentcloud/outputs.py,sha256=i-3OrQV2Ld-zbySmJLDY0gBrXVIpesxx3X2uczhrI68,422261
101
101
  pulumi_confluentcloud/peering.py,sha256=JLZhrSeVal5O2KcWqgKjcA_NVxm4jCgdmKkeVqEcLAI,26219
102
102
  pulumi_confluentcloud/plugin.py,sha256=CKzFzVS27r-z8IC6uQKg6JMTAY-58RfRp9WZfybQC9c,19241
103
103
  pulumi_confluentcloud/private_link_access.py,sha256=RXRS63n0MtU1rqscLqDiZXCPTyB6Agn4CwKu5BEg6BY,26465
@@ -107,7 +107,7 @@ pulumi_confluentcloud/provider.py,sha256=sN-VlTRE0cOeq78IKZopdjt1JLVRJpXA3LYYbYi
107
107
  pulumi_confluentcloud/provider_integration.py,sha256=RmBOJN9EFsKlRiBAEP2_hXl-LR0FMWA6_qC61HWocPQ,16497
108
108
  pulumi_confluentcloud/provider_integration_authorization.py,sha256=iESH7OhbtppHB3wY8oBgpWAl9mrvp6Iar9vWtuXjHso,17537
109
109
  pulumi_confluentcloud/provider_integration_setup.py,sha256=q06Qw844J2N0uoctoACyySDy9piyuqjHzAjZS_WsHIc,19706
110
- pulumi_confluentcloud/pulumi-plugin.json,sha256=5fv2roqTyz1gpESCheMCZ-O1uhSlmyMiB_eSmGWbQQM,74
110
+ pulumi_confluentcloud/pulumi-plugin.json,sha256=zNXfgtLXywkC1WbVq2ZvhDWHSyagxGExrKizohnovTU,74
111
111
  pulumi_confluentcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
112
  pulumi_confluentcloud/role_binding.py,sha256=MbeRwcuWNj_KSnNP2zEqNSthGBV1z1haBjbk97pvMZk,20463
113
113
  pulumi_confluentcloud/schema.py,sha256=CYdHdFIw-VYplimUSaTWGittfo5wUOEWuFYfD_kUbvI,49055
@@ -119,7 +119,7 @@ pulumi_confluentcloud/schema_registry_kek.py,sha256=zRcr3nKOwOguV99lC8W3TuUVjsH3
119
119
  pulumi_confluentcloud/service_account.py,sha256=cGwmSYtZN0DW3l2_stxjfgV6FDIks9a77a2nO2xptQE,19583
120
120
  pulumi_confluentcloud/subject_config.py,sha256=OXU_91oUU5FLf8rRjTc2J7aUzCPzZvLlAygSge5eaQE,30180
121
121
  pulumi_confluentcloud/subject_mode.py,sha256=0wyvTJS2EARMEloedqC_Ux4nQUSh5f3wuLe1TAXtIh8,24612
122
- pulumi_confluentcloud/tableflow_topic.py,sha256=TSjIoglzQzL1qwQniNWpEZCvOO6EN_MfAm_fo-GsT-4,47770
122
+ pulumi_confluentcloud/tableflow_topic.py,sha256=3cX-zNsZwzg0nR3zGgk_zxKtUomn52fFWtjaFlokHqg,50173
123
123
  pulumi_confluentcloud/tag.py,sha256=knvRKPcNHRddvzLYwnra8vwW5cxycZOG71Cli_lhLmg,23746
124
124
  pulumi_confluentcloud/tag_binding.py,sha256=lk5cphmn882kG4deW2vQue69aTLOLsM6kJ1quwZT3NY,30739
125
125
  pulumi_confluentcloud/tf_importer.py,sha256=D0oj3ocsPCHOdzVOGHcBLDJ0AenFOVPK13R9BMTcGfY,13500
@@ -128,7 +128,7 @@ pulumi_confluentcloud/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJ
128
128
  pulumi_confluentcloud/config/__init__.pyi,sha256=wUpGQFTVXK9rFefT-KLKGEPtajQG_D4Due_TzbOT5jE,2151
129
129
  pulumi_confluentcloud/config/outputs.py,sha256=j9KabfxdzVhzLBDXzRsfQbM3kPvizCnfA4jT1GiYu7I,5369
130
130
  pulumi_confluentcloud/config/vars.py,sha256=a6jklkyhkLNyX1ZeL2snOeaA6uX4dqwUZl5fUDp3wMQ,4915
131
- pulumi_confluentcloud-2.51.0.dist-info/METADATA,sha256=bKtJeoWL0BPWHnIgtAnxWESMs0Ubv_8sVQUd4cOv7fU,2887
132
- pulumi_confluentcloud-2.51.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
- pulumi_confluentcloud-2.51.0.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
134
- pulumi_confluentcloud-2.51.0.dist-info/RECORD,,
131
+ pulumi_confluentcloud-2.52.0.dist-info/METADATA,sha256=f7QXnMQjeu6psg-t2LxJJd_Leam4jH654oUpNU0em2U,2887
132
+ pulumi_confluentcloud-2.52.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
+ pulumi_confluentcloud-2.52.0.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
134
+ pulumi_confluentcloud-2.52.0.dist-info/RECORD,,