pulumi-gcp 8.21.0a1740810968__py3-none-any.whl → 8.21.0a1741103856__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.
Files changed (50) hide show
  1. pulumi_gcp/__init__.py +16 -0
  2. pulumi_gcp/alloydb/__init__.py +1 -0
  3. pulumi_gcp/alloydb/get_cluster.py +491 -0
  4. pulumi_gcp/alloydb/outputs.py +808 -0
  5. pulumi_gcp/appengine/_inputs.py +3 -3
  6. pulumi_gcp/appengine/outputs.py +2 -2
  7. pulumi_gcp/backupdisasterrecovery/backup_plan.py +16 -0
  8. pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +16 -0
  9. pulumi_gcp/backupdisasterrecovery/management_server.py +16 -0
  10. pulumi_gcp/bigquery/_inputs.py +6 -8
  11. pulumi_gcp/bigquery/data_transfer_config.py +28 -0
  12. pulumi_gcp/bigquery/outputs.py +4 -5
  13. pulumi_gcp/chronicle/rule_deployment.py +21 -7
  14. pulumi_gcp/composer/get_environment.py +12 -0
  15. pulumi_gcp/composer/get_image_versions.py +12 -0
  16. pulumi_gcp/composer/get_user_workloads_config_map.py +12 -0
  17. pulumi_gcp/composer/get_user_workloads_secret.py +12 -0
  18. pulumi_gcp/compute/network_peering_routes_config.py +140 -6
  19. pulumi_gcp/datacatalog/entry_group.py +4 -0
  20. pulumi_gcp/datacatalog/tag_template.py +4 -0
  21. pulumi_gcp/developerconnect/_inputs.py +575 -0
  22. pulumi_gcp/developerconnect/connection.py +200 -0
  23. pulumi_gcp/developerconnect/git_repository_link.py +12 -0
  24. pulumi_gcp/developerconnect/outputs.py +461 -0
  25. pulumi_gcp/gemini/__init__.py +1 -0
  26. pulumi_gcp/gemini/data_sharing_with_google_setting.py +6 -0
  27. pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +722 -0
  28. pulumi_gcp/gemini/logging_setting.py +4 -0
  29. pulumi_gcp/gemini/logging_setting_binding.py +12 -0
  30. pulumi_gcp/iam/organizations_policy_binding.py +10 -2
  31. pulumi_gcp/iam/projects_policy_binding.py +10 -2
  32. pulumi_gcp/iam/workforce_pool_provider.py +63 -11
  33. pulumi_gcp/parametermanager/get_parameter_version_render.py +3 -0
  34. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +3 -0
  35. pulumi_gcp/projects/__init__.py +1 -0
  36. pulumi_gcp/projects/get_ancestry.py +150 -0
  37. pulumi_gcp/projects/outputs.py +30 -0
  38. pulumi_gcp/pulumi-plugin.json +1 -1
  39. pulumi_gcp/redis/cluster.py +211 -94
  40. pulumi_gcp/secretmanager/secret_version.py +73 -23
  41. pulumi_gcp/spanner/__init__.py +1 -0
  42. pulumi_gcp/spanner/instance_partition.py +658 -0
  43. pulumi_gcp/sql/user.py +20 -14
  44. pulumi_gcp/tpu/_inputs.py +150 -1
  45. pulumi_gcp/tpu/outputs.py +114 -1
  46. pulumi_gcp/tpu/v2_queued_resource.py +74 -0
  47. {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/METADATA +1 -1
  48. {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/RECORD +50 -46
  49. {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/WHEEL +0 -0
  50. {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,13 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'ConnectionBitbucketCloudConfig',
20
+ 'ConnectionBitbucketCloudConfigAuthorizerCredential',
21
+ 'ConnectionBitbucketCloudConfigReadAuthorizerCredential',
22
+ 'ConnectionBitbucketDataCenterConfig',
23
+ 'ConnectionBitbucketDataCenterConfigAuthorizerCredential',
24
+ 'ConnectionBitbucketDataCenterConfigReadAuthorizerCredential',
25
+ 'ConnectionBitbucketDataCenterConfigServiceDirectoryConfig',
19
26
  'ConnectionCryptoKeyConfig',
20
27
  'ConnectionGithubConfig',
21
28
  'ConnectionGithubConfigAuthorizerCredential',
@@ -31,6 +38,460 @@ __all__ = [
31
38
  'ConnectionInstallationState',
32
39
  ]
33
40
 
41
+ @pulumi.output_type
42
+ class ConnectionBitbucketCloudConfig(dict):
43
+ @staticmethod
44
+ def __key_warning(key: str):
45
+ suggest = None
46
+ if key == "authorizerCredential":
47
+ suggest = "authorizer_credential"
48
+ elif key == "readAuthorizerCredential":
49
+ suggest = "read_authorizer_credential"
50
+ elif key == "webhookSecretSecretVersion":
51
+ suggest = "webhook_secret_secret_version"
52
+
53
+ if suggest:
54
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketCloudConfig. Access the value via the '{suggest}' property getter instead.")
55
+
56
+ def __getitem__(self, key: str) -> Any:
57
+ ConnectionBitbucketCloudConfig.__key_warning(key)
58
+ return super().__getitem__(key)
59
+
60
+ def get(self, key: str, default = None) -> Any:
61
+ ConnectionBitbucketCloudConfig.__key_warning(key)
62
+ return super().get(key, default)
63
+
64
+ def __init__(__self__, *,
65
+ authorizer_credential: 'outputs.ConnectionBitbucketCloudConfigAuthorizerCredential',
66
+ read_authorizer_credential: 'outputs.ConnectionBitbucketCloudConfigReadAuthorizerCredential',
67
+ webhook_secret_secret_version: str,
68
+ workspace: str):
69
+ """
70
+ :param 'ConnectionBitbucketCloudConfigAuthorizerCredentialArgs' authorizer_credential: Represents a personal access token that authorized the Connection,
71
+ and associated metadata.
72
+ Structure is documented below.
73
+ :param 'ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs' read_authorizer_credential: Represents a personal access token that authorized the Connection,
74
+ and associated metadata.
75
+ Structure is documented below.
76
+ :param str webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
77
+ events, formatted as `projects/*/secrets/*/versions/*`. This is used to
78
+ validate and create webhooks.
79
+ :param str workspace: Required. The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
80
+ """
81
+ pulumi.set(__self__, "authorizer_credential", authorizer_credential)
82
+ pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
83
+ pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
84
+ pulumi.set(__self__, "workspace", workspace)
85
+
86
+ @property
87
+ @pulumi.getter(name="authorizerCredential")
88
+ def authorizer_credential(self) -> 'outputs.ConnectionBitbucketCloudConfigAuthorizerCredential':
89
+ """
90
+ Represents a personal access token that authorized the Connection,
91
+ and associated metadata.
92
+ Structure is documented below.
93
+ """
94
+ return pulumi.get(self, "authorizer_credential")
95
+
96
+ @property
97
+ @pulumi.getter(name="readAuthorizerCredential")
98
+ def read_authorizer_credential(self) -> 'outputs.ConnectionBitbucketCloudConfigReadAuthorizerCredential':
99
+ """
100
+ Represents a personal access token that authorized the Connection,
101
+ and associated metadata.
102
+ Structure is documented below.
103
+ """
104
+ return pulumi.get(self, "read_authorizer_credential")
105
+
106
+ @property
107
+ @pulumi.getter(name="webhookSecretSecretVersion")
108
+ def webhook_secret_secret_version(self) -> str:
109
+ """
110
+ Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
111
+ events, formatted as `projects/*/secrets/*/versions/*`. This is used to
112
+ validate and create webhooks.
113
+ """
114
+ return pulumi.get(self, "webhook_secret_secret_version")
115
+
116
+ @property
117
+ @pulumi.getter
118
+ def workspace(self) -> str:
119
+ """
120
+ Required. The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
121
+ """
122
+ return pulumi.get(self, "workspace")
123
+
124
+
125
+ @pulumi.output_type
126
+ class ConnectionBitbucketCloudConfigAuthorizerCredential(dict):
127
+ @staticmethod
128
+ def __key_warning(key: str):
129
+ suggest = None
130
+ if key == "userTokenSecretVersion":
131
+ suggest = "user_token_secret_version"
132
+
133
+ if suggest:
134
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketCloudConfigAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
135
+
136
+ def __getitem__(self, key: str) -> Any:
137
+ ConnectionBitbucketCloudConfigAuthorizerCredential.__key_warning(key)
138
+ return super().__getitem__(key)
139
+
140
+ def get(self, key: str, default = None) -> Any:
141
+ ConnectionBitbucketCloudConfigAuthorizerCredential.__key_warning(key)
142
+ return super().get(key, default)
143
+
144
+ def __init__(__self__, *,
145
+ user_token_secret_version: str,
146
+ username: Optional[str] = None):
147
+ """
148
+ :param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
149
+ the Developer Connect connection. Format:
150
+ `projects/*/secrets/*/versions/*`.
151
+ :param str username: (Output)
152
+ Output only. The username associated with this token.
153
+ """
154
+ pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
155
+ if username is not None:
156
+ pulumi.set(__self__, "username", username)
157
+
158
+ @property
159
+ @pulumi.getter(name="userTokenSecretVersion")
160
+ def user_token_secret_version(self) -> str:
161
+ """
162
+ Required. A SecretManager resource containing the user token that authorizes
163
+ the Developer Connect connection. Format:
164
+ `projects/*/secrets/*/versions/*`.
165
+ """
166
+ return pulumi.get(self, "user_token_secret_version")
167
+
168
+ @property
169
+ @pulumi.getter
170
+ def username(self) -> Optional[str]:
171
+ """
172
+ (Output)
173
+ Output only. The username associated with this token.
174
+ """
175
+ return pulumi.get(self, "username")
176
+
177
+
178
+ @pulumi.output_type
179
+ class ConnectionBitbucketCloudConfigReadAuthorizerCredential(dict):
180
+ @staticmethod
181
+ def __key_warning(key: str):
182
+ suggest = None
183
+ if key == "userTokenSecretVersion":
184
+ suggest = "user_token_secret_version"
185
+
186
+ if suggest:
187
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketCloudConfigReadAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
188
+
189
+ def __getitem__(self, key: str) -> Any:
190
+ ConnectionBitbucketCloudConfigReadAuthorizerCredential.__key_warning(key)
191
+ return super().__getitem__(key)
192
+
193
+ def get(self, key: str, default = None) -> Any:
194
+ ConnectionBitbucketCloudConfigReadAuthorizerCredential.__key_warning(key)
195
+ return super().get(key, default)
196
+
197
+ def __init__(__self__, *,
198
+ user_token_secret_version: str,
199
+ username: Optional[str] = None):
200
+ """
201
+ :param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
202
+ the Developer Connect connection. Format:
203
+ `projects/*/secrets/*/versions/*`.
204
+ :param str username: (Output)
205
+ Output only. The username associated with this token.
206
+ """
207
+ pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
208
+ if username is not None:
209
+ pulumi.set(__self__, "username", username)
210
+
211
+ @property
212
+ @pulumi.getter(name="userTokenSecretVersion")
213
+ def user_token_secret_version(self) -> str:
214
+ """
215
+ Required. A SecretManager resource containing the user token that authorizes
216
+ the Developer Connect connection. Format:
217
+ `projects/*/secrets/*/versions/*`.
218
+ """
219
+ return pulumi.get(self, "user_token_secret_version")
220
+
221
+ @property
222
+ @pulumi.getter
223
+ def username(self) -> Optional[str]:
224
+ """
225
+ (Output)
226
+ Output only. The username associated with this token.
227
+ """
228
+ return pulumi.get(self, "username")
229
+
230
+
231
+ @pulumi.output_type
232
+ class ConnectionBitbucketDataCenterConfig(dict):
233
+ @staticmethod
234
+ def __key_warning(key: str):
235
+ suggest = None
236
+ if key == "authorizerCredential":
237
+ suggest = "authorizer_credential"
238
+ elif key == "hostUri":
239
+ suggest = "host_uri"
240
+ elif key == "readAuthorizerCredential":
241
+ suggest = "read_authorizer_credential"
242
+ elif key == "webhookSecretSecretVersion":
243
+ suggest = "webhook_secret_secret_version"
244
+ elif key == "serverVersion":
245
+ suggest = "server_version"
246
+ elif key == "serviceDirectoryConfig":
247
+ suggest = "service_directory_config"
248
+ elif key == "sslCaCertificate":
249
+ suggest = "ssl_ca_certificate"
250
+
251
+ if suggest:
252
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketDataCenterConfig. Access the value via the '{suggest}' property getter instead.")
253
+
254
+ def __getitem__(self, key: str) -> Any:
255
+ ConnectionBitbucketDataCenterConfig.__key_warning(key)
256
+ return super().__getitem__(key)
257
+
258
+ def get(self, key: str, default = None) -> Any:
259
+ ConnectionBitbucketDataCenterConfig.__key_warning(key)
260
+ return super().get(key, default)
261
+
262
+ def __init__(__self__, *,
263
+ authorizer_credential: 'outputs.ConnectionBitbucketDataCenterConfigAuthorizerCredential',
264
+ host_uri: str,
265
+ read_authorizer_credential: 'outputs.ConnectionBitbucketDataCenterConfigReadAuthorizerCredential',
266
+ webhook_secret_secret_version: str,
267
+ server_version: Optional[str] = None,
268
+ service_directory_config: Optional['outputs.ConnectionBitbucketDataCenterConfigServiceDirectoryConfig'] = None,
269
+ ssl_ca_certificate: Optional[str] = None):
270
+ """
271
+ :param 'ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs' authorizer_credential: Represents a personal access token that authorized the Connection,
272
+ and associated metadata.
273
+ Structure is documented below.
274
+ :param str host_uri: Required. The URI of the Bitbucket Data Center host this connection is for.
275
+ :param 'ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs' read_authorizer_credential: Represents a personal access token that authorized the Connection,
276
+ and associated metadata.
277
+ Structure is documented below.
278
+ :param str webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
279
+ events, formatted as `projects/*/secrets/*/versions/*`. This is used to
280
+ validate webhooks.
281
+ :param str server_version: (Output)
282
+ Output only. Version of the Bitbucket Data Center server running on the `host_uri`.
283
+ :param 'ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs' service_directory_config: ServiceDirectoryConfig represents Service Directory configuration for a
284
+ connection.
285
+ Structure is documented below.
286
+ :param str ssl_ca_certificate: Optional. SSL certificate authority to trust when making requests to Bitbucket Data
287
+ Center.
288
+ """
289
+ pulumi.set(__self__, "authorizer_credential", authorizer_credential)
290
+ pulumi.set(__self__, "host_uri", host_uri)
291
+ pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
292
+ pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
293
+ if server_version is not None:
294
+ pulumi.set(__self__, "server_version", server_version)
295
+ if service_directory_config is not None:
296
+ pulumi.set(__self__, "service_directory_config", service_directory_config)
297
+ if ssl_ca_certificate is not None:
298
+ pulumi.set(__self__, "ssl_ca_certificate", ssl_ca_certificate)
299
+
300
+ @property
301
+ @pulumi.getter(name="authorizerCredential")
302
+ def authorizer_credential(self) -> 'outputs.ConnectionBitbucketDataCenterConfigAuthorizerCredential':
303
+ """
304
+ Represents a personal access token that authorized the Connection,
305
+ and associated metadata.
306
+ Structure is documented below.
307
+ """
308
+ return pulumi.get(self, "authorizer_credential")
309
+
310
+ @property
311
+ @pulumi.getter(name="hostUri")
312
+ def host_uri(self) -> str:
313
+ """
314
+ Required. The URI of the Bitbucket Data Center host this connection is for.
315
+ """
316
+ return pulumi.get(self, "host_uri")
317
+
318
+ @property
319
+ @pulumi.getter(name="readAuthorizerCredential")
320
+ def read_authorizer_credential(self) -> 'outputs.ConnectionBitbucketDataCenterConfigReadAuthorizerCredential':
321
+ """
322
+ Represents a personal access token that authorized the Connection,
323
+ and associated metadata.
324
+ Structure is documented below.
325
+ """
326
+ return pulumi.get(self, "read_authorizer_credential")
327
+
328
+ @property
329
+ @pulumi.getter(name="webhookSecretSecretVersion")
330
+ def webhook_secret_secret_version(self) -> str:
331
+ """
332
+ Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
333
+ events, formatted as `projects/*/secrets/*/versions/*`. This is used to
334
+ validate webhooks.
335
+ """
336
+ return pulumi.get(self, "webhook_secret_secret_version")
337
+
338
+ @property
339
+ @pulumi.getter(name="serverVersion")
340
+ def server_version(self) -> Optional[str]:
341
+ """
342
+ (Output)
343
+ Output only. Version of the Bitbucket Data Center server running on the `host_uri`.
344
+ """
345
+ return pulumi.get(self, "server_version")
346
+
347
+ @property
348
+ @pulumi.getter(name="serviceDirectoryConfig")
349
+ def service_directory_config(self) -> Optional['outputs.ConnectionBitbucketDataCenterConfigServiceDirectoryConfig']:
350
+ """
351
+ ServiceDirectoryConfig represents Service Directory configuration for a
352
+ connection.
353
+ Structure is documented below.
354
+ """
355
+ return pulumi.get(self, "service_directory_config")
356
+
357
+ @property
358
+ @pulumi.getter(name="sslCaCertificate")
359
+ def ssl_ca_certificate(self) -> Optional[str]:
360
+ """
361
+ Optional. SSL certificate authority to trust when making requests to Bitbucket Data
362
+ Center.
363
+ """
364
+ return pulumi.get(self, "ssl_ca_certificate")
365
+
366
+
367
+ @pulumi.output_type
368
+ class ConnectionBitbucketDataCenterConfigAuthorizerCredential(dict):
369
+ @staticmethod
370
+ def __key_warning(key: str):
371
+ suggest = None
372
+ if key == "userTokenSecretVersion":
373
+ suggest = "user_token_secret_version"
374
+
375
+ if suggest:
376
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketDataCenterConfigAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
377
+
378
+ def __getitem__(self, key: str) -> Any:
379
+ ConnectionBitbucketDataCenterConfigAuthorizerCredential.__key_warning(key)
380
+ return super().__getitem__(key)
381
+
382
+ def get(self, key: str, default = None) -> Any:
383
+ ConnectionBitbucketDataCenterConfigAuthorizerCredential.__key_warning(key)
384
+ return super().get(key, default)
385
+
386
+ def __init__(__self__, *,
387
+ user_token_secret_version: str,
388
+ username: Optional[str] = None):
389
+ """
390
+ :param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
391
+ the Developer Connect connection. Format:
392
+ `projects/*/secrets/*/versions/*`.
393
+ :param str username: (Output)
394
+ Output only. The username associated with this token.
395
+ """
396
+ pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
397
+ if username is not None:
398
+ pulumi.set(__self__, "username", username)
399
+
400
+ @property
401
+ @pulumi.getter(name="userTokenSecretVersion")
402
+ def user_token_secret_version(self) -> str:
403
+ """
404
+ Required. A SecretManager resource containing the user token that authorizes
405
+ the Developer Connect connection. Format:
406
+ `projects/*/secrets/*/versions/*`.
407
+ """
408
+ return pulumi.get(self, "user_token_secret_version")
409
+
410
+ @property
411
+ @pulumi.getter
412
+ def username(self) -> Optional[str]:
413
+ """
414
+ (Output)
415
+ Output only. The username associated with this token.
416
+ """
417
+ return pulumi.get(self, "username")
418
+
419
+
420
+ @pulumi.output_type
421
+ class ConnectionBitbucketDataCenterConfigReadAuthorizerCredential(dict):
422
+ @staticmethod
423
+ def __key_warning(key: str):
424
+ suggest = None
425
+ if key == "userTokenSecretVersion":
426
+ suggest = "user_token_secret_version"
427
+
428
+ if suggest:
429
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketDataCenterConfigReadAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
430
+
431
+ def __getitem__(self, key: str) -> Any:
432
+ ConnectionBitbucketDataCenterConfigReadAuthorizerCredential.__key_warning(key)
433
+ return super().__getitem__(key)
434
+
435
+ def get(self, key: str, default = None) -> Any:
436
+ ConnectionBitbucketDataCenterConfigReadAuthorizerCredential.__key_warning(key)
437
+ return super().get(key, default)
438
+
439
+ def __init__(__self__, *,
440
+ user_token_secret_version: str,
441
+ username: Optional[str] = None):
442
+ """
443
+ :param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
444
+ the Developer Connect connection. Format:
445
+ `projects/*/secrets/*/versions/*`.
446
+ :param str username: (Output)
447
+ Output only. The username associated with this token.
448
+ """
449
+ pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
450
+ if username is not None:
451
+ pulumi.set(__self__, "username", username)
452
+
453
+ @property
454
+ @pulumi.getter(name="userTokenSecretVersion")
455
+ def user_token_secret_version(self) -> str:
456
+ """
457
+ Required. A SecretManager resource containing the user token that authorizes
458
+ the Developer Connect connection. Format:
459
+ `projects/*/secrets/*/versions/*`.
460
+ """
461
+ return pulumi.get(self, "user_token_secret_version")
462
+
463
+ @property
464
+ @pulumi.getter
465
+ def username(self) -> Optional[str]:
466
+ """
467
+ (Output)
468
+ Output only. The username associated with this token.
469
+ """
470
+ return pulumi.get(self, "username")
471
+
472
+
473
+ @pulumi.output_type
474
+ class ConnectionBitbucketDataCenterConfigServiceDirectoryConfig(dict):
475
+ def __init__(__self__, *,
476
+ service: str):
477
+ """
478
+ :param str service: Required. The Service Directory service name.
479
+ Format:
480
+ projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
481
+ """
482
+ pulumi.set(__self__, "service", service)
483
+
484
+ @property
485
+ @pulumi.getter
486
+ def service(self) -> str:
487
+ """
488
+ Required. The Service Directory service name.
489
+ Format:
490
+ projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
491
+ """
492
+ return pulumi.get(self, "service")
493
+
494
+
34
495
  @pulumi.output_type
35
496
  class ConnectionCryptoKeyConfig(dict):
36
497
  @staticmethod
@@ -7,6 +7,7 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .code_repository_index import *
9
9
  from .data_sharing_with_google_setting import *
10
+ from .data_sharing_with_google_setting_binding import *
10
11
  from .gemini_gcp_enablement_setting import *
11
12
  from .get_repository_group_iam_policy import *
12
13
  from .logging_setting import *
@@ -324,6 +324,9 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
324
324
  example = gcp.gemini.DataSharingWithGoogleSetting("example",
325
325
  data_sharing_with_google_setting_id="ls1-tf",
326
326
  location="global",
327
+ labels={
328
+ "my_key": "my_value",
329
+ },
327
330
  enable_preview_data_sharing=True)
328
331
  ```
329
332
 
@@ -385,6 +388,9 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
385
388
  example = gcp.gemini.DataSharingWithGoogleSetting("example",
386
389
  data_sharing_with_google_setting_id="ls1-tf",
387
390
  location="global",
391
+ labels={
392
+ "my_key": "my_value",
393
+ },
388
394
  enable_preview_data_sharing=True)
389
395
  ```
390
396