pulumi-gcp 8.9.0a1731221331__py3-none-any.whl → 8.9.0a1731432418__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 (114) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/activedirectory/domain.py +24 -0
  3. pulumi_gcp/apigee/__init__.py +1 -0
  4. pulumi_gcp/apigee/_inputs.py +74 -0
  5. pulumi_gcp/apigee/api.py +456 -0
  6. pulumi_gcp/apigee/outputs.py +65 -0
  7. pulumi_gcp/applicationintegration/auth_config.py +24 -0
  8. pulumi_gcp/backupdisasterrecovery/__init__.py +4 -0
  9. pulumi_gcp/backupdisasterrecovery/_inputs.py +533 -0
  10. pulumi_gcp/backupdisasterrecovery/backup_plan.py +653 -0
  11. pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +766 -0
  12. pulumi_gcp/backupdisasterrecovery/backup_vault.py +146 -6
  13. pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +204 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +243 -0
  15. pulumi_gcp/backupdisasterrecovery/outputs.py +702 -0
  16. pulumi_gcp/bigquery/data_transfer_config.py +24 -0
  17. pulumi_gcp/cloudrunv2/_inputs.py +46 -0
  18. pulumi_gcp/cloudrunv2/job.py +0 -2
  19. pulumi_gcp/cloudrunv2/outputs.py +60 -2
  20. pulumi_gcp/cloudrunv2/service.py +0 -2
  21. pulumi_gcp/compute/__init__.py +1 -0
  22. pulumi_gcp/compute/_inputs.py +2163 -256
  23. pulumi_gcp/compute/disk.py +7 -7
  24. pulumi_gcp/compute/firewall_policy_rule.py +108 -54
  25. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  26. pulumi_gcp/compute/health_check.py +42 -42
  27. pulumi_gcp/compute/network_firewall_policy_rule.py +4 -4
  28. pulumi_gcp/compute/network_firewall_policy_with_rules.py +10 -10
  29. pulumi_gcp/compute/node_template.py +95 -0
  30. pulumi_gcp/compute/outputs.py +1639 -213
  31. pulumi_gcp/compute/region_disk.py +7 -7
  32. pulumi_gcp/compute/region_health_check.py +42 -42
  33. pulumi_gcp/compute/region_instance_group_manager.py +54 -14
  34. pulumi_gcp/compute/region_network_firewall_policy_rule.py +4 -4
  35. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +10 -10
  36. pulumi_gcp/compute/region_resize_request.py +772 -0
  37. pulumi_gcp/compute/region_security_policy.py +120 -0
  38. pulumi_gcp/compute/region_security_policy_rule.py +6 -6
  39. pulumi_gcp/compute/router_peer.py +56 -35
  40. pulumi_gcp/compute/security_scan_config.py +8 -8
  41. pulumi_gcp/config/__init__.pyi +4 -0
  42. pulumi_gcp/config/vars.py +8 -0
  43. pulumi_gcp/container/_inputs.py +345 -10
  44. pulumi_gcp/container/cluster.py +101 -0
  45. pulumi_gcp/container/get_cluster.py +23 -1
  46. pulumi_gcp/container/outputs.py +456 -8
  47. pulumi_gcp/dataloss/prevention_discovery_config.py +7 -7
  48. pulumi_gcp/dataproc/__init__.py +2 -0
  49. pulumi_gcp/dataproc/_inputs.py +101 -0
  50. pulumi_gcp/dataproc/gdc_application_environment.py +931 -0
  51. pulumi_gcp/dataproc/gdc_service_instance.py +1022 -0
  52. pulumi_gcp/dataproc/outputs.py +94 -0
  53. pulumi_gcp/edgecontainer/vpn_connection.py +4 -4
  54. pulumi_gcp/firebase/android_app.py +2 -2
  55. pulumi_gcp/firebase/apple_app.py +2 -2
  56. pulumi_gcp/firebase/web_app.py +2 -2
  57. pulumi_gcp/firestore/index.py +44 -0
  58. pulumi_gcp/gkeonprem/_inputs.py +15 -15
  59. pulumi_gcp/gkeonprem/outputs.py +10 -10
  60. pulumi_gcp/healthcare/dataset.py +7 -7
  61. pulumi_gcp/healthcare/dicom_store.py +7 -7
  62. pulumi_gcp/healthcare/fhir_store.py +7 -7
  63. pulumi_gcp/healthcare/hl7_store.py +14 -14
  64. pulumi_gcp/iam/__init__.py +1 -0
  65. pulumi_gcp/iam/_inputs.py +161 -0
  66. pulumi_gcp/iam/outputs.py +114 -0
  67. pulumi_gcp/iam/principal_access_boundary_policy.py +679 -0
  68. pulumi_gcp/logging/metric.py +2 -2
  69. pulumi_gcp/looker/_inputs.py +6 -0
  70. pulumi_gcp/looker/instance.py +169 -321
  71. pulumi_gcp/looker/outputs.py +4 -0
  72. pulumi_gcp/memorystore/instance.py +4 -0
  73. pulumi_gcp/monitoring/alert_policy.py +24 -0
  74. pulumi_gcp/monitoring/custom_service.py +24 -0
  75. pulumi_gcp/monitoring/group.py +24 -0
  76. pulumi_gcp/monitoring/metric_descriptor.py +24 -0
  77. pulumi_gcp/monitoring/slo.py +24 -0
  78. pulumi_gcp/monitoring/uptime_check_config.py +24 -0
  79. pulumi_gcp/networkmanagement/__init__.py +1 -0
  80. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +1358 -0
  81. pulumi_gcp/osconfig/patch_deployment.py +8 -8
  82. pulumi_gcp/provider.py +40 -0
  83. pulumi_gcp/pulumi-plugin.json +1 -1
  84. pulumi_gcp/redis/_inputs.py +3 -3
  85. pulumi_gcp/redis/outputs.py +2 -2
  86. pulumi_gcp/securitycenter/notification_config.py +4 -16
  87. pulumi_gcp/securitycenter/project_notification_config.py +0 -24
  88. pulumi_gcp/securitycenter/v2_organization_notification_config.py +4 -16
  89. pulumi_gcp/spanner/__init__.py +1 -0
  90. pulumi_gcp/spanner/_inputs.py +9 -9
  91. pulumi_gcp/spanner/get_database.py +229 -0
  92. pulumi_gcp/spanner/get_instance.py +12 -1
  93. pulumi_gcp/spanner/instance.py +70 -0
  94. pulumi_gcp/spanner/outputs.py +46 -12
  95. pulumi_gcp/sql/_inputs.py +26 -0
  96. pulumi_gcp/sql/database_instance.py +124 -11
  97. pulumi_gcp/sql/get_database_instance.py +12 -1
  98. pulumi_gcp/sql/outputs.py +51 -0
  99. pulumi_gcp/storage/_inputs.py +3 -3
  100. pulumi_gcp/storage/outputs.py +2 -2
  101. pulumi_gcp/tags/tag_binding.py +4 -4
  102. pulumi_gcp/tags/tag_value.py +2 -2
  103. pulumi_gcp/transcoder/job.py +24 -0
  104. pulumi_gcp/vertex/_inputs.py +184 -0
  105. pulumi_gcp/vertex/ai_endpoint.py +394 -8
  106. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  107. pulumi_gcp/vertex/outputs.py +166 -0
  108. pulumi_gcp/workbench/instance.py +21 -7
  109. pulumi_gcp/workflows/workflow.py +36 -0
  110. pulumi_gcp/workstations/workstation_config.py +8 -8
  111. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/METADATA +1 -1
  112. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/RECORD +114 -103
  113. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/WHEEL +1 -1
  114. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/top_level.txt +0 -0
