pulumi-confluentcloud 2.50.0a1762926155__py3-none-any.whl → 2.50.0a1763185030__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.
@@ -225,12 +225,96 @@ class ApiKey(pulumi.CustomResource):
225
225
  ## Example Usage
226
226
 
227
227
  ### Example Kafka API Key
228
+ ```python
229
+ import pulumi
230
+ import pulumi_confluentcloud as confluentcloud
231
+
232
+ app_manager_kafka_api_key = confluentcloud.ApiKey("app-manager-kafka-api-key",
233
+ display_name="app-manager-kafka-api-key",
234
+ description="Kafka API Key that is owned by 'app-manager' service account",
235
+ owner={
236
+ "id": app_manager["id"],
237
+ "api_version": app_manager["apiVersion"],
238
+ "kind": app_manager["kind"],
239
+ },
240
+ managed_resource={
241
+ "id": basic["id"],
242
+ "api_version": basic["apiVersion"],
243
+ "kind": basic["kind"],
244
+ "environments": [{
245
+ "id": staging["id"],
246
+ }],
247
+ })
248
+ ```
228
249
 
229
250
  ### Example ksqlDB API Key
251
+ ```python
252
+ import pulumi
253
+ import pulumi_confluentcloud as confluentcloud
254
+
255
+ ksqldb_api_key = confluentcloud.ApiKey("ksqldb-api-key",
256
+ display_name="ksqldb-api-key",
257
+ description="KsqlDB API Key that is owned by 'app-manager' service account",
258
+ owner={
259
+ "id": app_manager["id"],
260
+ "api_version": app_manager["apiVersion"],
261
+ "kind": app_manager["kind"],
262
+ },
263
+ managed_resource={
264
+ "id": main["id"],
265
+ "api_version": main["apiVersion"],
266
+ "kind": main["kind"],
267
+ "environments": [{
268
+ "id": staging["id"],
269
+ }],
270
+ })
271
+ ```
230
272
 
231
273
  ### Example Schema Registry API Key
274
+ ```python
275
+ import pulumi
276
+ import pulumi_confluentcloud as confluentcloud
277
+
278
+ env_manager_schema_registry_api_key = confluentcloud.ApiKey("env-manager-schema-registry-api-key",
279
+ display_name="env-manager-schema-registry-api-key",
280
+ description="Schema Registry API Key that is owned by 'env-manager' service account",
281
+ owner={
282
+ "id": env_manager["id"],
283
+ "api_version": env_manager["apiVersion"],
284
+ "kind": env_manager["kind"],
285
+ },
286
+ managed_resource={
287
+ "id": essentials["id"],
288
+ "api_version": essentials["apiVersion"],
289
+ "kind": essentials["kind"],
290
+ "environments": [{
291
+ "id": staging["id"],
292
+ }],
293
+ })
294
+ ```
232
295
 
233
296
  ### Example Flink API Key
297
+ ```python
298
+ import pulumi
299
+ import pulumi_confluentcloud as confluentcloud
300
+
301
+ env_manager_flink_api_key = confluentcloud.ApiKey("env-manager-flink-api-key",
302
+ display_name="env-manager-flink-api-key",
303
+ description="Flink API Key that is owned by 'env-manager' service account",
304
+ owner={
305
+ "id": env_manager["id"],
306
+ "api_version": env_manager["apiVersion"],
307
+ "kind": env_manager["kind"],
308
+ },
309
+ managed_resource={
310
+ "id": example["id"],
311
+ "api_version": example["apiVersion"],
312
+ "kind": example["kind"],
313
+ "environments": [{
314
+ "id": staging["id"],
315
+ }],
316
+ })
317
+ ```
234
318
 
235
319
  ### Example Tableflow API Key
