pulumi-confluentcloud 2.47.0a1760420152__py3-none-any.whl → 2.48.0a1760592912__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.

@@ -0,0 +1,270 @@
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
+ [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](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
+ [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](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')))
@@ -141,8 +141,12 @@ __all__ = [
141
141
  'PrivateLinkAttachmentConnectionPrivateLinkAttachment',
142
142
  'PrivateLinkAttachmentEnvironment',
143
143
  'PrivateLinkAttachmentGcp',
144
+ 'ProviderIntegrationAuthorizationAzure',
145
+ 'ProviderIntegrationAuthorizationEnvironment',
146
+ 'ProviderIntegrationAuthorizationGcp',
144
147
  'ProviderIntegrationAws',
145
148
  'ProviderIntegrationEnvironment',
149
+ 'ProviderIntegrationSetupEnvironment',
146
150
  'SchemaCredentials',
147
151
  'SchemaExporterCredentials',
148
152
  'SchemaExporterDestinationSchemaRegistryCluster',
@@ -276,8 +280,12 @@ __all__ = [
276
280
  'GetPrivateLinkAttachmentConnectionPrivateLinkAttachmentResult',
277
281
  'GetPrivateLinkAttachmentEnvironmentResult',
278
282
  'GetPrivateLinkAttachmentGcpResult',
283
+ 'GetProviderIntegrationAuthorizationAzureResult',
284
+ 'GetProviderIntegrationAuthorizationEnvironmentResult',
285
+ 'GetProviderIntegrationAuthorizationGcpResult',
279
286
  'GetProviderIntegrationAwResult',
280
287
  'GetProviderIntegrationEnvironmentResult',
288
+ 'GetProviderIntegrationSetupEnvironmentResult',
281
289
  'GetSchemaCredentialsResult',
282
290
  'GetSchemaMetadataResult',
283
291
  'GetSchemaMetadataTagResult',
@@ -4328,6 +4336,126 @@ class PrivateLinkAttachmentGcp(dict):
4328
4336
  return pulumi.get(self, "private_service_connect_service_attachment")
4329
4337
 
4330
4338
 
4339
+ @pulumi.output_type
4340
+ class ProviderIntegrationAuthorizationAzure(dict):
4341
+ @staticmethod
4342
+ def __key_warning(key: str):
4343
+ suggest = None
4344
+ if key == "customerAzureTenantId":
4345
+ suggest = "customer_azure_tenant_id"
4346
+ elif key == "confluentMultiTenantAppId":
4347
+ suggest = "confluent_multi_tenant_app_id"
4348
+
4349
+ if suggest:
4350
+ pulumi.log.warn(f"Key '{key}' not found in ProviderIntegrationAuthorizationAzure. Access the value via the '{suggest}' property getter instead.")
4351
+
4352
+ def __getitem__(self, key: str) -> Any:
4353
+ ProviderIntegrationAuthorizationAzure.__key_warning(key)
4354
+ return super().__getitem__(key)
4355
+
4356
+ def get(self, key: str, default = None) -> Any:
4357
+ ProviderIntegrationAuthorizationAzure.__key_warning(key)
4358
+ return super().get(key, default)
4359
+
4360
+ def __init__(__self__, *,
4361
+ customer_azure_tenant_id: _builtins.str,
4362
+ confluent_multi_tenant_app_id: Optional[_builtins.str] = None):
4363
+ """
4364
+ :param _builtins.str customer_azure_tenant_id: Customer's Azure Tenant ID.
4365
+ :param _builtins.str confluent_multi_tenant_app_id: (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
4366
+ """
4367
+ pulumi.set(__self__, "customer_azure_tenant_id", customer_azure_tenant_id)
4368
+ if confluent_multi_tenant_app_id is not None:
4369
+ pulumi.set(__self__, "confluent_multi_tenant_app_id", confluent_multi_tenant_app_id)
4370
+
4371
+ @_builtins.property
4372
+ @pulumi.getter(name="customerAzureTenantId")
4373
+ def customer_azure_tenant_id(self) -> _builtins.str:
4374
+ """
4375
+ Customer's Azure Tenant ID.
4376
+ """
4377
+ return pulumi.get(self, "customer_azure_tenant_id")
4378
+
4379
+ @_builtins.property
4380
+ @pulumi.getter(name="confluentMultiTenantAppId")
4381
+ def confluent_multi_tenant_app_id(self) -> Optional[_builtins.str]:
4382
+ """
4383
+ (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
4384
+ """
4385
+ return pulumi.get(self, "confluent_multi_tenant_app_id")
4386
+
4387
+
4388
+ @pulumi.output_type
4389
+ class ProviderIntegrationAuthorizationEnvironment(dict):
4390
+ def __init__(__self__, *,
4391
+ id: _builtins.str):
4392
+ """
4393
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4394
+ """
4395
+ pulumi.set(__self__, "id", id)
4396
+
4397
+ @_builtins.property
4398
+ @pulumi.getter
4399
+ def id(self) -> _builtins.str:
4400
+ """
4401
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4402
+ """
4403
+ return pulumi.get(self, "id")
4404
+
4405
+
4406
+ @pulumi.output_type
4407
+ class ProviderIntegrationAuthorizationGcp(dict):
4408
+ @staticmethod
4409
+ def __key_warning(key: str):
4410
+ suggest = None
4411
+ if key == "customerGoogleServiceAccount":
4412
+ suggest = "customer_google_service_account"
4413
+ elif key == "googleServiceAccount":
4414
+ suggest = "google_service_account"
4415
+
4416
+ if suggest:
4417
+ pulumi.log.warn(f"Key '{key}' not found in ProviderIntegrationAuthorizationGcp. Access the value via the '{suggest}' property getter instead.")
4418
+
4419
+ def __getitem__(self, key: str) -> Any:
4420
+ ProviderIntegrationAuthorizationGcp.__key_warning(key)
4421
+ return super().__getitem__(key)
4422
+
4423
+ def get(self, key: str, default = None) -> Any:
4424
+ ProviderIntegrationAuthorizationGcp.__key_warning(key)
4425
+ return super().get(key, default)
4426
+
4427
+ def __init__(__self__, *,
4428
+ customer_google_service_account: _builtins.str,
4429
+ google_service_account: Optional[_builtins.str] = None):
4430
+ """
4431
+ :param _builtins.str customer_google_service_account: Customer's Google Service Account that Confluent Cloud impersonates.
4432
+
4433
+ > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
4434
+ :param _builtins.str google_service_account: (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
4435
+ """
4436
+ pulumi.set(__self__, "customer_google_service_account", customer_google_service_account)
4437
+ if google_service_account is not None:
4438
+ pulumi.set(__self__, "google_service_account", google_service_account)
4439
+
4440
+ @_builtins.property
4441
+ @pulumi.getter(name="customerGoogleServiceAccount")
4442
+ def customer_google_service_account(self) -> _builtins.str:
4443
+ """
4444
+ Customer's Google Service Account that Confluent Cloud impersonates.
4445
+
4446
+ > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
4447
+ """
4448
+ return pulumi.get(self, "customer_google_service_account")
4449
+
4450
+ @_builtins.property
4451
+ @pulumi.getter(name="googleServiceAccount")
4452
+ def google_service_account(self) -> Optional[_builtins.str]:
4453
+ """
4454
+ (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
4455
+ """
4456
+ return pulumi.get(self, "google_service_account")
4457
+
4458
+
4331
4459
  @pulumi.output_type
4332
4460
  class ProviderIntegrationAws(dict):
4333
4461
  @staticmethod
@@ -4417,6 +4545,24 @@ class ProviderIntegrationEnvironment(dict):
4417
4545
  return pulumi.get(self, "id")
4418
4546
 
4419
4547
 
4548
+ @pulumi.output_type
4549
+ class ProviderIntegrationSetupEnvironment(dict):
4550
+ def __init__(__self__, *,
4551
+ id: _builtins.str):
4552
+ """
4553
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4554
+ """
4555
+ pulumi.set(__self__, "id", id)
4556
+
4557
+ @_builtins.property
4558
+ @pulumi.getter
4559
+ def id(self) -> _builtins.str:
4560
+ """
4561
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
4562
+ """
4563
+ return pulumi.get(self, "id")
4564
+
4565
+
4420
4566
  @pulumi.output_type
4421
4567
  class SchemaCredentials(dict):
4422
4568
  def __init__(__self__, *,
@@ -8097,6 +8243,82 @@ class GetPrivateLinkAttachmentGcpResult(dict):
8097
8243
  return pulumi.get(self, "private_service_connect_service_attachment")
8098
8244
 
8099
8245
 
8246
+ @pulumi.output_type
8247
+ class GetProviderIntegrationAuthorizationAzureResult(dict):
8248
+ def __init__(__self__, *,
8249
+ confluent_multi_tenant_app_id: _builtins.str,
8250
+ customer_azure_tenant_id: _builtins.str):
8251
+ """
8252
+ :param _builtins.str confluent_multi_tenant_app_id: (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
8253
+ :param _builtins.str customer_azure_tenant_id: (Computed String) Customer's Azure Tenant ID.
8254
+ """
8255
+ pulumi.set(__self__, "confluent_multi_tenant_app_id", confluent_multi_tenant_app_id)
8256
+ pulumi.set(__self__, "customer_azure_tenant_id", customer_azure_tenant_id)
8257
+
8258
+ @_builtins.property
8259
+ @pulumi.getter(name="confluentMultiTenantAppId")
8260
+ def confluent_multi_tenant_app_id(self) -> _builtins.str:
8261
+ """
8262
+ (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
8263
+ """
8264
+ return pulumi.get(self, "confluent_multi_tenant_app_id")
8265
+
8266
+ @_builtins.property
8267
+ @pulumi.getter(name="customerAzureTenantId")
8268
+ def customer_azure_tenant_id(self) -> _builtins.str:
8269
+ """
8270
+ (Computed String) Customer's Azure Tenant ID.
8271
+ """
8272
+ return pulumi.get(self, "customer_azure_tenant_id")
8273
+
8274
+
8275
+ @pulumi.output_type
8276
+ class GetProviderIntegrationAuthorizationEnvironmentResult(dict):
8277
+ def __init__(__self__, *,
8278
+ id: _builtins.str):
8279
+ """
8280
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8281
+ """
8282
+ pulumi.set(__self__, "id", id)
8283
+
8284
+ @_builtins.property
8285
+ @pulumi.getter
8286
+ def id(self) -> _builtins.str:
8287
+ """
8288
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8289
+ """
8290
+ return pulumi.get(self, "id")
8291
+
8292
+
8293
+ @pulumi.output_type
8294
+ class GetProviderIntegrationAuthorizationGcpResult(dict):
8295
+ def __init__(__self__, *,
8296
+ customer_google_service_account: _builtins.str,
8297
+ google_service_account: _builtins.str):
8298
+ """
8299
+ :param _builtins.str customer_google_service_account: (Computed String) Customer's Google Service Account that Confluent Cloud impersonates.
8300
+ :param _builtins.str google_service_account: (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
8301
+ """
8302
+ pulumi.set(__self__, "customer_google_service_account", customer_google_service_account)
8303
+ pulumi.set(__self__, "google_service_account", google_service_account)
8304
+
8305
+ @_builtins.property
8306
+ @pulumi.getter(name="customerGoogleServiceAccount")
8307
+ def customer_google_service_account(self) -> _builtins.str:
8308
+ """
8309
+ (Computed String) Customer's Google Service Account that Confluent Cloud impersonates.
8310
+ """
8311
+ return pulumi.get(self, "customer_google_service_account")
8312
+
8313
+ @_builtins.property
8314
+ @pulumi.getter(name="googleServiceAccount")
8315
+ def google_service_account(self) -> _builtins.str:
8316
+ """
8317
+ (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
8318
+ """
8319
+ return pulumi.get(self, "google_service_account")
8320
+
8321
+
8100
8322
  @pulumi.output_type
8101
8323
  class GetProviderIntegrationAwResult(dict):
8102
8324
  def __init__(__self__, *,
@@ -8159,6 +8381,24 @@ class GetProviderIntegrationEnvironmentResult(dict):
8159
8381
  return pulumi.get(self, "id")
8160
8382
 
8161
8383
 
8384
+ @pulumi.output_type
8385
+ class GetProviderIntegrationSetupEnvironmentResult(dict):
8386
+ def __init__(__self__, *,
8387
+ id: _builtins.str):
8388
+ """
8389
+ :param _builtins.str id: The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8390
+ """
8391
+ pulumi.set(__self__, "id", id)
8392
+
8393
+ @_builtins.property
8394
+ @pulumi.getter
8395
+ def id(self) -> _builtins.str:
8396
+ """
8397
+ The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
8398
+ """
8399
+ return pulumi.get(self, "id")
8400
+
8401
+
8162
8402
  @pulumi.output_type
8163
8403
  class GetSchemaCredentialsResult(dict):
8164
8404
  def __init__(__self__, *,