pulumi-gcp 8.34.0a1749484438__py3-none-any.whl → 8.34.0a1749648575__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 +32 -0
- pulumi_gcp/alloydb/cluster.py +16 -64
- pulumi_gcp/apigee/_inputs.py +89 -0
- pulumi_gcp/apigee/environment.py +68 -2
- pulumi_gcp/apigee/outputs.py +88 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +184 -0
- pulumi_gcp/apihub/curation.py +812 -0
- pulumi_gcp/apihub/outputs.py +165 -0
- pulumi_gcp/beyondcorp/get_security_gateway.py +12 -1
- pulumi_gcp/beyondcorp/security_gateway.py +28 -0
- pulumi_gcp/cloudrunv2/_inputs.py +463 -0
- pulumi_gcp/cloudrunv2/outputs.py +581 -1
- pulumi_gcp/cloudrunv2/worker_pool.py +0 -8
- pulumi_gcp/colab/runtime_template.py +4 -26
- pulumi_gcp/compute/__init__.py +3 -0
- pulumi_gcp/compute/_inputs.py +1551 -0
- pulumi_gcp/compute/interconnect.py +32 -0
- pulumi_gcp/compute/interconnect_attachment.py +28 -0
- pulumi_gcp/compute/interconnect_attachment_group.py +636 -0
- pulumi_gcp/compute/interconnect_group.py +586 -0
- pulumi_gcp/compute/outputs.py +1087 -0
- pulumi_gcp/compute/snapshot_settings.py +285 -0
- pulumi_gcp/container/_inputs.py +51 -18
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +71 -16
- pulumi_gcp/dataplex/_inputs.py +20 -0
- pulumi_gcp/dataplex/datascan.py +2 -0
- pulumi_gcp/dataplex/outputs.py +15 -1
- pulumi_gcp/eventarc/_inputs.py +12 -5
- pulumi_gcp/eventarc/outputs.py +8 -3
- pulumi_gcp/eventarc/pipeline.py +0 -12
- pulumi_gcp/gemini/data_sharing_with_google_setting.py +58 -9
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +11 -16
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +51 -2
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +11 -16
- pulumi_gcp/gkehub/_inputs.py +84 -7
- pulumi_gcp/gkehub/feature.py +38 -0
- pulumi_gcp/gkehub/outputs.py +102 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +54 -2
- pulumi_gcp/gkeonprem/_inputs.py +54 -0
- pulumi_gcp/gkeonprem/outputs.py +49 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +71 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/backend_authentication_config.py +64 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +392 -0
- pulumi_gcp/pubsub/get_subscription.py +12 -1
- pulumi_gcp/pubsub/get_topic.py +12 -1
- pulumi_gcp/pubsub/outputs.py +548 -0
- pulumi_gcp/pubsub/subscription.py +67 -6
- pulumi_gcp/pubsub/topic.py +61 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.34.0a1749484438.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.34.0a1749484438.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/RECORD +65 -61
- {pulumi_gcp-8.34.0a1749484438.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.34.0a1749484438.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ __all__ = ['DataSharingWithGoogleSettingArgs', 'DataSharingWithGoogleSetting']
|
|
21
21
|
class DataSharingWithGoogleSettingArgs:
|
22
22
|
def __init__(__self__, *,
|
23
23
|
data_sharing_with_google_setting_id: pulumi.Input[builtins.str],
|
24
|
+
enable_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
24
25
|
enable_preview_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
25
26
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
26
27
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -31,7 +32,8 @@ class DataSharingWithGoogleSettingArgs:
|
|
31
32
|
|
32
33
|
|
33
34
|
- - -
|
34
|
-
:param pulumi.Input[builtins.bool]
|
35
|
+
:param pulumi.Input[builtins.bool] enable_data_sharing: Whether data sharing should be enabled in GA products.
|
36
|
+
:param pulumi.Input[builtins.bool] enable_preview_data_sharing: Whether data sharing should be enabled in Preview products.
|
35
37
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
|
36
38
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
37
39
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -40,6 +42,8 @@ class DataSharingWithGoogleSettingArgs:
|
|
40
42
|
If it is not provided, the provider project is used.
|
41
43
|
"""
|
42
44
|
pulumi.set(__self__, "data_sharing_with_google_setting_id", data_sharing_with_google_setting_id)
|
45
|
+
if enable_data_sharing is not None:
|
46
|
+
pulumi.set(__self__, "enable_data_sharing", enable_data_sharing)
|
43
47
|
if enable_preview_data_sharing is not None:
|
44
48
|
pulumi.set(__self__, "enable_preview_data_sharing", enable_preview_data_sharing)
|
45
49
|
if labels is not None:
|
@@ -64,11 +68,23 @@ class DataSharingWithGoogleSettingArgs:
|
|
64
68
|
def data_sharing_with_google_setting_id(self, value: pulumi.Input[builtins.str]):
|
65
69
|
pulumi.set(self, "data_sharing_with_google_setting_id", value)
|
66
70
|
|
71
|
+
@property
|
72
|
+
@pulumi.getter(name="enableDataSharing")
|
73
|
+
def enable_data_sharing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
74
|
+
"""
|
75
|
+
Whether data sharing should be enabled in GA products.
|
76
|
+
"""
|
77
|
+
return pulumi.get(self, "enable_data_sharing")
|
78
|
+
|
79
|
+
@enable_data_sharing.setter
|
80
|
+
def enable_data_sharing(self, value: Optional[pulumi.Input[builtins.bool]]):
|
81
|
+
pulumi.set(self, "enable_data_sharing", value)
|
82
|
+
|
67
83
|
@property
|
68
84
|
@pulumi.getter(name="enablePreviewDataSharing")
|
69
85
|
def enable_preview_data_sharing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
70
86
|
"""
|
71
|
-
Whether
|
87
|
+
Whether data sharing should be enabled in Preview products.
|
72
88
|
"""
|
73
89
|
return pulumi.get(self, "enable_preview_data_sharing")
|
74
90
|
|
@@ -122,6 +138,7 @@ class _DataSharingWithGoogleSettingState:
|
|
122
138
|
create_time: Optional[pulumi.Input[builtins.str]] = None,
|
123
139
|
data_sharing_with_google_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
124
140
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
141
|
+
enable_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
125
142
|
enable_preview_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
126
143
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
127
144
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -137,7 +154,8 @@ class _DataSharingWithGoogleSettingState:
|
|
137
154
|
|
138
155
|
- - -
|
139
156
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
140
|
-
:param pulumi.Input[builtins.bool]
|
157
|
+
:param pulumi.Input[builtins.bool] enable_data_sharing: Whether data sharing should be enabled in GA products.
|
158
|
+
:param pulumi.Input[builtins.bool] enable_preview_data_sharing: Whether data sharing should be enabled in Preview products.
|
141
159
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
|
142
160
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
143
161
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -156,6 +174,8 @@ class _DataSharingWithGoogleSettingState:
|
|
156
174
|
pulumi.set(__self__, "data_sharing_with_google_setting_id", data_sharing_with_google_setting_id)
|
157
175
|
if effective_labels is not None:
|
158
176
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
177
|
+
if enable_data_sharing is not None:
|
178
|
+
pulumi.set(__self__, "enable_data_sharing", enable_data_sharing)
|
159
179
|
if enable_preview_data_sharing is not None:
|
160
180
|
pulumi.set(__self__, "enable_preview_data_sharing", enable_preview_data_sharing)
|
161
181
|
if labels is not None:
|
@@ -210,11 +230,23 @@ class _DataSharingWithGoogleSettingState:
|
|
210
230
|
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
211
231
|
pulumi.set(self, "effective_labels", value)
|
212
232
|
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="enableDataSharing")
|
235
|
+
def enable_data_sharing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
236
|
+
"""
|
237
|
+
Whether data sharing should be enabled in GA products.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "enable_data_sharing")
|
240
|
+
|
241
|
+
@enable_data_sharing.setter
|
242
|
+
def enable_data_sharing(self, value: Optional[pulumi.Input[builtins.bool]]):
|
243
|
+
pulumi.set(self, "enable_data_sharing", value)
|
244
|
+
|
213
245
|
@property
|
214
246
|
@pulumi.getter(name="enablePreviewDataSharing")
|
215
247
|
def enable_preview_data_sharing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
216
248
|
"""
|
217
|
-
Whether
|
249
|
+
Whether data sharing should be enabled in Preview products.
|
218
250
|
"""
|
219
251
|
return pulumi.get(self, "enable_preview_data_sharing")
|
220
252
|
|
@@ -307,6 +339,7 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
307
339
|
resource_name: str,
|
308
340
|
opts: Optional[pulumi.ResourceOptions] = None,
|
309
341
|
data_sharing_with_google_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
342
|
+
enable_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
310
343
|
enable_preview_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
311
344
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
312
345
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -329,7 +362,8 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
329
362
|
labels={
|
330
363
|
"my_key": "my_value",
|
331
364
|
},
|
332
|
-
enable_preview_data_sharing=True
|
365
|
+
enable_preview_data_sharing=True,
|
366
|
+
enable_data_sharing=True)
|
333
367
|
```
|
334
368
|
|
335
369
|
## Import
|
@@ -362,7 +396,8 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
362
396
|
|
363
397
|
|
364
398
|
- - -
|
365
|
-
:param pulumi.Input[builtins.bool]
|
399
|
+
:param pulumi.Input[builtins.bool] enable_data_sharing: Whether data sharing should be enabled in GA products.
|
400
|
+
:param pulumi.Input[builtins.bool] enable_preview_data_sharing: Whether data sharing should be enabled in Preview products.
|
366
401
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
|
367
402
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
368
403
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -393,7 +428,8 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
393
428
|
labels={
|
394
429
|
"my_key": "my_value",
|
395
430
|
},
|
396
|
-
enable_preview_data_sharing=True
|
431
|
+
enable_preview_data_sharing=True,
|
432
|
+
enable_data_sharing=True)
|
397
433
|
```
|
398
434
|
|
399
435
|
## Import
|
@@ -436,6 +472,7 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
436
472
|
resource_name: str,
|
437
473
|
opts: Optional[pulumi.ResourceOptions] = None,
|
438
474
|
data_sharing_with_google_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
475
|
+
enable_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
439
476
|
enable_preview_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
440
477
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
441
478
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -452,6 +489,7 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
452
489
|
if data_sharing_with_google_setting_id is None and not opts.urn:
|
453
490
|
raise TypeError("Missing required property 'data_sharing_with_google_setting_id'")
|
454
491
|
__props__.__dict__["data_sharing_with_google_setting_id"] = data_sharing_with_google_setting_id
|
492
|
+
__props__.__dict__["enable_data_sharing"] = enable_data_sharing
|
455
493
|
__props__.__dict__["enable_preview_data_sharing"] = enable_preview_data_sharing
|
456
494
|
__props__.__dict__["labels"] = labels
|
457
495
|
__props__.__dict__["location"] = location
|
@@ -476,6 +514,7 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
476
514
|
create_time: Optional[pulumi.Input[builtins.str]] = None,
|
477
515
|
data_sharing_with_google_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
478
516
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
517
|
+
enable_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
479
518
|
enable_preview_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
480
519
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
481
520
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -496,7 +535,8 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
496
535
|
|
497
536
|
- - -
|
498
537
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
499
|
-
:param pulumi.Input[builtins.bool]
|
538
|
+
:param pulumi.Input[builtins.bool] enable_data_sharing: Whether data sharing should be enabled in GA products.
|
539
|
+
:param pulumi.Input[builtins.bool] enable_preview_data_sharing: Whether data sharing should be enabled in Preview products.
|
500
540
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
|
501
541
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
502
542
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -516,6 +556,7 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
516
556
|
__props__.__dict__["create_time"] = create_time
|
517
557
|
__props__.__dict__["data_sharing_with_google_setting_id"] = data_sharing_with_google_setting_id
|
518
558
|
__props__.__dict__["effective_labels"] = effective_labels
|
559
|
+
__props__.__dict__["enable_data_sharing"] = enable_data_sharing
|
519
560
|
__props__.__dict__["enable_preview_data_sharing"] = enable_preview_data_sharing
|
520
561
|
__props__.__dict__["labels"] = labels
|
521
562
|
__props__.__dict__["location"] = location
|
@@ -552,11 +593,19 @@ class DataSharingWithGoogleSetting(pulumi.CustomResource):
|
|
552
593
|
"""
|
553
594
|
return pulumi.get(self, "effective_labels")
|
554
595
|
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="enableDataSharing")
|
598
|
+
def enable_data_sharing(self) -> pulumi.Output[Optional[builtins.bool]]:
|
599
|
+
"""
|
600
|
+
Whether data sharing should be enabled in GA products.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "enable_data_sharing")
|
603
|
+
|
555
604
|
@property
|
556
605
|
@pulumi.getter(name="enablePreviewDataSharing")
|
557
606
|
def enable_preview_data_sharing(self) -> pulumi.Output[Optional[builtins.bool]]:
|
558
607
|
"""
|
559
|
-
Whether
|
608
|
+
Whether data sharing should be enabled in Preview products.
|
560
609
|
"""
|
561
610
|
return pulumi.get(self, "enable_preview_data_sharing")
|
562
611
|
|
@@ -39,8 +39,7 @@ class DataSharingWithGoogleSettingBindingArgs:
|
|
39
39
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
40
40
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
41
41
|
:param pulumi.Input[builtins.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.
|
42
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
43
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
42
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
44
43
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
45
44
|
If it is not provided, the provider project is used.
|
46
45
|
"""
|
@@ -125,8 +124,7 @@ class DataSharingWithGoogleSettingBindingArgs:
|
|
125
124
|
@pulumi.getter
|
126
125
|
def product(self) -> Optional[pulumi.Input[builtins.str]]:
|
127
126
|
"""
|
128
|
-
Product type of the setting binding.
|
129
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
127
|
+
Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
130
128
|
"""
|
131
129
|
return pulumi.get(self, "product")
|
132
130
|
|
@@ -174,8 +172,7 @@ class _DataSharingWithGoogleSettingBindingState:
|
|
174
172
|
:param pulumi.Input[builtins.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.
|
175
173
|
:param pulumi.Input[builtins.str] name: Identifier. Name of the resource.
|
176
174
|
Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{setting}/settingBindings/{setting_binding}
|
177
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
178
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
175
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
179
176
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
180
177
|
If it is not provided, the provider project is used.
|
181
178
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -291,8 +288,7 @@ class _DataSharingWithGoogleSettingBindingState:
|
|
291
288
|
@pulumi.getter
|
292
289
|
def product(self) -> Optional[pulumi.Input[builtins.str]]:
|
293
290
|
"""
|
294
|
-
Product type of the setting binding.
|
295
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
291
|
+
Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
296
292
|
"""
|
297
293
|
return pulumi.get(self, "product")
|
298
294
|
|
@@ -401,7 +397,8 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
401
397
|
labels={
|
402
398
|
"my_key": "my_value",
|
403
399
|
},
|
404
|
-
enable_preview_data_sharing=True
|
400
|
+
enable_preview_data_sharing=True,
|
401
|
+
enable_data_sharing=True)
|
405
402
|
example = gcp.gemini.DataSharingWithGoogleSettingBinding("example",
|
406
403
|
data_sharing_with_google_setting_id=basic.data_sharing_with_google_setting_id,
|
407
404
|
setting_binding_id="ls-tf1b1",
|
@@ -440,8 +437,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
440
437
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
441
438
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
442
439
|
:param pulumi.Input[builtins.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.
|
443
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
444
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
440
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
445
441
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
446
442
|
If it is not provided, the provider project is used.
|
447
443
|
:param pulumi.Input[builtins.str] setting_binding_id: Required. Id of the setting binding.
|
@@ -477,7 +473,8 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
477
473
|
labels={
|
478
474
|
"my_key": "my_value",
|
479
475
|
},
|
480
|
-
enable_preview_data_sharing=True
|
476
|
+
enable_preview_data_sharing=True,
|
477
|
+
enable_data_sharing=True)
|
481
478
|
example = gcp.gemini.DataSharingWithGoogleSettingBinding("example",
|
482
479
|
data_sharing_with_google_setting_id=basic.data_sharing_with_google_setting_id,
|
483
480
|
setting_binding_id="ls-tf1b1",
|
@@ -598,8 +595,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
598
595
|
:param pulumi.Input[builtins.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.
|
599
596
|
:param pulumi.Input[builtins.str] name: Identifier. Name of the resource.
|
600
597
|
Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{setting}/settingBindings/{setting_binding}
|
601
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
602
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
598
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
603
599
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
604
600
|
If it is not provided, the provider project is used.
|
605
601
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -684,8 +680,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
|
|
684
680
|
@pulumi.getter
|
685
681
|
def product(self) -> pulumi.Output[builtins.str]:
|
686
682
|
"""
|
687
|
-
Product type of the setting binding.
|
688
|
-
Possible values are: `GEMINI_CLOUD_ASSIST`.
|
683
|
+
Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
689
684
|
"""
|
690
685
|
return pulumi.get(self, "product")
|
691
686
|
|
@@ -22,6 +22,7 @@ class GeminiGcpEnablementSettingArgs:
|
|
22
22
|
def __init__(__self__, *,
|
23
23
|
gemini_gcp_enablement_setting_id: pulumi.Input[builtins.str],
|
24
24
|
location: pulumi.Input[builtins.str],
|
25
|
+
disable_web_grounding: Optional[pulumi.Input[builtins.bool]] = None,
|
25
26
|
enable_customer_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
26
27
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
27
28
|
project: Optional[pulumi.Input[builtins.str]] = None):
|
@@ -32,6 +33,7 @@ class GeminiGcpEnablementSettingArgs:
|
|
32
33
|
|
33
34
|
- - -
|
34
35
|
:param pulumi.Input[builtins.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.
|
36
|
+
:param pulumi.Input[builtins.bool] disable_web_grounding: Whether web grounding should be disabled.
|
35
37
|
:param pulumi.Input[builtins.bool] enable_customer_data_sharing: Whether customer data sharing should be enabled.
|
36
38
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
|
37
39
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -41,6 +43,8 @@ class GeminiGcpEnablementSettingArgs:
|
|
41
43
|
"""
|
42
44
|
pulumi.set(__self__, "gemini_gcp_enablement_setting_id", gemini_gcp_enablement_setting_id)
|
43
45
|
pulumi.set(__self__, "location", location)
|
46
|
+
if disable_web_grounding is not None:
|
47
|
+
pulumi.set(__self__, "disable_web_grounding", disable_web_grounding)
|
44
48
|
if enable_customer_data_sharing is not None:
|
45
49
|
pulumi.set(__self__, "enable_customer_data_sharing", enable_customer_data_sharing)
|
46
50
|
if labels is not None:
|
@@ -75,6 +79,18 @@ class GeminiGcpEnablementSettingArgs:
|
|
75
79
|
def location(self, value: pulumi.Input[builtins.str]):
|
76
80
|
pulumi.set(self, "location", value)
|
77
81
|
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="disableWebGrounding")
|
84
|
+
def disable_web_grounding(self) -> Optional[pulumi.Input[builtins.bool]]:
|
85
|
+
"""
|
86
|
+
Whether web grounding should be disabled.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "disable_web_grounding")
|
89
|
+
|
90
|
+
@disable_web_grounding.setter
|
91
|
+
def disable_web_grounding(self, value: Optional[pulumi.Input[builtins.bool]]):
|
92
|
+
pulumi.set(self, "disable_web_grounding", value)
|
93
|
+
|
78
94
|
@property
|
79
95
|
@pulumi.getter(name="enableCustomerDataSharing")
|
80
96
|
def enable_customer_data_sharing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -119,6 +135,7 @@ class GeminiGcpEnablementSettingArgs:
|
|
119
135
|
class _GeminiGcpEnablementSettingState:
|
120
136
|
def __init__(__self__, *,
|
121
137
|
create_time: Optional[pulumi.Input[builtins.str]] = None,
|
138
|
+
disable_web_grounding: Optional[pulumi.Input[builtins.bool]] = None,
|
122
139
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
123
140
|
enable_customer_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
124
141
|
gemini_gcp_enablement_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -131,6 +148,7 @@ class _GeminiGcpEnablementSettingState:
|
|
131
148
|
"""
|
132
149
|
Input properties used for looking up and filtering GeminiGcpEnablementSetting resources.
|
133
150
|
:param pulumi.Input[builtins.str] create_time: Create time stamp.
|
151
|
+
:param pulumi.Input[builtins.bool] disable_web_grounding: Whether web grounding should be disabled.
|
134
152
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
135
153
|
:param pulumi.Input[builtins.bool] enable_customer_data_sharing: Whether customer data sharing should be enabled.
|
136
154
|
:param pulumi.Input[builtins.str] gemini_gcp_enablement_setting_id: Id of the Gemini Gcp Enablement setting.
|
@@ -151,6 +169,8 @@ class _GeminiGcpEnablementSettingState:
|
|
151
169
|
"""
|
152
170
|
if create_time is not None:
|
153
171
|
pulumi.set(__self__, "create_time", create_time)
|
172
|
+
if disable_web_grounding is not None:
|
173
|
+
pulumi.set(__self__, "disable_web_grounding", disable_web_grounding)
|
154
174
|
if effective_labels is not None:
|
155
175
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
156
176
|
if enable_customer_data_sharing is not None:
|
@@ -182,6 +202,18 @@ class _GeminiGcpEnablementSettingState:
|
|
182
202
|
def create_time(self, value: Optional[pulumi.Input[builtins.str]]):
|
183
203
|
pulumi.set(self, "create_time", value)
|
184
204
|
|
205
|
+
@property
|
206
|
+
@pulumi.getter(name="disableWebGrounding")
|
207
|
+
def disable_web_grounding(self) -> Optional[pulumi.Input[builtins.bool]]:
|
208
|
+
"""
|
209
|
+
Whether web grounding should be disabled.
|
210
|
+
"""
|
211
|
+
return pulumi.get(self, "disable_web_grounding")
|
212
|
+
|
213
|
+
@disable_web_grounding.setter
|
214
|
+
def disable_web_grounding(self, value: Optional[pulumi.Input[builtins.bool]]):
|
215
|
+
pulumi.set(self, "disable_web_grounding", value)
|
216
|
+
|
185
217
|
@property
|
186
218
|
@pulumi.getter(name="effectiveLabels")
|
187
219
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
@@ -305,6 +337,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
305
337
|
def __init__(__self__,
|
306
338
|
resource_name: str,
|
307
339
|
opts: Optional[pulumi.ResourceOptions] = None,
|
340
|
+
disable_web_grounding: Optional[pulumi.Input[builtins.bool]] = None,
|
308
341
|
enable_customer_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
309
342
|
gemini_gcp_enablement_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
310
343
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
@@ -328,7 +361,8 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
328
361
|
labels={
|
329
362
|
"my_key": "my_value",
|
330
363
|
},
|
331
|
-
enable_customer_data_sharing=True
|
364
|
+
enable_customer_data_sharing=True,
|
365
|
+
disable_web_grounding=True)
|
332
366
|
```
|
333
367
|
|
334
368
|
## Import
|
@@ -357,6 +391,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
357
391
|
|
358
392
|
:param str resource_name: The name of the resource.
|
359
393
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
394
|
+
:param pulumi.Input[builtins.bool] disable_web_grounding: Whether web grounding should be disabled.
|
360
395
|
:param pulumi.Input[builtins.bool] enable_customer_data_sharing: Whether customer data sharing should be enabled.
|
361
396
|
:param pulumi.Input[builtins.str] gemini_gcp_enablement_setting_id: Id of the Gemini Gcp Enablement setting.
|
362
397
|
|
@@ -392,7 +427,8 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
392
427
|
labels={
|
393
428
|
"my_key": "my_value",
|
394
429
|
},
|
395
|
-
enable_customer_data_sharing=True
|
430
|
+
enable_customer_data_sharing=True,
|
431
|
+
disable_web_grounding=True)
|
396
432
|
```
|
397
433
|
|
398
434
|
## Import
|
@@ -434,6 +470,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
434
470
|
def _internal_init(__self__,
|
435
471
|
resource_name: str,
|
436
472
|
opts: Optional[pulumi.ResourceOptions] = None,
|
473
|
+
disable_web_grounding: Optional[pulumi.Input[builtins.bool]] = None,
|
437
474
|
enable_customer_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
438
475
|
gemini_gcp_enablement_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
439
476
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
@@ -448,6 +485,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
448
485
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
449
486
|
__props__ = GeminiGcpEnablementSettingArgs.__new__(GeminiGcpEnablementSettingArgs)
|
450
487
|
|
488
|
+
__props__.__dict__["disable_web_grounding"] = disable_web_grounding
|
451
489
|
__props__.__dict__["enable_customer_data_sharing"] = enable_customer_data_sharing
|
452
490
|
if gemini_gcp_enablement_setting_id is None and not opts.urn:
|
453
491
|
raise TypeError("Missing required property 'gemini_gcp_enablement_setting_id'")
|
@@ -475,6 +513,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
475
513
|
id: pulumi.Input[str],
|
476
514
|
opts: Optional[pulumi.ResourceOptions] = None,
|
477
515
|
create_time: Optional[pulumi.Input[builtins.str]] = None,
|
516
|
+
disable_web_grounding: Optional[pulumi.Input[builtins.bool]] = None,
|
478
517
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
479
518
|
enable_customer_data_sharing: Optional[pulumi.Input[builtins.bool]] = None,
|
480
519
|
gemini_gcp_enablement_setting_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -492,6 +531,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
492
531
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
493
532
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
494
533
|
:param pulumi.Input[builtins.str] create_time: Create time stamp.
|
534
|
+
:param pulumi.Input[builtins.bool] disable_web_grounding: Whether web grounding should be disabled.
|
495
535
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
496
536
|
:param pulumi.Input[builtins.bool] enable_customer_data_sharing: Whether customer data sharing should be enabled.
|
497
537
|
:param pulumi.Input[builtins.str] gemini_gcp_enablement_setting_id: Id of the Gemini Gcp Enablement setting.
|
@@ -515,6 +555,7 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
515
555
|
__props__ = _GeminiGcpEnablementSettingState.__new__(_GeminiGcpEnablementSettingState)
|
516
556
|
|
517
557
|
__props__.__dict__["create_time"] = create_time
|
558
|
+
__props__.__dict__["disable_web_grounding"] = disable_web_grounding
|
518
559
|
__props__.__dict__["effective_labels"] = effective_labels
|
519
560
|
__props__.__dict__["enable_customer_data_sharing"] = enable_customer_data_sharing
|
520
561
|
__props__.__dict__["gemini_gcp_enablement_setting_id"] = gemini_gcp_enablement_setting_id
|
@@ -534,6 +575,14 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
|
|
534
575
|
"""
|
535
576
|
return pulumi.get(self, "create_time")
|
536
577
|
|
578
|
+
@property
|
579
|
+
@pulumi.getter(name="disableWebGrounding")
|
580
|
+
def disable_web_grounding(self) -> pulumi.Output[Optional[builtins.bool]]:
|
581
|
+
"""
|
582
|
+
Whether web grounding should be disabled.
|
583
|
+
"""
|
584
|
+
return pulumi.get(self, "disable_web_grounding")
|
585
|
+
|
537
586
|
@property
|
538
587
|
@pulumi.getter(name="effectiveLabels")
|
539
588
|
def effective_labels(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
@@ -39,8 +39,7 @@ class GeminiGcpEnablementSettingBindingArgs:
|
|
39
39
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
40
40
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
41
41
|
:param pulumi.Input[builtins.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.
|
42
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
43
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
42
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
44
43
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
45
44
|
If it is not provided, the provider project is used.
|
46
45
|
"""
|
@@ -125,8 +124,7 @@ class GeminiGcpEnablementSettingBindingArgs:
|
|
125
124
|
@pulumi.getter
|
126
125
|
def product(self) -> Optional[pulumi.Input[builtins.str]]:
|
127
126
|
"""
|
128
|
-
Product type of the setting binding.
|
129
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
127
|
+
Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
130
128
|
"""
|
131
129
|
return pulumi.get(self, "product")
|
132
130
|
|
@@ -174,8 +172,7 @@ class _GeminiGcpEnablementSettingBindingState:
|
|
174
172
|
:param pulumi.Input[builtins.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.
|
175
173
|
:param pulumi.Input[builtins.str] name: Identifier. Name of the resource.
|
176
174
|
Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{setting}/settingBindings/{setting_binding}
|
177
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
178
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
175
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
179
176
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
180
177
|
If it is not provided, the provider project is used.
|
181
178
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -291,8 +288,7 @@ class _GeminiGcpEnablementSettingBindingState:
|
|
291
288
|
@pulumi.getter
|
292
289
|
def product(self) -> Optional[pulumi.Input[builtins.str]]:
|
293
290
|
"""
|
294
|
-
Product type of the setting binding.
|
295
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
291
|
+
Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
296
292
|
"""
|
297
293
|
return pulumi.get(self, "product")
|
298
294
|
|
@@ -401,7 +397,8 @@ class GeminiGcpEnablementSettingBinding(pulumi.CustomResource):
|
|
401
397
|
labels={
|
402
398
|
"my_key": "my_value",
|
403
399
|
},
|
404
|
-
enable_customer_data_sharing=True
|
400
|
+
enable_customer_data_sharing=True,
|
401
|
+
disable_web_grounding=True)
|
405
402
|
example = gcp.gemini.GeminiGcpEnablementSettingBinding("example",
|
406
403
|
gemini_gcp_enablement_setting_id=basic.gemini_gcp_enablement_setting_id,
|
407
404
|
setting_binding_id="ls-tf1b1",
|
@@ -440,8 +437,7 @@ class GeminiGcpEnablementSettingBinding(pulumi.CustomResource):
|
|
440
437
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
441
438
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
442
439
|
:param pulumi.Input[builtins.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.
|
443
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
444
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
440
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
445
441
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
446
442
|
If it is not provided, the provider project is used.
|
447
443
|
:param pulumi.Input[builtins.str] setting_binding_id: Id of the setting binding.
|
@@ -477,7 +473,8 @@ class GeminiGcpEnablementSettingBinding(pulumi.CustomResource):
|
|
477
473
|
labels={
|
478
474
|
"my_key": "my_value",
|
479
475
|
},
|
480
|
-
enable_customer_data_sharing=True
|
476
|
+
enable_customer_data_sharing=True,
|
477
|
+
disable_web_grounding=True)
|
481
478
|
example = gcp.gemini.GeminiGcpEnablementSettingBinding("example",
|
482
479
|
gemini_gcp_enablement_setting_id=basic.gemini_gcp_enablement_setting_id,
|
483
480
|
setting_binding_id="ls-tf1b1",
|
@@ -598,8 +595,7 @@ class GeminiGcpEnablementSettingBinding(pulumi.CustomResource):
|
|
598
595
|
:param pulumi.Input[builtins.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.
|
599
596
|
:param pulumi.Input[builtins.str] name: Identifier. Name of the resource.
|
600
597
|
Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{setting}/settingBindings/{setting_binding}
|
601
|
-
:param pulumi.Input[builtins.str] product: Product type of the setting binding.
|
602
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
598
|
+
:param pulumi.Input[builtins.str] product: Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
603
599
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
604
600
|
If it is not provided, the provider project is used.
|
605
601
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -684,8 +680,7 @@ class GeminiGcpEnablementSettingBinding(pulumi.CustomResource):
|
|
684
680
|
@pulumi.getter
|
685
681
|
def product(self) -> pulumi.Output[builtins.str]:
|
686
682
|
"""
|
687
|
-
Product type of the setting binding.
|
688
|
-
Possible values are: `GEMINI_IN_BIGQUERY`.
|
683
|
+
Product type of the setting binding. Values include GEMINI_IN_BIGQUERY, GEMINI_CLOUD_ASSIST, etc. See [product reference](https://cloud.google.com/gemini/docs/api/reference/rest/v1/projects.locations.dataSharingWithGoogleSettings.settingBindings) for a complete list.
|
689
684
|
"""
|
690
685
|
return pulumi.get(self, "product")
|
691
686
|
|