236
320
  ```python
@@ -342,12 +426,96 @@ class ApiKey(pulumi.CustomResource):
342
426
  ## Example Usage
343
427
 
344
428
  ### Example Kafka API Key
429
+ ```python
430
+ import pulumi
431
+ import pulumi_confluentcloud as confluentcloud
432
+
433
+ app_manager_kafka_api_key = confluentcloud.ApiKey("app-manager-kafka-api-key",
434
+ display_name="app-manager-kafka-api-key",
435
+ description="Kafka API Key that is owned by 'app-manager' service account",
436
+ owner={
437
+ "id": app_manager["id"],
438
+ "api_version": app_manager["apiVersion"],
439
+ "kind": app_manager["kind"],
440
+ },
441
+ managed_resource={
442
+ "id": basic["id"],
443
+ "api_version": basic["apiVersion"],
444
+ "kind": basic["kind"],
445
+ "environments": [{
446
+ "id": staging["id"],
447
+ }],
448
+ })
449
+ ```
345
450
 
346
451
  ### Example ksqlDB API Key
452
+ ```python
453
+ import pulumi
454
+ import pulumi_confluentcloud as confluentcloud
455
+
456
+ ksqldb_api_key = confluentcloud.ApiKey("ksqldb-api-key",
457
+ display_name="ksqldb-api-key",
458
+ description="KsqlDB API Key that is owned by 'app-manager' service account",
459
+ owner={
460
+ "id": app_manager["id"],
461
+ "api_version": app_manager["apiVersion"],
462
+ "kind": app_manager["kind"],
463
+ },
464
+ managed_resource={
465
+ "id": main["id"],
466
+ "api_version": main["apiVersion"],
467
+ "kind": main["kind"],
468
+ "environments": [{
469
+ "id": staging["id"],
470
+ }],
471
+ })
472
+ ```
347
473
 
348
474
  ### Example Schema Registry API Key
475
+ ```python
476
+ import pulumi
477
+ import pulumi_confluentcloud as confluentcloud
478
+
479
+ env_manager_schema_registry_api_key = confluentcloud.ApiKey("env-manager-schema-registry-api-key",
480
+ display_name="env-manager-schema-registry-api-key",
481
+ description="Schema Registry API Key that is owned by 'env-manager' service account",
482
+ owner={
483
+ "id": env_manager["id"],
484
+ "api_version": env_manager["apiVersion"],
485
+ "kind": env_manager["kind"],
486
+ },
487
+ managed_resource={
488
+ "id": essentials["id"],
489
+ "api_version": essentials["apiVersion"],
490
+ "kind": essentials["kind"],
491
+ "environments": [{
492
+ "id": staging["id"],
493
+ }],
494
+ })
495
+ ```
349
496
 
350
497
  ### Example Flink API Key
498
+ ```python
499
+ import pulumi
500
+ import pulumi_confluentcloud as confluentcloud
501
+
502
+ env_manager_flink_api_key = confluentcloud.ApiKey("env-manager-flink-api-key",
503
+ display_name="env-manager-flink-api-key",
504
+ description="Flink API Key that is owned by 'env-manager' service account",
505
+ owner={
506
+ "id": env_manager["id"],
507
+ "api_version": env_manager["apiVersion"],
508
+ "kind": env_manager["kind"],
509
+ },
510
+ managed_resource={
511
+ "id": example["id"],
512
+ "api_version": example["apiVersion"],
513
+ "kind": example["kind"],
514
+ "environments": [{
515
+ "id": staging["id"],
516
+ }],
517
+ })
518
+ ```
351
519
 
352
520
  ### Example Tableflow API Key
353
521
  ```python
@@ -248,6 +248,30 @@ class DnsForwarder(pulumi.CustomResource):
248
248
 
249
249
  ### Option #2: Create using ForwardViaGcpDnsZones method
250
250
 
251
+ ```python
252
+ import pulumi
253
+ import pulumi_confluentcloud as confluentcloud
254
+
255
+ development = confluentcloud.Environment("development", display_name="Development")
256
+ main = confluentcloud.DnsForwarder("main",
257
+ display_name="dns_forwarder",
258
+ environment={
259
+ "id": development.id,
260
+ },
261
+ domains=[
262
+ "example.com",
263
+ "domainname.com",
264
+ ],
265
+ gateway={
266
+ "id": main_confluent_network["gateway"][0]["id"],
267
+ },
268
+ forward_via_gcp_zones=[{
269
+ "domainMappings": {
270
+ "example.com": "zone-1,project-1",
271
+ },
272
+ }])
273
+ ```
274
+
251
275
  ## Import
252
276
 
253
277
  You can import a DNS Forwarder by using Environment ID and DNS Forwarder ID, in the format `<Environment ID>/<DNS Forwarder ID>`. The following example shows how to import a DNS Forwarder:
@@ -310,6 +334,30 @@ class DnsForwarder(pulumi.CustomResource):
310
334
 
311
335
  ### Option #2: Create using ForwardViaGcpDnsZones method
312
336
 
