pulumi-confluentcloud 2.48.0a1760592912__py3-none-any.whl → 2.49.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.
Potentially problematic release.
This version of pulumi-confluentcloud might be problematic. Click here for more details.
- pulumi_confluentcloud/__init__.py +0 -20
- pulumi_confluentcloud/_inputs.py +63 -253
- pulumi_confluentcloud/get_private_link_attachment.py +0 -1
- pulumi_confluentcloud/get_tableflow_topic.py +16 -2
- pulumi_confluentcloud/outputs.py +91 -252
- pulumi_confluentcloud/private_link_attachment.py +0 -4
- pulumi_confluentcloud/pulumi-plugin.json +1 -1
- pulumi_confluentcloud/tableflow_topic.py +43 -0
- {pulumi_confluentcloud-2.48.0a1760592912.dist-info → pulumi_confluentcloud-2.49.0.dist-info}/METADATA +1 -1
- {pulumi_confluentcloud-2.48.0a1760592912.dist-info → pulumi_confluentcloud-2.49.0.dist-info}/RECORD +12 -16
- pulumi_confluentcloud/get_provider_integration_authorization.py +0 -142
- pulumi_confluentcloud/get_provider_integration_setup.py +0 -270
- pulumi_confluentcloud/provider_integration_authorization.py +0 -320
- pulumi_confluentcloud/provider_integration_setup.py +0 -448
- {pulumi_confluentcloud-2.48.0a1760592912.dist-info → pulumi_confluentcloud-2.49.0.dist-info}/WHEEL +0 -0
- {pulumi_confluentcloud-2.48.0a1760592912.dist-info → pulumi_confluentcloud-2.49.0.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,7 @@ class TableflowTopicArgs:
|
|
|
26
26
|
kafka_cluster: pulumi.Input['TableflowTopicKafkaClusterArgs'],
|
|
27
27
|
byob_aws: Optional[pulumi.Input['TableflowTopicByobAwsArgs']] = None,
|
|
28
28
|
credentials: Optional[pulumi.Input['TableflowTopicCredentialsArgs']] = None,
|
|
29
|
+
error_handling: Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']] = None,
|
|
29
30
|
managed_storages: Optional[pulumi.Input[Sequence[pulumi.Input['TableflowTopicManagedStorageArgs']]]] = None,
|
|
30
31
|
record_failure_strategy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
31
32
|
retention_ms: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -48,8 +49,13 @@ class TableflowTopicArgs:
|
|
|
48
49
|
pulumi.set(__self__, "byob_aws", byob_aws)
|
|
49
50
|
if credentials is not None:
|
|
50
51
|
pulumi.set(__self__, "credentials", credentials)
|
|
52
|
+
if error_handling is not None:
|
|
53
|
+
pulumi.set(__self__, "error_handling", error_handling)
|
|
51
54
|
if managed_storages is not None:
|
|
52
55
|
pulumi.set(__self__, "managed_storages", managed_storages)
|
|
56
|
+
if record_failure_strategy is not None:
|
|
57
|
+
warnings.warn("""This attribute is deprecated and will be removed in a future release.""", DeprecationWarning)
|
|
58
|
+
pulumi.log.warn("""record_failure_strategy is deprecated: This attribute is deprecated and will be removed in a future release.""")
|
|
53
59
|
if record_failure_strategy is not None:
|
|
54
60
|
pulumi.set(__self__, "record_failure_strategy", record_failure_strategy)
|
|
55
61
|
if retention_ms is not None:
|
|
@@ -114,6 +120,15 @@ class TableflowTopicArgs:
|
|
|
114
120
|
def credentials(self, value: Optional[pulumi.Input['TableflowTopicCredentialsArgs']]):
|
|
115
121
|
pulumi.set(self, "credentials", value)
|
|
116
122
|
|
|
123
|
+
@_builtins.property
|
|
124
|
+
@pulumi.getter(name="errorHandling")
|
|
125
|
+
def error_handling(self) -> Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']]:
|
|
126
|
+
return pulumi.get(self, "error_handling")
|
|
127
|
+
|
|
128
|
+
@error_handling.setter
|
|
129
|
+
def error_handling(self, value: Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']]):
|
|
130
|
+
pulumi.set(self, "error_handling", value)
|
|
131
|
+
|
|
117
132
|
@_builtins.property
|
|
118
133
|
@pulumi.getter(name="managedStorages")
|
|
119
134
|
def managed_storages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TableflowTopicManagedStorageArgs']]]]:
|
|
@@ -128,6 +143,7 @@ class TableflowTopicArgs:
|
|
|
128
143
|
|
|
129
144
|
@_builtins.property
|
|
130
145
|
@pulumi.getter(name="recordFailureStrategy")
|
|
146
|
+
@_utilities.deprecated("""This attribute is deprecated and will be removed in a future release.""")
|
|
131
147
|
def record_failure_strategy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
132
148
|
"""
|
|
133
149
|
The strategy to handle record failures in the Tableflow enabled topic during materialization. Accepted values are `SKIP`, `SUSPEND`. For `SKIP`, we skip the bad records and move to the next record. For `SUSPEND`, we suspend the materialization of the topic.
|
|
@@ -172,6 +188,7 @@ class _TableflowTopicState:
|
|
|
172
188
|
enable_compaction: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
173
189
|
enable_partitioning: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
174
190
|
environment: Optional[pulumi.Input['TableflowTopicEnvironmentArgs']] = None,
|
|
191
|
+
error_handling: Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']] = None,
|
|
175
192
|
kafka_cluster: Optional[pulumi.Input['TableflowTopicKafkaClusterArgs']] = None,
|
|
176
193
|
managed_storages: Optional[pulumi.Input[Sequence[pulumi.Input['TableflowTopicManagedStorageArgs']]]] = None,
|
|
177
194
|
record_failure_strategy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -208,10 +225,15 @@ class _TableflowTopicState:
|
|
|
208
225
|
pulumi.set(__self__, "enable_partitioning", enable_partitioning)
|
|
209
226
|
if environment is not None:
|
|
210
227
|
pulumi.set(__self__, "environment", environment)
|
|
228
|
+
if error_handling is not None:
|
|
229
|
+
pulumi.set(__self__, "error_handling", error_handling)
|
|
211
230
|
if kafka_cluster is not None:
|
|
212
231
|
pulumi.set(__self__, "kafka_cluster", kafka_cluster)
|
|
213
232
|
if managed_storages is not None:
|
|
214
233
|
pulumi.set(__self__, "managed_storages", managed_storages)
|
|
234
|
+
if record_failure_strategy is not None:
|
|
235
|
+
warnings.warn("""This attribute is deprecated and will be removed in a future release.""", DeprecationWarning)
|
|
236
|
+
pulumi.log.warn("""record_failure_strategy is deprecated: This attribute is deprecated and will be removed in a future release.""")
|
|
215
237
|
if record_failure_strategy is not None:
|
|
216
238
|
pulumi.set(__self__, "record_failure_strategy", record_failure_strategy)
|
|
217
239
|
if retention_ms is not None:
|
|
@@ -297,6 +319,15 @@ class _TableflowTopicState:
|
|
|
297
319
|
def environment(self, value: Optional[pulumi.Input['TableflowTopicEnvironmentArgs']]):
|
|
298
320
|
pulumi.set(self, "environment", value)
|
|
299
321
|
|
|
322
|
+
@_builtins.property
|
|
323
|
+
@pulumi.getter(name="errorHandling")
|
|
324
|
+
def error_handling(self) -> Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']]:
|
|
325
|
+
return pulumi.get(self, "error_handling")
|
|
326
|
+
|
|
327
|
+
@error_handling.setter
|
|
328
|
+
def error_handling(self, value: Optional[pulumi.Input['TableflowTopicErrorHandlingArgs']]):
|
|
329
|
+
pulumi.set(self, "error_handling", value)
|
|
330
|
+
|
|
300
331
|
@_builtins.property
|
|
301
332
|
@pulumi.getter(name="kafkaCluster")
|
|
302
333
|
def kafka_cluster(self) -> Optional[pulumi.Input['TableflowTopicKafkaClusterArgs']]:
|
|
@@ -320,6 +351,7 @@ class _TableflowTopicState:
|
|
|
320
351
|
|
|
321
352
|
@_builtins.property
|
|
322
353
|
@pulumi.getter(name="recordFailureStrategy")
|
|
354
|
+
@_utilities.deprecated("""This attribute is deprecated and will be removed in a future release.""")
|
|
323
355
|
def record_failure_strategy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
324
356
|
"""
|
|
325
357
|
The strategy to handle record failures in the Tableflow enabled topic during materialization. Accepted values are `SKIP`, `SUSPEND`. For `SKIP`, we skip the bad records and move to the next record. For `SUSPEND`, we suspend the materialization of the topic.
|
|
@@ -401,6 +433,7 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
401
433
|
credentials: Optional[pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']]] = None,
|
|
402
434
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
403
435
|
environment: Optional[pulumi.Input[Union['TableflowTopicEnvironmentArgs', 'TableflowTopicEnvironmentArgsDict']]] = None,
|
|
436
|
+
error_handling: Optional[pulumi.Input[Union['TableflowTopicErrorHandlingArgs', 'TableflowTopicErrorHandlingArgsDict']]] = None,
|
|
404
437
|
kafka_cluster: Optional[pulumi.Input[Union['TableflowTopicKafkaClusterArgs', 'TableflowTopicKafkaClusterArgsDict']]] = None,
|
|
405
438
|
managed_storages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TableflowTopicManagedStorageArgs', 'TableflowTopicManagedStorageArgsDict']]]]] = None,
|
|
406
439
|
record_failure_strategy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -599,6 +632,7 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
599
632
|
credentials: Optional[pulumi.Input[Union['TableflowTopicCredentialsArgs', 'TableflowTopicCredentialsArgsDict']]] = None,
|
|
600
633
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
601
634
|
environment: Optional[pulumi.Input[Union['TableflowTopicEnvironmentArgs', 'TableflowTopicEnvironmentArgsDict']]] = None,
|
|
635
|
+
error_handling: Optional[pulumi.Input[Union['TableflowTopicErrorHandlingArgs', 'TableflowTopicErrorHandlingArgsDict']]] = None,
|
|
602
636
|
kafka_cluster: Optional[pulumi.Input[Union['TableflowTopicKafkaClusterArgs', 'TableflowTopicKafkaClusterArgsDict']]] = None,
|
|
603
637
|
managed_storages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TableflowTopicManagedStorageArgs', 'TableflowTopicManagedStorageArgsDict']]]]] = None,
|
|
604
638
|
record_failure_strategy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -621,6 +655,7 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
621
655
|
if environment is None and not opts.urn:
|
|
622
656
|
raise TypeError("Missing required property 'environment'")
|
|
623
657
|
__props__.__dict__["environment"] = environment
|
|
658
|
+
__props__.__dict__["error_handling"] = error_handling
|
|
624
659
|
if kafka_cluster is None and not opts.urn:
|
|
625
660
|
raise TypeError("Missing required property 'kafka_cluster'")
|
|
626
661
|
__props__.__dict__["kafka_cluster"] = kafka_cluster
|
|
@@ -651,6 +686,7 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
651
686
|
enable_compaction: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
652
687
|
enable_partitioning: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
653
688
|
environment: Optional[pulumi.Input[Union['TableflowTopicEnvironmentArgs', 'TableflowTopicEnvironmentArgsDict']]] = None,
|
|
689
|
+
error_handling: Optional[pulumi.Input[Union['TableflowTopicErrorHandlingArgs', 'TableflowTopicErrorHandlingArgsDict']]] = None,
|
|
654
690
|
kafka_cluster: Optional[pulumi.Input[Union['TableflowTopicKafkaClusterArgs', 'TableflowTopicKafkaClusterArgsDict']]] = None,
|
|
655
691
|
managed_storages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TableflowTopicManagedStorageArgs', 'TableflowTopicManagedStorageArgsDict']]]]] = None,
|
|
656
692
|
record_failure_strategy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -690,6 +726,7 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
690
726
|
__props__.__dict__["enable_compaction"] = enable_compaction
|
|
691
727
|
__props__.__dict__["enable_partitioning"] = enable_partitioning
|
|
692
728
|
__props__.__dict__["environment"] = environment
|
|
729
|
+
__props__.__dict__["error_handling"] = error_handling
|
|
693
730
|
__props__.__dict__["kafka_cluster"] = kafka_cluster
|
|
694
731
|
__props__.__dict__["managed_storages"] = managed_storages
|
|
695
732
|
__props__.__dict__["record_failure_strategy"] = record_failure_strategy
|
|
@@ -748,6 +785,11 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
748
785
|
"""
|
|
749
786
|
return pulumi.get(self, "environment")
|
|
750
787
|
|
|
788
|
+
@_builtins.property
|
|
789
|
+
@pulumi.getter(name="errorHandling")
|
|
790
|
+
def error_handling(self) -> pulumi.Output['outputs.TableflowTopicErrorHandling']:
|
|
791
|
+
return pulumi.get(self, "error_handling")
|
|
792
|
+
|
|
751
793
|
@_builtins.property
|
|
752
794
|
@pulumi.getter(name="kafkaCluster")
|
|
753
795
|
def kafka_cluster(self) -> pulumi.Output['outputs.TableflowTopicKafkaCluster']:
|
|
@@ -763,6 +805,7 @@ class TableflowTopic(pulumi.CustomResource):
|
|
|
763
805
|
|
|
764
806
|
@_builtins.property
|
|
765
807
|
@pulumi.getter(name="recordFailureStrategy")
|
|
808
|
+
@_utilities.deprecated("""This attribute is deprecated and will be removed in a future release.""")
|
|
766
809
|
def record_failure_strategy(self) -> pulumi.Output[_builtins.str]:
|
|
767
810
|
"""
|
|
768
811
|
The strategy to handle record failures in the Tableflow enabled topic during materialization. Accepted values are `SKIP`, `SUSPEND`. For `SKIP`, we skip the bad records and move to the next record. For `SUSPEND`, we suspend the materialization of the topic.
|
{pulumi_confluentcloud-2.48.0a1760592912.dist-info → pulumi_confluentcloud-2.49.0.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_confluentcloud/__init__.py,sha256=
|
|
2
|
-
pulumi_confluentcloud/_inputs.py,sha256=
|
|
1
|
+
pulumi_confluentcloud/__init__.py,sha256=kOwNfz5DblrFq6m5-J913KrPPjoA5mJNMUBX75pFPmg,16039
|
|
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
5
|
pulumi_confluentcloud/api_key.py,sha256=CkQiXMQOINtH2Kn2gvVhIdv95R_HEjcT8sSlDwL3miw,30526
|
|
@@ -57,11 +57,9 @@ pulumi_confluentcloud/get_network_link_service.py,sha256=GohzEqwacG-JwnkJhpaMjZ1
|
|
|
57
57
|
pulumi_confluentcloud/get_organization.py,sha256=LRL3u_wJh2UOPt2k5BW9588UkUiIp9MEwxqEV1xBFG4,4100
|
|
58
58
|
pulumi_confluentcloud/get_peering.py,sha256=Ikw989nCbcGsSNdfX7HeYGtk_2U_B-Db0WXK31d2VMs,8792
|
|
59
59
|
pulumi_confluentcloud/get_private_link_access.py,sha256=LjIoJHR4IgUkENE7P0NJg4t4UfSA2o3lr8lAPam0U8I,9402
|
|
60
|
-
pulumi_confluentcloud/get_private_link_attachment.py,sha256=
|
|
60
|
+
pulumi_confluentcloud/get_private_link_attachment.py,sha256=PHycDxRIvcpnP3JMgrhTfKhMW5CFECMdbLuSQOGXp_c,10866
|
|
61
61
|
pulumi_confluentcloud/get_private_link_attachment_connection.py,sha256=BxSUuWyZxXrvWpP_XuoE6fwnqRcwBl5DNgYMIuz2fsQ,10541
|
|
62
62
|
pulumi_confluentcloud/get_provider_integration.py,sha256=30UryTJfeAYuknyrcf4IUADsjK_pFcRCJzREt8dnilc,8822
|
|
63
|
-
pulumi_confluentcloud/get_provider_integration_authorization.py,sha256=PN-8zxmIwLiVxOdYHRsuTq_vAMKbu53yZoCpQuBlw48,7088
|
|
64
|
-
pulumi_confluentcloud/get_provider_integration_setup.py,sha256=fURUWzVmARpE5Lm8AfYWr_oLglcBgtnsk6T1n-G1bp4,11252
|
|
65
63
|
pulumi_confluentcloud/get_role_binding.py,sha256=M-_XXL75KCQM7f111HXyq2-qp49GImi8FUCakhUVl5w,6248
|
|
66
64
|
pulumi_confluentcloud/get_schema.py,sha256=kSUHpguZmPo_SJjdhpk27Kg2LHST3kUbrgswt20CS1U,19768
|
|
67
65
|
pulumi_confluentcloud/get_schema_registry_cluster.py,sha256=N7te_5n5Zh2Qh38-2sovMWBfkASppzK4y_eqRyZB_bk,14801
|
|
@@ -74,7 +72,7 @@ pulumi_confluentcloud/get_schemas.py,sha256=Mr-OM-3oJsdPPXbq1J38Z2N8aybF6WXBq-bM
|
|
|
74
72
|
pulumi_confluentcloud/get_service_account.py,sha256=3lk7TNkGjmi4c1oa4o8O4XjMw8EIlZg332Ije6jUqfg,7331
|
|
75
73
|
pulumi_confluentcloud/get_subject_config.py,sha256=dKd28r2YSQZZ5Wtjn5CxfiX1sCYQBubvbCWDWc9-jhU,9328
|
|
76
74
|
pulumi_confluentcloud/get_subject_mode.py,sha256=RJKGulZlRGGkoGVgEW8_Mv7wkVJfu5wB5RU2Po9PJ_E,10545
|
|
77
|
-
pulumi_confluentcloud/get_tableflow_topic.py,sha256=
|
|
75
|
+
pulumi_confluentcloud/get_tableflow_topic.py,sha256=7SFh2xCXl34dADEhEJ0lSzWxHgzFnRsCtWHwCyUs59g,16521
|
|
78
76
|
pulumi_confluentcloud/get_tag.py,sha256=vBOXia2VjmhKoQfRY0A9wv8KXO5IcPOdDa_CAtDfd6M,11178
|
|
79
77
|
pulumi_confluentcloud/get_tag_binding.py,sha256=1yXnizQsxxxD5YaTezzbC8bx4W_guaXD4UAJbaD94Tc,13071
|
|
80
78
|
pulumi_confluentcloud/get_transit_gateway_attachment.py,sha256=TUOrt6fi7LD4QukfQkthoSRprS9cMoSZMpZehK_yhIU,8504
|
|
@@ -96,17 +94,15 @@ pulumi_confluentcloud/ksql_cluster.py,sha256=2iHuwHft1nFCJHHUZ_OQ6za0Wwhc01VyfdV
|
|
|
96
94
|
pulumi_confluentcloud/network.py,sha256=8CtwHx8oTbnbgX7F4WLcmyFHUR5v-d6mt4XtcYdGShw,65777
|
|
97
95
|
pulumi_confluentcloud/network_link_endpoint.py,sha256=mIDIlsxhKa5wwaLJzBn9aMGGl_lYRcZvUDjLFEh5aYI,21019
|
|
98
96
|
pulumi_confluentcloud/network_link_service.py,sha256=1EYvdSSxGVyf9EYUb9KQEGF_d7ct74B4BTQcy5VvTto,21597
|
|
99
|
-
pulumi_confluentcloud/outputs.py,sha256=
|
|
97
|
+
pulumi_confluentcloud/outputs.py,sha256=4gRn_OaaVU8kMNbHM3m4C6ii_tq63YO4zaYelgETo20,385279
|
|
100
98
|
pulumi_confluentcloud/peering.py,sha256=JLZhrSeVal5O2KcWqgKjcA_NVxm4jCgdmKkeVqEcLAI,26219
|
|
101
99
|
pulumi_confluentcloud/plugin.py,sha256=CKzFzVS27r-z8IC6uQKg6JMTAY-58RfRp9WZfybQC9c,19241
|
|
102
100
|
pulumi_confluentcloud/private_link_access.py,sha256=RXRS63n0MtU1rqscLqDiZXCPTyB6Agn4CwKu5BEg6BY,26465
|
|
103
|
-
pulumi_confluentcloud/private_link_attachment.py,sha256=
|
|
101
|
+
pulumi_confluentcloud/private_link_attachment.py,sha256=cTulprHd5xC1O0pvXFUmSY8UJf1xc1HeAsonKZs_OBI,25905
|
|
104
102
|
pulumi_confluentcloud/private_link_attachment_connection.py,sha256=KpQR8PG9KpNkV5MCqYjzOWrVBXY8st6cDDTPBsfBz4k,27139
|
|
105
103
|
pulumi_confluentcloud/provider.py,sha256=sN-VlTRE0cOeq78IKZopdjt1JLVRJpXA3LYYbYizrHg,34888
|
|
106
104
|
pulumi_confluentcloud/provider_integration.py,sha256=RmBOJN9EFsKlRiBAEP2_hXl-LR0FMWA6_qC61HWocPQ,16497
|
|
107
|
-
pulumi_confluentcloud/
|
|
108
|
-
pulumi_confluentcloud/provider_integration_setup.py,sha256=q06Qw844J2N0uoctoACyySDy9piyuqjHzAjZS_WsHIc,19706
|
|
109
|
-
pulumi_confluentcloud/pulumi-plugin.json,sha256=FZRsTUZ13_XOuEMKZc6xzKAtK6VluSEnNFK7cCF7EJw,91
|
|
105
|
+
pulumi_confluentcloud/pulumi-plugin.json,sha256=vpsH4CDUEjOrGP4zUMqWwva837bWgMh6Vi0mStKiCOU,74
|
|
110
106
|
pulumi_confluentcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
107
|
pulumi_confluentcloud/role_binding.py,sha256=MbeRwcuWNj_KSnNP2zEqNSthGBV1z1haBjbk97pvMZk,20463
|
|
112
108
|
pulumi_confluentcloud/schema.py,sha256=TrAq7lGUxbNvgD-33fhRm602EIR9EXO8tFfwhRADmkk,40807
|
|
@@ -118,7 +114,7 @@ pulumi_confluentcloud/schema_registry_kek.py,sha256=zRcr3nKOwOguV99lC8W3TuUVjsH3
|
|
|
118
114
|
pulumi_confluentcloud/service_account.py,sha256=cGwmSYtZN0DW3l2_stxjfgV6FDIks9a77a2nO2xptQE,19583
|
|
119
115
|
pulumi_confluentcloud/subject_config.py,sha256=OXU_91oUU5FLf8rRjTc2J7aUzCPzZvLlAygSge5eaQE,30180
|
|
120
116
|
pulumi_confluentcloud/subject_mode.py,sha256=0wyvTJS2EARMEloedqC_Ux4nQUSh5f3wuLe1TAXtIh8,24612
|
|
121
|
-
pulumi_confluentcloud/tableflow_topic.py,sha256=
|
|
117
|
+
pulumi_confluentcloud/tableflow_topic.py,sha256=TSjIoglzQzL1qwQniNWpEZCvOO6EN_MfAm_fo-GsT-4,47770
|
|
122
118
|
pulumi_confluentcloud/tag.py,sha256=knvRKPcNHRddvzLYwnra8vwW5cxycZOG71Cli_lhLmg,23746
|
|
123
119
|
pulumi_confluentcloud/tag_binding.py,sha256=lk5cphmn882kG4deW2vQue69aTLOLsM6kJ1quwZT3NY,30739
|
|
124
120
|
pulumi_confluentcloud/tf_importer.py,sha256=D0oj3ocsPCHOdzVOGHcBLDJ0AenFOVPK13R9BMTcGfY,13500
|
|
@@ -127,7 +123,7 @@ pulumi_confluentcloud/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJ
|
|
|
127
123
|
pulumi_confluentcloud/config/__init__.pyi,sha256=wUpGQFTVXK9rFefT-KLKGEPtajQG_D4Due_TzbOT5jE,2151
|
|
128
124
|
pulumi_confluentcloud/config/outputs.py,sha256=j9KabfxdzVhzLBDXzRsfQbM3kPvizCnfA4jT1GiYu7I,5369
|
|
129
125
|
pulumi_confluentcloud/config/vars.py,sha256=a6jklkyhkLNyX1ZeL2snOeaA6uX4dqwUZl5fUDp3wMQ,4915
|
|
130
|
-
pulumi_confluentcloud-2.
|
|
131
|
-
pulumi_confluentcloud-2.
|
|
132
|
-
pulumi_confluentcloud-2.
|
|
133
|
-
pulumi_confluentcloud-2.
|
|
126
|
+
pulumi_confluentcloud-2.49.0.dist-info/METADATA,sha256=s7Lgy0JCgsmKE53GIcpvWQwyVo9Zssyxy7nKIg6FZpI,2887
|
|
127
|
+
pulumi_confluentcloud-2.49.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
128
|
+
pulumi_confluentcloud-2.49.0.dist-info/top_level.txt,sha256=0spb6Wqsv3xa9v5poWmP3cWll3tbfOwOKwneN7S2DjM,22
|
|
129
|
+
pulumi_confluentcloud-2.49.0.dist-info/RECORD,,
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
|
|
5
|
-
import builtins as _builtins
|
|
6
|
-
import warnings
|
|
7
|
-
import sys
|
|
8
|
-
import pulumi
|
|
9
|
-
import pulumi.runtime
|
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
-
from . import _utilities
|
|
16
|
-
from . import outputs
|
|
17
|
-
from ._inputs import *
|
|
18
|
-
|
|
19
|
-
__all__ = [
|
|
20
|
-
'GetProviderIntegrationAuthorizationResult',
|
|
21
|
-
'AwaitableGetProviderIntegrationAuthorizationResult',
|
|
22
|
-
'get_provider_integration_authorization',
|
|
23
|
-
'get_provider_integration_authorization_output',
|
|
24
|
-
]
|
|
25
|
-
|
|
26
|
-
@pulumi.output_type
|
|
27
|
-
class GetProviderIntegrationAuthorizationResult:
|
|
28
|
-
"""
|
|
29
|
-
A collection of values returned by getProviderIntegrationAuthorization.
|
|
30
|
-
"""
|
|
31
|
-
def __init__(__self__, azures=None, environment=None, gcps=None, id=None, provider_integration_id=None):
|
|
32
|
-
if azures and not isinstance(azures, list):
|
|
33
|
-
raise TypeError("Expected argument 'azures' to be a list")
|
|
34
|
-
pulumi.set(__self__, "azures", azures)
|
|
35
|
-
if environment and not isinstance(environment, dict):
|
|
36
|
-
raise TypeError("Expected argument 'environment' to be a dict")
|
|
37
|
-
pulumi.set(__self__, "environment", environment)
|
|
38
|
-
if gcps and not isinstance(gcps, list):
|
|
39
|
-
raise TypeError("Expected argument 'gcps' to be a list")
|
|
40
|
-
pulumi.set(__self__, "gcps", gcps)
|
|
41
|
-
if id and not isinstance(id, str):
|
|
42
|
-
raise TypeError("Expected argument 'id' to be a str")
|
|
43
|
-
pulumi.set(__self__, "id", id)
|
|
44
|
-
if provider_integration_id and not isinstance(provider_integration_id, str):
|
|
45
|
-
raise TypeError("Expected argument 'provider_integration_id' to be a str")
|
|
46
|
-
pulumi.set(__self__, "provider_integration_id", provider_integration_id)
|
|
47
|
-
|
|
48
|
-
@_builtins.property
|
|
49
|
-
@pulumi.getter
|
|
50
|
-
def azures(self) -> Sequence['outputs.GetProviderIntegrationAuthorizationAzureResult']:
|
|
51
|
-
"""
|
|
52
|
-
(Optional Configuration Block) Azure-specific configuration details. Present for Azure integrations. It supports the following:
|
|
53
|
-
"""
|
|
54
|
-
return pulumi.get(self, "azures")
|
|
55
|
-
|
|
56
|
-
@_builtins.property
|
|
57
|
-
@pulumi.getter
|
|
58
|
-
def environment(self) -> 'outputs.GetProviderIntegrationAuthorizationEnvironmentResult':
|
|
59
|
-
"""
|
|
60
|
-
(Required Configuration Block) supports the following:
|
|
61
|
-
"""
|
|
62
|
-
return pulumi.get(self, "environment")
|
|
63
|
-
|
|
64
|
-
@_builtins.property
|
|
65
|
-
@pulumi.getter
|
|
66
|
-
def gcps(self) -> Sequence['outputs.GetProviderIntegrationAuthorizationGcpResult']:
|
|
67
|
-
"""
|
|
68
|
-
(Optional Configuration Block) GCP-specific configuration details. Present for GCP integrations. It supports the following:
|
|
69
|
-
"""
|
|
70
|
-
return pulumi.get(self, "gcps")
|
|
71
|
-
|
|
72
|
-
@_builtins.property
|
|
73
|
-
@pulumi.getter
|
|
74
|
-
def id(self) -> _builtins.str:
|
|
75
|
-
"""
|
|
76
|
-
(Required String) The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
77
|
-
"""
|
|
78
|
-
return pulumi.get(self, "id")
|
|
79
|
-
|
|
80
|
-
@_builtins.property
|
|
81
|
-
@pulumi.getter(name="providerIntegrationId")
|
|
82
|
-
def provider_integration_id(self) -> _builtins.str:
|
|
83
|
-
"""
|
|
84
|
-
(Required String) The ID of the provider integration.
|
|
85
|
-
"""
|
|
86
|
-
return pulumi.get(self, "provider_integration_id")
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
class AwaitableGetProviderIntegrationAuthorizationResult(GetProviderIntegrationAuthorizationResult):
|
|
90
|
-
# pylint: disable=using-constant-test
|
|
91
|
-
def __await__(self):
|
|
92
|
-
if False:
|
|
93
|
-
yield self
|
|
94
|
-
return GetProviderIntegrationAuthorizationResult(
|
|
95
|
-
azures=self.azures,
|
|
96
|
-
environment=self.environment,
|
|
97
|
-
gcps=self.gcps,
|
|
98
|
-
id=self.id,
|
|
99
|
-
provider_integration_id=self.provider_integration_id)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
def get_provider_integration_authorization(environment: Optional[Union['GetProviderIntegrationAuthorizationEnvironmentArgs', 'GetProviderIntegrationAuthorizationEnvironmentArgsDict']] = None,
|
|
103
|
-
id: Optional[_builtins.str] = None,
|
|
104
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProviderIntegrationAuthorizationResult:
|
|
105
|
-
"""
|
|
106
|
-
Use this data source to access information about an existing resource.
|
|
107
|
-
|
|
108
|
-
:param Union['GetProviderIntegrationAuthorizationEnvironmentArgs', 'GetProviderIntegrationAuthorizationEnvironmentArgsDict'] environment: (Required Configuration Block) supports the following:
|
|
109
|
-
:param _builtins.str id: The ID of the Provider Integration Authorization, for example, `cspi-4xg0q`.
|
|
110
|
-
"""
|
|
111
|
-
__args__ = dict()
|
|
112
|
-
__args__['environment'] = environment
|
|
113
|
-
__args__['id'] = id
|
|
114
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
115
|
-
__ret__ = pulumi.runtime.invoke('confluentcloud:index/getProviderIntegrationAuthorization:getProviderIntegrationAuthorization', __args__, opts=opts, typ=GetProviderIntegrationAuthorizationResult).value
|
|
116
|
-
|
|
117
|
-
return AwaitableGetProviderIntegrationAuthorizationResult(
|
|
118
|
-
azures=pulumi.get(__ret__, 'azures'),
|
|
119
|
-
environment=pulumi.get(__ret__, 'environment'),
|
|
120
|
-
gcps=pulumi.get(__ret__, 'gcps'),
|
|
121
|
-
id=pulumi.get(__ret__, 'id'),
|
|
122
|
-
provider_integration_id=pulumi.get(__ret__, 'provider_integration_id'))
|
|
123
|
-
def get_provider_integration_authorization_output(environment: Optional[pulumi.Input[Union['GetProviderIntegrationAuthorizationEnvironmentArgs', 'GetProviderIntegrationAuthorizationEnvironmentArgsDict']]] = None,
|
|
124
|
-
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
125
|
-
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetProviderIntegrationAuthorizationResult]:
|
|
126
|
-
"""
|
|
127
|
-
Use this data source to access information about an existing resource.
|
|
128
|
-
|
|
129
|
-
:param Union['GetProviderIntegrationAuthorizationEnvironmentArgs', 'GetProviderIntegrationAuthorizationEnvironmentArgsDict'] environment: (Required Configuration Block) supports the following:
|
|
130
|
-
:param _builtins.str id: The ID of the Provider Integration Authorization, for example, `cspi-4xg0q`.
|
|
131
|
-
"""
|
|
132
|
-
__args__ = dict()
|
|
133
|
-
__args__['environment'] = environment
|
|
134
|
-
__args__['id'] = id
|
|
135
|
-
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
136
|
-
__ret__ = pulumi.runtime.invoke_output('confluentcloud:index/getProviderIntegrationAuthorization:getProviderIntegrationAuthorization', __args__, opts=opts, typ=GetProviderIntegrationAuthorizationResult)
|
|
137
|
-
return __ret__.apply(lambda __response__: GetProviderIntegrationAuthorizationResult(
|
|
138
|
-
azures=pulumi.get(__response__, 'azures'),
|
|
139
|
-
environment=pulumi.get(__response__, 'environment'),
|
|
140
|
-
gcps=pulumi.get(__response__, 'gcps'),
|
|
141
|
-
id=pulumi.get(__response__, 'id'),
|
|
142
|
-
provider_integration_id=pulumi.get(__response__, 'provider_integration_id')))
|
|
@@ -1,270 +0,0 @@
|
|
|
1
|
-
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
|
|
5
|
-
import builtins as _builtins
|
|
6
|
-
import warnings
|
|
7
|
-
import sys
|
|
8
|
-
import pulumi
|
|
9
|
-
import pulumi.runtime
|
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
-
from . import _utilities
|
|
16
|
-
from . import outputs
|
|
17
|
-
from ._inputs import *
|
|
18
|
-
|
|
19
|
-
__all__ = [
|
|
20
|
-
'GetProviderIntegrationSetupResult',
|
|
21
|
-
'AwaitableGetProviderIntegrationSetupResult',
|
|
22
|
-
'get_provider_integration_setup',
|
|
23
|
-
'get_provider_integration_setup_output',
|
|
24
|
-
]
|
|
25
|
-
|
|
26
|
-
@pulumi.output_type
|
|
27
|
-
class GetProviderIntegrationSetupResult:
|
|
28
|
-
"""
|
|
29
|
-
A collection of values returned by getProviderIntegrationSetup.
|
|
30
|
-
"""
|
|
31
|
-
def __init__(__self__, cloud=None, display_name=None, environment=None, id=None, status=None, usages=None):
|
|
32
|
-
if cloud and not isinstance(cloud, str):
|
|
33
|
-
raise TypeError("Expected argument 'cloud' to be a str")
|
|
34
|
-
pulumi.set(__self__, "cloud", cloud)
|
|
35
|
-
if display_name and not isinstance(display_name, str):
|
|
36
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
|
37
|
-
pulumi.set(__self__, "display_name", display_name)
|
|
38
|
-
if environment and not isinstance(environment, dict):
|
|
39
|
-
raise TypeError("Expected argument 'environment' to be a dict")
|
|
40
|
-
pulumi.set(__self__, "environment", environment)
|
|
41
|
-
if id and not isinstance(id, str):
|
|
42
|
-
raise TypeError("Expected argument 'id' to be a str")
|
|
43
|
-
pulumi.set(__self__, "id", id)
|
|
44
|
-
if status and not isinstance(status, str):
|
|
45
|
-
raise TypeError("Expected argument 'status' to be a str")
|
|
46
|
-
pulumi.set(__self__, "status", status)
|
|
47
|
-
if usages and not isinstance(usages, list):
|
|
48
|
-
raise TypeError("Expected argument 'usages' to be a list")
|
|
49
|
-
pulumi.set(__self__, "usages", usages)
|
|
50
|
-
|
|
51
|
-
@_builtins.property
|
|
52
|
-
@pulumi.getter
|
|
53
|
-
def cloud(self) -> _builtins.str:
|
|
54
|
-
"""
|
|
55
|
-
(Computed String) The cloud service provider. Values are `AZURE` and `GCP`.
|
|
56
|
-
"""
|
|
57
|
-
return pulumi.get(self, "cloud")
|
|
58
|
-
|
|
59
|
-
@_builtins.property
|
|
60
|
-
@pulumi.getter(name="displayName")
|
|
61
|
-
def display_name(self) -> _builtins.str:
|
|
62
|
-
"""
|
|
63
|
-
(Required String) The display name of the Provider Integration.
|
|
64
|
-
"""
|
|
65
|
-
return pulumi.get(self, "display_name")
|
|
66
|
-
|
|
67
|
-
@_builtins.property
|
|
68
|
-
@pulumi.getter
|
|
69
|
-
def environment(self) -> 'outputs.GetProviderIntegrationSetupEnvironmentResult':
|
|
70
|
-
"""
|
|
71
|
-
(Required Configuration Block) supports the following:
|
|
72
|
-
"""
|
|
73
|
-
return pulumi.get(self, "environment")
|
|
74
|
-
|
|
75
|
-
@_builtins.property
|
|
76
|
-
@pulumi.getter
|
|
77
|
-
def id(self) -> _builtins.str:
|
|
78
|
-
"""
|
|
79
|
-
(Required String) The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
80
|
-
"""
|
|
81
|
-
return pulumi.get(self, "id")
|
|
82
|
-
|
|
83
|
-
@_builtins.property
|
|
84
|
-
@pulumi.getter
|
|
85
|
-
def status(self) -> _builtins.str:
|
|
86
|
-
"""
|
|
87
|
-
(Required String) The status of the Provider Integration. Values are `DRAFT` and `CREATED`.
|
|
88
|
-
"""
|
|
89
|
-
return pulumi.get(self, "status")
|
|
90
|
-
|
|
91
|
-
@_builtins.property
|
|
92
|
-
@pulumi.getter
|
|
93
|
-
def usages(self) -> Sequence[_builtins.str]:
|
|
94
|
-
"""
|
|
95
|
-
(Required List of Strings) List of resource CRNs where this provider integration is being used.
|
|
96
|
-
"""
|
|
97
|
-
return pulumi.get(self, "usages")
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
class AwaitableGetProviderIntegrationSetupResult(GetProviderIntegrationSetupResult):
|
|
101
|
-
# pylint: disable=using-constant-test
|
|
102
|
-
def __await__(self):
|
|
103
|
-
if False:
|
|
104
|
-
yield self
|
|
105
|
-
return GetProviderIntegrationSetupResult(
|
|
106
|
-
cloud=self.cloud,
|
|
107
|
-
display_name=self.display_name,
|
|
108
|
-
environment=self.environment,
|
|
109
|
-
id=self.id,
|
|
110
|
-
status=self.status,
|
|
111
|
-
usages=self.usages)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
def get_provider_integration_setup(display_name: Optional[_builtins.str] = None,
|
|
115
|
-
environment: Optional[Union['GetProviderIntegrationSetupEnvironmentArgs', 'GetProviderIntegrationSetupEnvironmentArgsDict']] = None,
|
|
116
|
-
id: Optional[_builtins.str] = None,
|
|
117
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProviderIntegrationSetupResult:
|
|
118
|
-
"""
|
|
119
|
-
[](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
120
|
-
|
|
121
|
-
`ProviderIntegrationSetup` describes a Cloud Service Provider (CSP) integration that allows Confluent Cloud to access resources in your cloud provider account.
|
|
122
|
-
|
|
123
|
-
## Example Usage
|
|
124
|
-
|
|
125
|
-
### Azure Provider Integration
|
|
126
|
-
|
|
127
|
-
```python
|
|
128
|
-
import pulumi
|
|
129
|
-
import pulumi_confluentcloud as confluentcloud
|
|
130
|
-
|
|
131
|
-
azure = confluentcloud.get_provider_integration_setup(id="cspi-abc123",
|
|
132
|
-
environment={
|
|
133
|
-
"id": "env-xyz456",
|
|
134
|
-
})
|
|
135
|
-
pulumi.export("azureIntegrationStatus", azure.status)
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
### GCP Provider Integration
|
|
139
|
-
|
|
140
|
-
```python
|
|
141
|
-
import pulumi
|
|
142
|
-
import pulumi_confluentcloud as confluentcloud
|
|
143
|
-
|
|
144
|
-
gcp = confluentcloud.get_provider_integration_setup(display_name="my-gcp-integration",
|
|
145
|
-
environment={
|
|
146
|
-
"id": "env-xyz456",
|
|
147
|
-
})
|
|
148
|
-
pulumi.export("gcpIntegrationId", gcp.id)
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### Using with Authorization Resource
|
|
152
|
-
|
|
153
|
-
```python
|
|
154
|
-
import pulumi
|
|
155
|
-
import pulumi_confluentcloud as confluentcloud
|
|
156
|
-
|
|
157
|
-
main = confluentcloud.get_provider_integration_setup(id="cspi-abc123",
|
|
158
|
-
environment={
|
|
159
|
-
"id": "env-xyz456",
|
|
160
|
-
})
|
|
161
|
-
# Use the integration with authorization data source
|
|
162
|
-
main_get_provider_integration_authorization = confluentcloud.get_provider_integration_authorization(id=main.id,
|
|
163
|
-
environment={
|
|
164
|
-
"id": "env-xyz456",
|
|
165
|
-
})
|
|
166
|
-
```
|
|
167
|
-
|
|
168
|
-
## Getting Started
|
|
169
|
-
|
|
170
|
-
The following end-to-end examples might help to get started with `ProviderIntegrationSetup` data source:
|
|
171
|
-
* provider-integration-azure: Complete Azure Provider Integration setup
|
|
172
|
-
* provider-integration-gcp: Complete GCP Provider Integration setup
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
:param _builtins.str display_name: The display name of the Provider Integration. Exactly one of `id` or `display_name` must be specified.
|
|
176
|
-
:param Union['GetProviderIntegrationSetupEnvironmentArgs', 'GetProviderIntegrationSetupEnvironmentArgsDict'] environment: (Required Configuration Block) supports the following:
|
|
177
|
-
:param _builtins.str id: The ID of the Provider Integration, for example, `cspi-4xg0q`. Exactly one of `id` or `display_name` must be specified.
|
|
178
|
-
"""
|
|
179
|
-
__args__ = dict()
|
|
180
|
-
__args__['displayName'] = display_name
|
|
181
|
-
__args__['environment'] = environment
|
|
182
|
-
__args__['id'] = id
|
|
183
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
184
|
-
__ret__ = pulumi.runtime.invoke('confluentcloud:index/getProviderIntegrationSetup:getProviderIntegrationSetup', __args__, opts=opts, typ=GetProviderIntegrationSetupResult).value
|
|
185
|
-
|
|
186
|
-
return AwaitableGetProviderIntegrationSetupResult(
|
|
187
|
-
cloud=pulumi.get(__ret__, 'cloud'),
|
|
188
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
|
189
|
-
environment=pulumi.get(__ret__, 'environment'),
|
|
190
|
-
id=pulumi.get(__ret__, 'id'),
|
|
191
|
-
status=pulumi.get(__ret__, 'status'),
|
|
192
|
-
usages=pulumi.get(__ret__, 'usages'))
|
|
193
|
-
def get_provider_integration_setup_output(display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
194
|
-
environment: Optional[pulumi.Input[Union['GetProviderIntegrationSetupEnvironmentArgs', 'GetProviderIntegrationSetupEnvironmentArgsDict']]] = None,
|
|
195
|
-
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
196
|
-
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetProviderIntegrationSetupResult]:
|
|
197
|
-
"""
|
|
198
|
-
[](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
199
|
-
|
|
200
|
-
`ProviderIntegrationSetup` describes a Cloud Service Provider (CSP) integration that allows Confluent Cloud to access resources in your cloud provider account.
|
|
201
|
-
|
|
202
|
-
## Example Usage
|
|
203
|
-
|
|
204
|
-
### Azure Provider Integration
|
|
205
|
-
|
|
206
|
-
```python
|
|
207
|
-
import pulumi
|
|
208
|
-
import pulumi_confluentcloud as confluentcloud
|
|
209
|
-
|
|
210
|
-
azure = confluentcloud.get_provider_integration_setup(id="cspi-abc123",
|
|
211
|
-
environment={
|
|
212
|
-
"id": "env-xyz456",
|
|
213
|
-
})
|
|
214
|
-
pulumi.export("azureIntegrationStatus", azure.status)
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
### GCP Provider Integration
|
|
218
|
-
|
|
219
|
-
```python
|
|
220
|
-
import pulumi
|
|
221
|
-
import pulumi_confluentcloud as confluentcloud
|
|
222
|
-
|
|
223
|
-
gcp = confluentcloud.get_provider_integration_setup(display_name="my-gcp-integration",
|
|
224
|
-
environment={
|
|
225
|
-
"id": "env-xyz456",
|
|
226
|
-
})
|
|
227
|
-
pulumi.export("gcpIntegrationId", gcp.id)
|
|
228
|
-
```
|
|
229
|
-
|
|
230
|
-
### Using with Authorization Resource
|
|
231
|
-
|
|
232
|
-
```python
|
|
233
|
-
import pulumi
|
|
234
|
-
import pulumi_confluentcloud as confluentcloud
|
|
235
|
-
|
|
236
|
-
main = confluentcloud.get_provider_integration_setup(id="cspi-abc123",
|
|
237
|
-
environment={
|
|
238
|
-
"id": "env-xyz456",
|
|
239
|
-
})
|
|
240
|
-
# Use the integration with authorization data source
|
|
241
|
-
main_get_provider_integration_authorization = confluentcloud.get_provider_integration_authorization(id=main.id,
|
|
242
|
-
environment={
|
|
243
|
-
"id": "env-xyz456",
|
|
244
|
-
})
|
|
245
|
-
```
|
|
246
|
-
|
|
247
|
-
## Getting Started
|
|
248
|
-
|
|
249
|
-
The following end-to-end examples might help to get started with `ProviderIntegrationSetup` data source:
|
|
250
|
-
* provider-integration-azure: Complete Azure Provider Integration setup
|
|
251
|
-
* provider-integration-gcp: Complete GCP Provider Integration setup
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
:param _builtins.str display_name: The display name of the Provider Integration. Exactly one of `id` or `display_name` must be specified.
|
|
255
|
-
:param Union['GetProviderIntegrationSetupEnvironmentArgs', 'GetProviderIntegrationSetupEnvironmentArgsDict'] environment: (Required Configuration Block) supports the following:
|
|
256
|
-
:param _builtins.str id: The ID of the Provider Integration, for example, `cspi-4xg0q`. Exactly one of `id` or `display_name` must be specified.
|
|
257
|
-
"""
|
|
258
|
-
__args__ = dict()
|
|
259
|
-
__args__['displayName'] = display_name
|
|
260
|
-
__args__['environment'] = environment
|
|
261
|
-
__args__['id'] = id
|
|
262
|
-
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
263
|
-
__ret__ = pulumi.runtime.invoke_output('confluentcloud:index/getProviderIntegrationSetup:getProviderIntegrationSetup', __args__, opts=opts, typ=GetProviderIntegrationSetupResult)
|
|
264
|
-
return __ret__.apply(lambda __response__: GetProviderIntegrationSetupResult(
|
|
265
|
-
cloud=pulumi.get(__response__, 'cloud'),
|
|
266
|
-
display_name=pulumi.get(__response__, 'display_name'),
|
|
267
|
-
environment=pulumi.get(__response__, 'environment'),
|
|
268
|
-
id=pulumi.get(__response__, 'id'),
|
|
269
|
-
status=pulumi.get(__response__, 'status'),
|
|
270
|
-
usages=pulumi.get(__response__, 'usages')))
|