@@ -157,12 +157,12 @@ class TagBinding(pulumi.CustomResource):
157
157
  short_name="keyname",
158
158
  description="For keyname resources.")
159
159
  value = gcp.tags.TagValue("value",
160
- parent=key.name.apply(lambda name: f"tagKeys/{name}"),
160
+ parent=key.id,
161
161
  short_name="valuename",
162
162
  description="For valuename resources.")
163
163
  binding = gcp.tags.TagBinding("binding",
164
164
  parent=project.number.apply(lambda number: f"//cloudresourcemanager.googleapis.com/projects/{number}"),
165
- tag_value=value.name.apply(lambda name: f"tagValues/{name}"))
165
+ tag_value=value.id)
166
166
  ```
167
167
 
168
168
  ## Import
@@ -224,12 +224,12 @@ class TagBinding(pulumi.CustomResource):
224
224
  short_name="keyname",
225
225
  description="For keyname resources.")
226
226
  value = gcp.tags.TagValue("value",
227
- parent=key.name.apply(lambda name: f"tagKeys/{name}"),
227
+ parent=key.id,
228
228
  short_name="valuename",
229
229
  description="For valuename resources.")
230
230
  binding = gcp.tags.TagBinding("binding",
231
231
  parent=project.number.apply(lambda number: f"//cloudresourcemanager.googleapis.com/projects/{number}"),
232
- tag_value=value.name.apply(lambda name: f"tagValues/{name}"))
232
+ tag_value=value.id)
233
233
  ```