337
+ ```python
338
+ import pulumi
339
+ import pulumi_confluentcloud as confluentcloud
340
+
341
+ development = confluentcloud.Environment("development", display_name="Development")
342
+ main = confluentcloud.DnsForwarder("main",
343
+ display_name="dns_forwarder",
344
+ environment={
345
+ "id": development.id,
346
+ },
347
+ domains=[
348
+ "example.com",
349
+ "domainname.com",
350
+ ],
351
+ gateway={
352
+ "id": main_confluent_network["gateway"][0]["id"],
353
+ },
354
+ forward_via_gcp_zones=[{
355
+ "domainMappings": {
356
+ "example.com": "zone-1,project-1",
357
+ },
358
+ }])
359
+ ```
360
+
313
361
  ## Import
314
362
 
315
363
  You can import a DNS Forwarder by using Environment ID and DNS Forwarder ID, in the format `<Environment ID>/<DNS Forwarder ID>`. The following example shows how to import a DNS Forwarder:
@@ -135,6 +135,36 @@ def get_catalog_integration(credentials: Optional[Union['GetCatalogIntegrationCr
135
135
 
136
136
  ## Example Usage
137
137
 
138
+ ### Option #1: Manage multiple Catalog Integrations in the same Pulumi Stack
139
+
140
+ ```python
141
+ import pulumi
142
+ import pulumi_confluentcloud as confluentcloud
143
+
144
+ example = confluentcloud.get_catalog_integration(environment={
145
+ "id": staging["id"],
146
+ },
147
+ kafka_cluster={
148
+ "id": staging_confluent_kafka_cluster["id"],
149
+ },
150
+ id="tci-abc123",
151
+ credentials={
152
+ "key": env_admin_tableflow_api_key["id"],
153
+ "secret": env_admin_tableflow_api_key["secret"],
154
+ })
155
+ pulumi.export("retention-ms", example.retention_ms)
156
+ ```
157
+
158
+ ### Option #2: Manage a single Catalog Integration in the same Pulumi Stack
159
+
160
+ ```python
161
+ import pulumi
162
+ import pulumi_confluentcloud as confluentcloud
163
+
164
+ example = confluentcloud.get_catalog_integration(id="tci-abc123")
165
+ pulumi.export("retention-ms", example.retention_ms)
166
+ ```
167
+
138
168
 
139
169
  :param _builtins.str id: The ID of the Catalog Integration, for example, `tci-abc123`.
140
170
  """
@@ -167,6 +197,36 @@ def get_catalog_integration_output(credentials: Optional[pulumi.Input[Optional[U
167
197
 
168
198
  ## Example Usage
169
199
 
200
+ ### Option #1: Manage multiple Catalog Integrations in the same Pulumi Stack
201
+
202
+ ```python
203
+ import pulumi
204
+ import pulumi_confluentcloud as confluentcloud
205
+
206
+ example = confluentcloud.get_catalog_integration(environment={
207
+ "id": staging["id"],
208
+ },
209
+ kafka_cluster={
210
+ "id": staging_confluent_kafka_cluster["id"],
211
+ },
212
+ id="tci-abc123",
213
+ credentials={
214
+ "key": env_admin_tableflow_api_key["id"],
215
+ "secret": env_admin_tableflow_api_key["secret"],
216
+ })
217
+ pulumi.export("retention-ms", example.retention_ms)
218
+ ```
219
+
220
+ ### Option #2: Manage a single Catalog Integration in the same Pulumi Stack
221
+
222
+ ```python
223
+ import pulumi
224
+ import pulumi_confluentcloud as confluentcloud
225
+
226
+ example = confluentcloud.get_catalog_integration(id="tci-abc123")
227
+ pulumi.export("retention-ms", example.retention_ms)
228
+ ```
229
+
170
230
 
171
231
  :param _builtins.str id: The ID of the Catalog Integration, for example, `tci-abc123`.
172
232
  """
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "confluentcloud",
4
- "version": "2.50.0-alpha.1762926155"
4
+ "version": "2.50.0-alpha.1763185030"
5
5
  }
@@ -446,6 +446,120 @@ class Schema(pulumi.CustomResource):
446
446
  """
447
447
  ## Example Usage
448
448
 
449
+ ### Option #1: Manage multiple Schema Registry clusters in the same Pulumi Stack
450
+
451
+ ```python
452
+ import pulumi
453
+ import pulumi_confluentcloud as confluentcloud
454
+ import pulumi_std as std
455
+
456
+ avro_purchase = confluentcloud.Schema("avro-purchase",
457
+ schema_registry_cluster={
458
+ "id": essentials["id"],
459
+ },
460
+ rest_endpoint=essentials["restEndpoint"],
461
+ subject_name="avro-purchase-value",
462
+ format="AVRO",
463
+ schema=std.index.file(input="./schemas/avro/purchase.avsc")["result"],
464
+ credentials={
465
+ "key": "<Schema Registry API Key for data.confluent_schema_registry_cluster.essentials>",
466
+ "secret": "<Schema Registry API Secret for data.confluent_schema_registry_cluster.essentials>",
467
+ })
468
+ ```
469
+
470
+ ### Option #2: Manage a single Schema Registry cluster in the same Pulumi Stack
471
+
472
+ ```python
473
+ import pulumi
474
+ import pulumi_confluentcloud as confluentcloud
475
+ import pulumi_std as std
476
+
477
+ avro_purchase = confluentcloud.Schema("avro-purchase",
478
+ subject_name="avro-purchase-value",
479
+ format="AVRO",
480
+ schema=std.index.file(input="./schemas/avro/purchase.avsc")["result"])
481
+ ```
482
+
483
+ ## Getting Started
484
+
485
+ The following end-to-end examples might help to get started with `Schema` resource:
486
+ * single-event-types-avro-schema
487
+ * single-event-types-proto-schema
488
+ * single-event-types-proto-schema-with-alias
489
+ * multiple-event-types-avro-schema
490
+ * multiple-event-types-proto-schema
491
+ * field-level-encryption-schema
492
+
493
+ ## Additional Examples
494
+
495
+ ### Default Option A: Manage the latest schema version only. The resource instance always points to the latest schema version by supporting in-place updates
496
+
497
+ ```python
498
+ import pulumi
499
+ import pulumi_confluentcloud as confluentcloud
500
+ import pulumi_std as std
501
+
502
+ # confluent_schema.avro-purchase points to v1.
503
+ avro_purchase = confluentcloud.Schema("avro-purchase",
504
+ subject_name="avro-purchase-value",
505
+ format="AVRO",
506
+ schema=std.index.file(input="./schemas/avro/purchase.avsc")["result"],
507
+ metadata={
508
+ "properties": {
509
+ "owner": "Bob Jones",
510
+ "email": "bob@acme.com",
511
+ },
512
+ "sensitives": [
513
+ "s1",
514
+ "s2",
515
+ ],
516
+ "tags": [
517
+ {
518
+ "key": "tag1",
519
+ "values": ["PII"],
520
+ },
521
+ {
522
+ "key": "tag2",
523
+ "values": ["PIIIII"],
524
+ },
525
+ ],
526
+ },
527
+ ruleset={
528
+ "domain_rules": [
529
+ {
530
+ "name": "encryptPII",
531
+ "kind": "TRANSFORM",
532
+ "type": "ENCRYPT",
533
+ "mode": "WRITEREAD",
534
+ "tags": ["PII"],
535
+ "params": {
536
+ "encrypt.kek.name": "testkek2",
537
+ },
538
+ },
539
+ {
540
+ "name": "encrypt",
541
+ "kind": "TRANSFORM",
542
+ "type": "ENCRYPT",
543
+ "mode": "WRITEREAD",
544
+ "tags": ["PIIIII"],
545
+ "params": {
546
+ "encrypt.kek.name": "testkek2",
547
+ },
548
+ },
549
+ ],
550
+ "migration_rules": [{
551
+ "name": "encrypt",
552
+ "kind": "TRANSFORM",
553
+ "type": "ENCRYPT",
554
+ "mode": "WRITEREAD",
555
+ "tags": ["PIM"],
556
+ "params": {
557
+ "encrypt.kek.name": "testkekM",
558
+ },
559
+ }],
560
+ })
561
+ ```
562
+
449
563
  ## Import
450
564
 
451
565
  You can import a Schema by using the Schema Registry cluster ID, Subject name, and unique identifier (or `latest` when `recreate_on_update = false`) of the Schema in the format `<Schema Registry cluster ID>/<Subject name>/<Schema identifier>`, for example:
@@ -498,6 +612,120 @@ class Schema(pulumi.CustomResource):
498
612
  """
499
613
  ## Example Usage
500
614
 
615
+ ### Option #1: Manage multiple Schema Registry clusters in the same Pulumi Stack
616
+
617
+ ```python
618
+ import pulumi
619
+ import pulumi_confluentcloud as confluentcloud
620
+ import pulumi_std as std
621
+
622
+ avro_purchase = confluentcloud.Schema("avro-purchase",
623
+ schema_registry_cluster={
624
+ "id": essentials["id"],
625
+ },
626
+ rest_endpoint=essentials["restEndpoint"],
627
+ subject_name="avro-purchase-value",
628
+ format="AVRO",
629
+ schema=std.index.file(input="./schemas/avro/purchase.avsc")["result"],
630
+ credentials={
631
+ "key": "<Schema Registry API Key for data.confluent_schema_registry_cluster.essentials>",
632
+ "secret": "<Schema Registry API Secret for data.confluent_schema_registry_cluster.essentials>",
633
+ })
634
+ ```
635
+
636
+ ### Option #2: Manage a single Schema Registry cluster in the same Pulumi Stack
637
+
638
+ ```python
639
+ import pulumi
640
+ import pulumi_confluentcloud as confluentcloud
641
+ import pulumi_std as std
642
+
643
+ avro_purchase = confluentcloud.Schema("avro-purchase",
644
+ subject_name="avro-purchase-value",
645
+ format="AVRO",
646
+ schema=std.index.file(input="./schemas/avro/purchase.avsc")["result"])
647
+ ```
648
+
649
+ ## Getting Started
650
+
651
+ The following end-to-end examples might help to get started with `Schema` resource:
652
+ * single-event-types-avro-schema
653
+ * single-event-types-proto-schema
654
+ * single-event-types-proto-schema-with-alias
655
+ * multiple-event-types-avro-schema
656
+ * multiple-event-types-proto-schema
657
+ * field-level-encryption-schema
658
+
659
+ ## Additional Examples
660
+
661
+ ### Default Option A: Manage the latest schema version only. The resource instance always points to the latest schema version by supporting in-place updates
662
+
663
+ ```python
664
+ import pulumi
665
+ import pulumi_confluentcloud as confluentcloud
666
+ import pulumi_std as std
667
+
668
+ # confluent_schema.avro-purchase points to v1.
669
+ avro_purchase = confluentcloud.Schema("avro-purchase",
670
+ subject_name="avro-purchase-value",
671
+ format="AVRO",
672
+ schema=std.index.file(input="./schemas/avro/purchase.avsc")["result"],
673
+ metadata={
674
+ "properties": {
675
+ "owner": "Bob Jones",
676
+ "email": "bob@acme.com",
677
+ },
678
+ "sensitives": [
679
+ "s1",
680
+ "s2",
681
+ ],
682
+ "tags": [
683
+ {
684
+ "key": "tag1",
685
+ "values": ["PII"],
686
+ },
687
+ {
688
+ "key": "tag2",
689
+ "values": ["PIIIII"],
690
+ },
691
+ ],
692
+ },
693
+ ruleset={
694
+ "domain_rules": [
695
+ {
696
+ "name": "encryptPII",
697
+ "kind": "TRANSFORM",
698
+ "type": "ENCRYPT",
699
+ "mode": "WRITEREAD",
700
+ "tags": ["PII"],
701
+ "params": {
702
+ "encrypt.kek.name": "testkek2",
703
+ },
704
+ },
705
+ {
706
+ "name": "encrypt",
707
+ "kind": "TRANSFORM",
708
+ "type": "ENCRYPT",
709
+ "mode": "WRITEREAD",
710
+ "tags": ["PIIIII"],
711
+ "params": {
712
+ "encrypt.kek.name": "testkek2",
713
+ },
714
+ },
715
+ ],
716
+ "migration_rules": [{
717
+ "name": "encrypt",
718
+ "kind": "TRANSFORM",
719
+ "type": "ENCRYPT",
720
+ "mode": "WRITEREAD",
721
+ "tags": ["PIM"],
722
+ "params": {
723
+ "encrypt.kek.name": "testkekM",
724
+ },
725
+ }],
726
+ })
727
+ ```
728
+
501
729
  ## Import
502
730
 
503
731
  You can import a Schema by using the Schema Registry cluster ID, Subject name, and unique identifier (or `latest` when `recreate_on_update = false`) of the Schema in the format `<Schema Registry cluster ID>/<Subject name>/<Schema identifier>`, for example:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_confluentcloud
3
- Version: 2.50.0a1762926155
3
+ Version: 2.50.0a1763185030
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
@@ -2,7 +2,7 @@ pulumi_confluentcloud/__init__.py,sha256=kOwNfz5DblrFq6m5-J913KrPPjoA5mJNMUBX75p
2
2
  pulumi_confluentcloud/_inputs.py,sha256=N-XIGcY5jKNKnpEDwZSU-SwIbydQJ2H955XBI_Oi2ck,464805
3
3
  pulumi_confluentcloud/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_confluentcloud/access_point.py,sha256=EWjw5oS5Zvch3deV4n8oUv9AV73aYy7qUrEJ6ji0Db0,32976
5
- pulumi_confluentcloud/api_key.py,sha256=CkQiXMQOINtH2Kn2gvVhIdv95R_HEjcT8sSlDwL3miw,30526
5
+ pulumi_confluentcloud/api_key.py,sha256=-jTRJ8ztmZQoqb3T9IzR7bhBdV9PxwUHDj8sG4O93Dc,36850
6
6
  pulumi_confluentcloud/business_metadata.py,sha256=QuEJvOtBECP1kwVjixRLNrQmgmIjNHVTPdve2wzouLQ,27965
7
7
  pulumi_confluentcloud/business_metadata_binding.py,sha256=HHtROR2Pfh9USiZPYqg9wLkzki-z-u86QvVa0S_TYDk,33282
8
8
  pulumi_confluentcloud/byok_key.py,sha256=Y8vJYOdmH_nNIJpBTU73n_OGTnR-VkyRQH9QvWIFO88,14838
@@ -15,7 +15,7 @@ pulumi_confluentcloud/connect_artifact.py,sha256=xAECaIVBozyLB6JwjsXZtVeRMFeu9sb
15
15
  pulumi_confluentcloud/connector.py,sha256=ZaPMoFuqYQDGiFLV3KSGVBKHxU_EZMEbzlWA7JBs1yE,54960
16
16
  pulumi_confluentcloud/custom_connector_plugin.py,sha256=B97Lj1fD1ZFbUxrcn1XO5XpKuD_JyIP5JS6jUfNnJ54,32935
17
17
  pulumi_confluentcloud/custom_connector_plugin_version.py,sha256=TTvKTE6Qtgf7CoYH2EkdEh3j2Ia4pBEKiVZwRFdmP1w,39138
18
- pulumi_confluentcloud/dns_forwarder.py,sha256=dWWzaaOg299dRrr4uT9_bCuIOwQVi0ZTmkTQvDqmwe8,20822
18
+ pulumi_confluentcloud/dns_forwarder.py,sha256=trZQYgORCHsig9yIpDN1vIvH1fVWIuw5JMXVpW9Kz0A,22304
19
19
  pulumi_confluentcloud/dns_record.py,sha256=fDie3oUm9qs8wYj6NI3CGOGs08R5F8FNuvQEuV75DG8,17843
20
20
  pulumi_confluentcloud/environment.py,sha256=imFxGTVuWMT4pGoZZN0zty78heMolgDUcMCszq11YMw,20012
21
21
  pulumi_confluentcloud/flink_artifact.py,sha256=SOqT9ST9sVdR-4HjW8a53YEp47VmjiTYWFdE2ldGLUQ,38140
@@ -27,7 +27,7 @@ pulumi_confluentcloud/get_access_point.py,sha256=rHLsdnw57GsQ4VOc3yu0mYGVtMdfA-y
27
27
  pulumi_confluentcloud/get_business_metadata.py,sha256=TbBaZw-14K-6kyVFXNbxb5aBjE9znBe0QlMfXMCK3h8,12259
28
28
  pulumi_confluentcloud/get_business_metadata_binding.py,sha256=Pgc2yJ74PYyGhN5VE4z6RaDRAgOB5clM5sZH9IAkHzk,14483
29
29
  pulumi_confluentcloud/get_byok_key.py,sha256=FAeu9-RScviJ3G5c6rrHyl6u9l32IUjIi-zGRaOz4L0,5161
30
- pulumi_confluentcloud/get_catalog_integration.py,sha256=7eH8a8kB6yGfO5-RxgNZv8QwQnfG5Byd9SnH1BPwceM,8830
30
+ pulumi_confluentcloud/get_catalog_integration.py,sha256=vSe2wKQofJ-_ZyUiKGAwbgiWKMfTJ0813s0ugEFP73o,10644
31
31
  pulumi_confluentcloud/get_certificate_authority.py,sha256=BNQddgCEq8j6ysTLTG3ybZwVo277QPdRo3o75c6AulY,12019
32
32
  pulumi_confluentcloud/get_certificate_pool.py,sha256=4R-TYCkr1VM7LxKqw6d8UIIPOwBp3JzWtf-8Ym0sxag,7876
33
33
  pulumi_confluentcloud/get_cluster_link.py,sha256=FJ3Wueo2lJamJAeY3oLYiq-o4ujRmmJ6yfW2vmGzJrU,11522
@@ -102,10 +102,10 @@ pulumi_confluentcloud/private_link_attachment.py,sha256=cTulprHd5xC1O0pvXFUmSY8U
102
102
  pulumi_confluentcloud/private_link_attachment_connection.py,sha256=KpQR8PG9KpNkV5MCqYjzOWrVBXY8st6cDDTPBsfBz4k,27139
103
103
  pulumi_confluentcloud/provider.py,sha256=sN-VlTRE0cOeq78IKZopdjt1JLVRJpXA3LYYbYizrHg,34888
104
104
  pulumi_confluentcloud/provider_integration.py,sha256=RmBOJN9EFsKlRiBAEP2_hXl-LR0FMWA6_qC61HWocPQ,16497
105
- pulumi_confluentcloud/pulumi-plugin.json,sha256=U7KO7krMQBa-NulR3f0-aidtdfrJ1gNVP5RUkq_Rf9E,91
105
+ pulumi_confluentcloud/pulumi-plugin.json,sha256=sSanaPbckMA8YhHT5h3lx7BA0H0WEoWHnNHYi3-TA7c,91
106
106
  pulumi_confluentcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
107
  pulumi_confluentcloud/role_binding.py,sha256=MbeRwcuWNj_KSnNP2zEqNSthGBV1z1haBjbk97pvMZk,20463
108
- pulumi_confluentcloud/schema.py,sha256=TrAq7lGUxbNvgD-33fhRm602EIR9EXO8tFfwhRADmkk,40807
108
+ pulumi_confluentcloud/schema.py,sha256=CYdHdFIw-VYplimUSaTWGittfo5wUOEWuFYfD_kUbvI,49055
109
109
  pulumi_confluentcloud/schema_exporter.py,sha256=9_mmQqyYSUTCgXQhmWWB3tUzSD3OVOvYGEZwO8t7aXw,43297
110
110
  pulumi_confluentcloud/schema_registry_cluster_config.py,sha256=3RROySE3mpSECfpnlMv6AOgFmpUSaQdPjnX4ohpa5oY,22706
111
111
  pulumi_confluentcloud/schema_registry_cluster_mode.py,sha256=0L7mufKUUjeqyQs9rF4eJv29zyJP5dr9avMarhR80t4,22207
@@ -123,7 +123,7 @@ pulumi_confluentcloud/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJ
123
123
  pulumi_confluentcloud/config/__init__.pyi,sha256=wUpGQFTVXK9rFefT-KLKGEPtajQG_D4Due_TzbOT5jE,2151
124
124
  pulumi_confluentcloud/config/outputs.py,sha256=j9KabfxdzVhzLBDXzRsfQbM3kPvizCnfA4jT1GiYu7I,5369
125
125
  pulumi_confluentcloud/config/vars.py,sha256=a6jklkyhkLNyX1ZeL2snOeaA6uX4dqwUZl5fUDp3wMQ,4915
126
- pulumi_confluentcloud-2.50.0a1762926155.dist-info/METADATA,sha256=3OwddoJ5z7MOy18IoZj-Nb0P68JLp33tM2i7JJ8_zp4,2898
127
- pulumi_confluentcloud-2.50.0a1762926155.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
128
- pulumi_confluentcloud-2.50.0a1762926155.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
129
- pulumi_confluentcloud-2.50.0a1762926155.dist-info/RECORD,,
126
+ pulumi_confluentcloud-2.50.0a1763185030.dist-info/METADATA,sha256=wjD3cU5YOy_v6Kngubr3J0ilqplZnBO1xcXg7QryOhk,2898
127
+ pulumi_confluentcloud-2.50.0a1763185030.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
128
+ pulumi_confluentcloud-2.50.0a1763185030.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
129
+ pulumi_confluentcloud-2.50.0a1763185030.dist-info/RECORD,,