pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.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.
- pulumi_gcp/__init__.py +96 -0
- pulumi_gcp/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +6 -0
- pulumi_gcp/compute/_inputs.py +1370 -17
- pulumi_gcp/compute/backend_service.py +209 -14
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +403 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +78 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1952 -29
- pulumi_gcp/compute/region_backend_service.py +207 -14
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +2 -0
- pulumi_gcp/eventarc/_inputs.py +80 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +82 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +84 -27
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +56 -18
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +128 -12
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- pulumi_gcp/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/RECORD +110 -95
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/eventarc/outputs.py
CHANGED
@@ -16,6 +16,8 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'GoogleApiSourceLoggingConfig',
|
20
|
+
'MessageBusLoggingConfig',
|
19
21
|
'TriggerDestination',
|
20
22
|
'TriggerDestinationCloudRunService',
|
21
23
|
'TriggerDestinationGke',
|
@@ -26,6 +28,86 @@ __all__ = [
|
|
26
28
|
'TriggerTransportPubsub',
|
27
29
|
]
|
28
30
|
|
31
|
+
@pulumi.output_type
|
32
|
+
class GoogleApiSourceLoggingConfig(dict):
|
33
|
+
@staticmethod
|
34
|
+
def __key_warning(key: str):
|
35
|
+
suggest = None
|
36
|
+
if key == "logSeverity":
|
37
|
+
suggest = "log_severity"
|
38
|
+
|
39
|
+
if suggest:
|
40
|
+
pulumi.log.warn(f"Key '{key}' not found in GoogleApiSourceLoggingConfig. Access the value via the '{suggest}' property getter instead.")
|
41
|
+
|
42
|
+
def __getitem__(self, key: str) -> Any:
|
43
|
+
GoogleApiSourceLoggingConfig.__key_warning(key)
|
44
|
+
return super().__getitem__(key)
|
45
|
+
|
46
|
+
def get(self, key: str, default = None) -> Any:
|
47
|
+
GoogleApiSourceLoggingConfig.__key_warning(key)
|
48
|
+
return super().get(key, default)
|
49
|
+
|
50
|
+
def __init__(__self__, *,
|
51
|
+
log_severity: Optional[str] = None):
|
52
|
+
"""
|
53
|
+
:param str log_severity: The minimum severity of logs that will be sent to Stackdriver/Platform
|
54
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
55
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
56
|
+
"""
|
57
|
+
if log_severity is not None:
|
58
|
+
pulumi.set(__self__, "log_severity", log_severity)
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter(name="logSeverity")
|
62
|
+
def log_severity(self) -> Optional[str]:
|
63
|
+
"""
|
64
|
+
The minimum severity of logs that will be sent to Stackdriver/Platform
|
65
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
66
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "log_severity")
|
69
|
+
|
70
|
+
|
71
|
+
@pulumi.output_type
|
72
|
+
class MessageBusLoggingConfig(dict):
|
73
|
+
@staticmethod
|
74
|
+
def __key_warning(key: str):
|
75
|
+
suggest = None
|
76
|
+
if key == "logSeverity":
|
77
|
+
suggest = "log_severity"
|
78
|
+
|
79
|
+
if suggest:
|
80
|
+
pulumi.log.warn(f"Key '{key}' not found in MessageBusLoggingConfig. Access the value via the '{suggest}' property getter instead.")
|
81
|
+
|
82
|
+
def __getitem__(self, key: str) -> Any:
|
83
|
+
MessageBusLoggingConfig.__key_warning(key)
|
84
|
+
return super().__getitem__(key)
|
85
|
+
|
86
|
+
def get(self, key: str, default = None) -> Any:
|
87
|
+
MessageBusLoggingConfig.__key_warning(key)
|
88
|
+
return super().get(key, default)
|
89
|
+
|
90
|
+
def __init__(__self__, *,
|
91
|
+
log_severity: Optional[str] = None):
|
92
|
+
"""
|
93
|
+
:param str log_severity: Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
94
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
95
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
96
|
+
"""
|
97
|
+
if log_severity is not None:
|
98
|
+
pulumi.set(__self__, "log_severity", log_severity)
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="logSeverity")
|
102
|
+
def log_severity(self) -> Optional[str]:
|
103
|
+
"""
|
104
|
+
Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
105
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
106
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "log_severity")
|
109
|
+
|
110
|
+
|
29
111
|
@pulumi.output_type
|
30
112
|
class TriggerDestination(dict):
|
31
113
|
@staticmethod
|
@@ -505,7 +505,7 @@ class DataConnectService(pulumi.CustomResource):
|
|
505
505
|
project="my-project-name",
|
506
506
|
service="firebasedataconnect.googleapis.com",
|
507
507
|
disable_on_destroy=False)
|
508
|
-
# Create
|
508
|
+
# Create a Firebase Data Connect service
|
509
509
|
default = gcp.firebase.DataConnectService("default",
|
510
510
|
project="my-project-name",
|
511
511
|
location="us-central1",
|
@@ -520,6 +520,25 @@ class DataConnectService(pulumi.CustomResource):
|
|
520
520
|
},
|
521
521
|
opts = pulumi.ResourceOptions(depends_on=[fdc]))
|
522
522
|
```
|
523
|
+
### Firebasedataconnect Service With Force Deletion
|
524
|
+
|
525
|
+
```python
|
526
|
+
import pulumi
|
527
|
+
import pulumi_gcp as gcp
|
528
|
+
|
529
|
+
# Enable Firebase Data Connect API
|
530
|
+
fdc = gcp.projects.Service("fdc",
|
531
|
+
project="my-project-name",
|
532
|
+
service="firebasedataconnect.googleapis.com",
|
533
|
+
disable_on_destroy=False)
|
534
|
+
# Create a Firebase Data Connect service
|
535
|
+
default = gcp.firebase.DataConnectService("default",
|
536
|
+
project="my-project-name",
|
537
|
+
location="us-central1",
|
538
|
+
service_id="example-service",
|
539
|
+
deletion_policy="FORCE",
|
540
|
+
opts = pulumi.ResourceOptions(depends_on=[fdc]))
|
541
|
+
```
|
523
542
|
|
524
543
|
## Import
|
525
544
|
|
@@ -596,7 +615,7 @@ class DataConnectService(pulumi.CustomResource):
|
|
596
615
|
project="my-project-name",
|
597
616
|
service="firebasedataconnect.googleapis.com",
|
598
617
|
disable_on_destroy=False)
|
599
|
-
# Create
|
618
|
+
# Create a Firebase Data Connect service
|
600
619
|
default = gcp.firebase.DataConnectService("default",
|
601
620
|
project="my-project-name",
|
602
621
|
location="us-central1",
|
@@ -611,6 +630,25 @@ class DataConnectService(pulumi.CustomResource):
|
|
611
630
|
},
|
612
631
|
opts = pulumi.ResourceOptions(depends_on=[fdc]))
|
613
632
|
```
|
633
|
+
### Firebasedataconnect Service With Force Deletion
|
634
|
+
|
635
|
+
```python
|
636
|
+
import pulumi
|
637
|
+
import pulumi_gcp as gcp
|
638
|
+
|
639
|
+
# Enable Firebase Data Connect API
|
640
|
+
fdc = gcp.projects.Service("fdc",
|
641
|
+
project="my-project-name",
|
642
|
+
service="firebasedataconnect.googleapis.com",
|
643
|
+
disable_on_destroy=False)
|
644
|
+
# Create a Firebase Data Connect service
|
645
|
+
default = gcp.firebase.DataConnectService("default",
|
646
|
+
project="my-project-name",
|
647
|
+
location="us-central1",
|
648
|
+
service_id="example-service",
|
649
|
+
deletion_policy="FORCE",
|
650
|
+
opts = pulumi.ResourceOptions(depends_on=[fdc]))
|
651
|
+
```
|
614
652
|
|
615
653
|
## Import
|
616
654
|
|
pulumi_gcp/gemini/__init__.py
CHANGED
@@ -9,6 +9,7 @@ from .code_repository_index import *
|
|
9
9
|
from .data_sharing_with_google_setting import *
|
10
10
|
from .data_sharing_with_google_setting_binding import *
|
11
11
|
from .gemini_gcp_enablement_setting import *
|
12
|
+
from .gemini_gcp_enablement_setting_binding import *
|
12
13
|
from .get_repository_group_iam_policy import *
|
13
14
|
from .logging_setting import *
|
14
15
|
from .logging_setting_binding import *
|
@@ -39,7 +39,7 @@ class DataSharingWithGoogleSettingBindingArgs:
|
|
39
39
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
40
40
|
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
|
41
41
|
:param pulumi.Input[str] product: Product type of the setting binding.
|
42
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
42
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
43
43
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
44
44
|
If it is not provided, the provider project is used.
|
45
45
|
"""
|
@@ -125,7 +125,7 @@ class DataSharingWithGoogleSettingBindingArgs:
|
|
125
125
|
def product(self) -> Optional[pulumi.Input[str]]:
|
126
126
|
"""
|
127
127
|
Product type of the setting binding.
|
128
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
128
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
129
129
|
"""
|
130
130
|
return pulumi.get(self, "product")
|
131
131
|
|
@@ -174,7 +174,7 @@ class _DataSharingWithGoogleSettingBindingState:
|
|
174
174
|
:param pulumi.Input[str] name: Identifier. Name of the resource.
|
175
175
|
Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{setting}/settingBindings/{setting_binding}
|
176
176
|
:param pulumi.Input[str] product: Product type of the setting binding.
|
177
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
177
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
178
178
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
179
179
|
If it is not provided, the provider project is used.
|
180
180
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -291,7 +291,7 @@ class _DataSharingWithGoogleSettingBindingState:
|
|
291
291
|
def product(self) -> Optional[pulumi.Input[str]]:
|
292
292
|
"""
|
293
293
|
Product type of the setting binding.
|
294
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
294
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
295
295
|
"""
|
296
296
|
return pulumi.get(self, "product")
|
297
297
|
|
@@ -379,6 +379,12 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
379
379
|
target: Optional[pulumi.Input[str]] = None,
|
380
380
|
__props__=None):
|
381
381
|
"""
|
382
|
+
The resource for managing DataSharingWithGoogle setting bindings for Admin Control.
|
383
|
+
|
384
|
+
To get more information about DataSharingWithGoogleSettingBinding, see:
|
385
|
+
* How-to Guides
|
386
|
+
* [Gemini Cloud Assist overview](https://cloud.google.com/gemini/docs/cloud-assist/overview)
|
387
|
+
|
382
388
|
## Example Usage
|
383
389
|
|
384
390
|
### Gemini Data Sharing With Google Setting Binding Basic
|
@@ -433,7 +439,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
433
439
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
434
440
|
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
|
435
441
|
:param pulumi.Input[str] product: Product type of the setting binding.
|
436
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
442
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
437
443
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
438
444
|
If it is not provided, the provider project is used.
|
439
445
|
:param pulumi.Input[str] setting_binding_id: Required. Id of the setting binding.
|
@@ -449,6 +455,12 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
449
455
|
args: DataSharingWithGoogleSettingBindingArgs,
|
450
456
|
opts: Optional[pulumi.ResourceOptions] = None):
|
451
457
|
"""
|
458
|
+
The resource for managing DataSharingWithGoogle setting bindings for Admin Control.
|
459
|
+
|
460
|
+
To get more information about DataSharingWithGoogleSettingBinding, see:
|
461
|
+
* How-to Guides
|
462
|
+
* [Gemini Cloud Assist overview](https://cloud.google.com/gemini/docs/cloud-assist/overview)
|
463
|
+
|
452
464
|
## Example Usage
|
453
465
|
|
454
466
|
### Gemini Data Sharing With Google Setting Binding Basic
|
@@ -585,7 +597,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
585
597
|
:param pulumi.Input[str] name: Identifier. Name of the resource.
|
586
598
|
Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{setting}/settingBindings/{setting_binding}
|
587
599
|
:param pulumi.Input[str] product: Product type of the setting binding.
|
588
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
600
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
589
601
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
590
602
|
If it is not provided, the provider project is used.
|
591
603
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -668,10 +680,10 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
668
680
|
|
669
681
|
@property
|
670
682
|
@pulumi.getter
|
671
|
-
def product(self) -> pulumi.Output[
|
683
|
+
def product(self) -> pulumi.Output[str]:
|
672
684
|
"""
|
673
685
|
Product type of the setting binding.
|
674
|
-
Possible values are: `GEMINI_CLOUD_ASSIST
|
686
|
+
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
675
687
|
"""
|
676
688
|
return pulumi.get(self, "product")
|
677
689
|
|
@@ -323,6 +323,9 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
323
323
|
example = gcp.gemini.GeminiGcpEnablementSetting("example",
|
324
324
|
gemini_gcp_enablement_setting_id="ls1-tf",
|
325
325
|
location="global",
|
326
|
+
labels={
|
327
|
+
"my_key": "my_value",
|
328
|
+
},
|
326
329
|
enable_customer_data_sharing=True)
|
327
330
|
```
|
328
331
|
|
@@ -384,6 +387,9 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
384
387
|
example = gcp.gemini.GeminiGcpEnablementSetting("example",
|
385
388
|
gemini_gcp_enablement_setting_id="ls1-tf",
|
386
389
|
location="global",
|
390
|
+
labels={
|
391
|
+
"my_key": "my_value",
|
392
|
+
},
|
387
393
|
enable_customer_data_sharing=True)
|
388
394
|
```
|
389
395
|
|