234
234
 
235
235
  ## Import
@@ -241,7 +241,7 @@ class TagValue(pulumi.CustomResource):
241
241
  short_name="keyname",
242
242
  description="For keyname resources.")
243
243
  value = gcp.tags.TagValue("value",
244
- parent=key.name.apply(lambda name: f"tagKeys/{name}"),
244
+ parent=key.id,
245
245
  short_name="valuename",
246
246
  description="For valuename resources.")
247
247
  ```
@@ -302,7 +302,7 @@ class TagValue(pulumi.CustomResource):
302
302
  short_name="keyname",
303
303
  description="For keyname resources.")
304
304
  value = gcp.tags.TagValue("value",
305
- parent=key.name.apply(lambda name: f"tagKeys/{name}"),
305
+ parent=key.id,
306
306
  short_name="valuename",
307
307
  description="For valuename resources.")
308
308
  ```
@@ -1113,10 +1113,22 @@ class Job(pulumi.CustomResource):
1113
1113
 
1114
1114
  Job can be imported using any of these accepted formats:
1115
1115
 
1116
+ * `{{project}}/{{name}}`
1117
+
1118
+ * `{{project}} {{name}}`
1119
+
1116
1120
  * `{{name}}`
1117
1121
 
1118
1122
  When using the `pulumi import` command, Job can be imported using one of the formats above. For example:
1119
1123
 
1124
+ ```sh
1125
+ $ pulumi import gcp:transcoder/job:Job default {{project}}/{{name}}
1126
+ ```
1127
+
1128
+ ```sh
1129
+ $ pulumi import gcp:transcoder/job:Job default "{{project}} {{name}}"
1130
+ ```
1131
+
1120
1132
  ```sh
1121
1133
  $ pulumi import gcp:transcoder/job:Job default {{name}}
1122
1134
  ```
@@ -1903,10 +1915,22 @@ class Job(pulumi.CustomResource):
1903
1915
 
1904
1916
  Job can be imported using any of these accepted formats:
1905
1917
 
1918
+ * `{{project}}/{{name}}`
1919
+
1920
+ * `{{project}} {{name}}`
1921
+
1906
1922
  * `{{name}}`
1907
1923
 
1908
1924
  When using the `pulumi import` command, Job can be imported using one of the formats above. For example:
1909
1925
 
1926
+ ```sh
1927
+ $ pulumi import gcp:transcoder/job:Job default {{project}}/{{name}}
1928
+ ```
1929
+
1930
+ ```sh
1931
+ $ pulumi import gcp:transcoder/job:Job default "{{project}} {{name}}"
1932
+ ```
1933
+
1910
1934
  ```sh
1911
1935
  $ pulumi import gcp:transcoder/job:Job default {{name}}
1912
1936
  ```
@@ -41,6 +41,12 @@ __all__ = [
41
41
  'AiEndpointIamBindingConditionArgsDict',
42
42
  'AiEndpointIamMemberConditionArgs',
43
43
  'AiEndpointIamMemberConditionArgsDict',
44
+ 'AiEndpointPredictRequestResponseLoggingConfigArgs',
45
+ 'AiEndpointPredictRequestResponseLoggingConfigArgsDict',
46
+ 'AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgs',
47
+ 'AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgsDict',
48
+ 'AiEndpointPrivateServiceConnectConfigArgs',
49
+ 'AiEndpointPrivateServiceConnectConfigArgsDict',
44
50
  'AiFeatureGroupBigQueryArgs',
45
51
  'AiFeatureGroupBigQueryArgsDict',
46
52
  'AiFeatureGroupBigQueryBigQuerySourceArgs',
@@ -1219,6 +1225,184 @@ class AiEndpointIamMemberConditionArgs:
1219
1225
  pulumi.set(self, "description", value)
1220
1226
 
1221
1227
 
1228
+ if not MYPY:
1229
+ class AiEndpointPredictRequestResponseLoggingConfigArgsDict(TypedDict):
1230
+ bigquery_destination: NotRequired[pulumi.Input['AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgsDict']]
1231
+ """
1232
+ BigQuery table for logging. If only given a project, a new dataset will be created with name `logging_<endpoint-display-name>_<endpoint-id>` where will be made BigQuery-dataset-name compatible (e.g. most special characters will become underscores). If no table name is given, a new table will be created with name `request_response_logging`
1233
+ Structure is documented below.
1234
+ """
1235
+ enabled: NotRequired[pulumi.Input[bool]]
1236
+ """
1237
+ If logging is enabled or not.
1238
+ """
1239
+ sampling_rate: NotRequired[pulumi.Input[float]]
1240
+ """
1241
+ Percentage of requests to be logged, expressed as a fraction in range(0,1]
1242
+ """
1243
+ elif False:
1244
+ AiEndpointPredictRequestResponseLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
1245
+
1246
+ @pulumi.input_type
1247
+ class AiEndpointPredictRequestResponseLoggingConfigArgs:
1248
+ def __init__(__self__, *,
1249
+ bigquery_destination: Optional[pulumi.Input['AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgs']] = None,
1250
+ enabled: Optional[pulumi.Input[bool]] = None,
1251
+ sampling_rate: Optional[pulumi.Input[float]] = None):
1252
+ """
1253
+ :param pulumi.Input['AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgs'] bigquery_destination: BigQuery table for logging. If only given a project, a new dataset will be created with name `logging_<endpoint-display-name>_<endpoint-id>` where will be made BigQuery-dataset-name compatible (e.g. most special characters will become underscores). If no table name is given, a new table will be created with name `request_response_logging`
1254
+ Structure is documented below.
1255
+ :param pulumi.Input[bool] enabled: If logging is enabled or not.
1256
+ :param pulumi.Input[float] sampling_rate: Percentage of requests to be logged, expressed as a fraction in range(0,1]
1257
+ """
1258
+ if bigquery_destination is not None:
1259
+ pulumi.set(__self__, "bigquery_destination", bigquery_destination)
1260
+ if enabled is not None:
1261
+ pulumi.set(__self__, "enabled", enabled)
1262
+ if sampling_rate is not None:
1263
+ pulumi.set(__self__, "sampling_rate", sampling_rate)
1264
+
1265
+ @property
1266
+ @pulumi.getter(name="bigqueryDestination")
1267
+ def bigquery_destination(self) -> Optional[pulumi.Input['AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgs']]:
1268
+ """
1269
+ BigQuery table for logging. If only given a project, a new dataset will be created with name `logging_<endpoint-display-name>_<endpoint-id>` where will be made BigQuery-dataset-name compatible (e.g. most special characters will become underscores). If no table name is given, a new table will be created with name `request_response_logging`
1270
+ Structure is documented below.
1271
+ """
1272
+ return pulumi.get(self, "bigquery_destination")
1273
+
1274
+ @bigquery_destination.setter
1275
+ def bigquery_destination(self, value: Optional[pulumi.Input['AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgs']]):
1276
+ pulumi.set(self, "bigquery_destination", value)
1277
+
1278
+ @property
1279
+ @pulumi.getter
1280
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
1281
+ """
1282
+ If logging is enabled or not.
1283
+ """
1284
+ return pulumi.get(self, "enabled")
1285
+
1286
+ @enabled.setter
1287
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
1288
+ pulumi.set(self, "enabled", value)
1289
+
1290
+ @property
1291
+ @pulumi.getter(name="samplingRate")
1292
+ def sampling_rate(self) -> Optional[pulumi.Input[float]]:
1293
+ """
1294
+ Percentage of requests to be logged, expressed as a fraction in range(0,1]
1295
+ """
1296
+ return pulumi.get(self, "sampling_rate")
1297
+
1298
+ @sampling_rate.setter
1299
+ def sampling_rate(self, value: Optional[pulumi.Input[float]]):
1300
+ pulumi.set(self, "sampling_rate", value)
1301
+
1302
+
1303
+ if not MYPY:
1304
+ class AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgsDict(TypedDict):
1305
+ output_uri: NotRequired[pulumi.Input[str]]
1306
+ """
1307
+ BigQuery URI to a project or table, up to 2000 characters long. When only the project is specified, the Dataset and Table is created. When the full table reference is specified, the Dataset must exist and table must not exist. Accepted forms: - BigQuery path. For example: `bq://projectId` or `bq://projectId.bqDatasetId` or `bq://projectId.bqDatasetId.bqTableId`.
1308
+ """
1309
+ elif False:
1310
+ AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgsDict: TypeAlias = Mapping[str, Any]
1311
+
1312
+ @pulumi.input_type
1313
+ class AiEndpointPredictRequestResponseLoggingConfigBigqueryDestinationArgs:
1314
+ def __init__(__self__, *,
1315
+ output_uri: Optional[pulumi.Input[str]] = None):
1316
+ """
1317
+ :param pulumi.Input[str] output_uri: BigQuery URI to a project or table, up to 2000 characters long. When only the project is specified, the Dataset and Table is created. When the full table reference is specified, the Dataset must exist and table must not exist. Accepted forms: - BigQuery path. For example: `bq://projectId` or `bq://projectId.bqDatasetId` or `bq://projectId.bqDatasetId.bqTableId`.
1318
+ """
1319
+ if output_uri is not None:
1320
+ pulumi.set(__self__, "output_uri", output_uri)
1321
+
1322
+ @property
1323
+ @pulumi.getter(name="outputUri")
1324
+ def output_uri(self) -> Optional[pulumi.Input[str]]:
1325
+ """
1326
+ BigQuery URI to a project or table, up to 2000 characters long. When only the project is specified, the Dataset and Table is created. When the full table reference is specified, the Dataset must exist and table must not exist. Accepted forms: - BigQuery path. For example: `bq://projectId` or `bq://projectId.bqDatasetId` or `bq://projectId.bqDatasetId.bqTableId`.
1327
+ """
1328
+ return pulumi.get(self, "output_uri")
1329
+
1330
+ @output_uri.setter
1331
+ def output_uri(self, value: Optional[pulumi.Input[str]]):
1332
+ pulumi.set(self, "output_uri", value)
1333
+
1334
+
1335
+ if not MYPY:
1336
+ class AiEndpointPrivateServiceConnectConfigArgsDict(TypedDict):
1337
+ enable_private_service_connect: pulumi.Input[bool]
1338
+ """
1339
+ Required. If true, expose the IndexEndpoint via private service connect.
1340
+ """
1341
+ enable_secure_private_service_connect: NotRequired[pulumi.Input[bool]]
1342
+ """
1343
+ If set to true, enable secure private service connect with IAM authorization. Otherwise, private service connect will be done without authorization. Note latency will be slightly increased if authorization is enabled.
1344
+ """
1345
+ project_allowlists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1346
+ """
1347
+ A list of Projects from which the forwarding rule will target the service attachment.
1348
+ """
1349
+ elif False:
1350
+ AiEndpointPrivateServiceConnectConfigArgsDict: TypeAlias = Mapping[str, Any]
1351
+
1352
+ @pulumi.input_type
1353
+ class AiEndpointPrivateServiceConnectConfigArgs:
1354
+ def __init__(__self__, *,
1355
+ enable_private_service_connect: pulumi.Input[bool],
1356
+ enable_secure_private_service_connect: Optional[pulumi.Input[bool]] = None,
1357
+ project_allowlists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1358
+ """
1359
+ :param pulumi.Input[bool] enable_private_service_connect: Required. If true, expose the IndexEndpoint via private service connect.
1360
+ :param pulumi.Input[bool] enable_secure_private_service_connect: If set to true, enable secure private service connect with IAM authorization. Otherwise, private service connect will be done without authorization. Note latency will be slightly increased if authorization is enabled.
1361
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] project_allowlists: A list of Projects from which the forwarding rule will target the service attachment.
1362
+ """
1363
+ pulumi.set(__self__, "enable_private_service_connect", enable_private_service_connect)
1364
+ if enable_secure_private_service_connect is not None:
1365
+ pulumi.set(__self__, "enable_secure_private_service_connect", enable_secure_private_service_connect)
1366
+ if project_allowlists is not None:
1367
+ pulumi.set(__self__, "project_allowlists", project_allowlists)
1368
+
1369
+ @property
1370
+ @pulumi.getter(name="enablePrivateServiceConnect")
1371
+ def enable_private_service_connect(self) -> pulumi.Input[bool]:
1372
+ """
1373
+ Required. If true, expose the IndexEndpoint via private service connect.
1374
+ """
1375
+ return pulumi.get(self, "enable_private_service_connect")
1376
+
1377
+ @enable_private_service_connect.setter
1378
+ def enable_private_service_connect(self, value: pulumi.Input[bool]):
1379
+ pulumi.set(self, "enable_private_service_connect", value)
1380
+
1381
+ @property
1382
+ @pulumi.getter(name="enableSecurePrivateServiceConnect")
1383
+ def enable_secure_private_service_connect(self) -> Optional[pulumi.Input[bool]]:
1384
+ """
1385
+ If set to true, enable secure private service connect with IAM authorization. Otherwise, private service connect will be done without authorization. Note latency will be slightly increased if authorization is enabled.
1386
+ """
1387
+ return pulumi.get(self, "enable_secure_private_service_connect")
1388
+
1389
+ @enable_secure_private_service_connect.setter
1390
+ def enable_secure_private_service_connect(self, value: Optional[pulumi.Input[bool]]):
1391
+ pulumi.set(self, "enable_secure_private_service_connect", value)
1392
+
1393
+ @property
1394
+ @pulumi.getter(name="projectAllowlists")
1395
+ def project_allowlists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1396
+ """
1397
+ A list of Projects from which the forwarding rule will target the service attachment.
1398
+ """
1399
+ return pulumi.get(self, "project_allowlists")
1400
+
1401
+ @project_allowlists.setter
1402
+ def project_allowlists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1403
+ pulumi.set(self, "project_allowlists", value)
1404
+
1405
+
1222
1406
  if not MYPY:
1223
1407
  class AiFeatureGroupBigQueryArgsDict(TypedDict):
1224
1408
  big_query_source: pulumi.Input['AiFeatureGroupBigQueryBigQuerySourceArgsDict']