pulumi-gcp 8.5.0__py3-none-any.whl → 8.5.0a1727969630__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 (52) hide show
  1. pulumi_gcp/__init__.py +0 -24
  2. pulumi_gcp/assuredworkloads/workload.py +7 -7
  3. pulumi_gcp/bigtable/gc_policy.py +0 -7
  4. pulumi_gcp/compute/_inputs.py +15 -299
  5. pulumi_gcp/compute/backend_service.py +7 -111
  6. pulumi_gcp/compute/get_backend_service.py +1 -11
  7. pulumi_gcp/compute/network.py +0 -236
  8. pulumi_gcp/compute/outputs.py +14 -399
  9. pulumi_gcp/compute/region_backend_service.py +7 -115
  10. pulumi_gcp/compute/route.py +0 -92
  11. pulumi_gcp/compute/subnetwork.py +2 -2
  12. pulumi_gcp/container/_inputs.py +0 -94
  13. pulumi_gcp/container/aws_node_pool.py +0 -59
  14. pulumi_gcp/container/outputs.py +0 -79
  15. pulumi_gcp/dataproc/__init__.py +0 -1
  16. pulumi_gcp/dataproc/_inputs.py +0 -1394
  17. pulumi_gcp/dataproc/outputs.py +0 -1127
  18. pulumi_gcp/firestore/field.py +4 -4
  19. pulumi_gcp/gkehub/membership_binding.py +6 -6
  20. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  21. pulumi_gcp/gkehub/namespace.py +4 -4
  22. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  23. pulumi_gcp/healthcare/__init__.py +0 -1
  24. pulumi_gcp/healthcare/_inputs.py +0 -538
  25. pulumi_gcp/healthcare/outputs.py +0 -467
  26. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  27. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  28. pulumi_gcp/logging/log_scope.py +7 -7
  29. pulumi_gcp/networkconnectivity/spoke.py +10 -10
  30. pulumi_gcp/orgpolicy/policy.py +2 -2
  31. pulumi_gcp/pubsub/_inputs.py +1 -333
  32. pulumi_gcp/pubsub/outputs.py +2 -410
  33. pulumi_gcp/pubsub/subscription.py +6 -6
  34. pulumi_gcp/pubsub/topic.py +0 -44
  35. pulumi_gcp/pulumi-plugin.json +1 -1
  36. pulumi_gcp/securesourcemanager/repository.py +2 -0
  37. pulumi_gcp/securityposture/posture.py +2 -0
  38. pulumi_gcp/securityposture/posture_deployment.py +2 -0
  39. pulumi_gcp/serviceusage/consumer_quota_override.py +2 -0
  40. pulumi_gcp/siteverification/__init__.py +0 -1
  41. pulumi_gcp/sourcerepo/get_repository.py +1 -11
  42. pulumi_gcp/sourcerepo/repository.py +0 -47
  43. pulumi_gcp/tags/tag_key.py +7 -7
  44. pulumi_gcp/tags/tag_value.py +7 -7
  45. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  46. {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/METADATA +1 -1
  47. {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/RECORD +49 -52
  48. pulumi_gcp/dataproc/batch.py +0 -1514
  49. pulumi_gcp/healthcare/pipeline_job.py +0 -1233
  50. pulumi_gcp/siteverification/owner.py +0 -398
  51. {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/WHEEL +0 -0
  52. {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/top_level.txt +0 -0
@@ -38,14 +38,6 @@ __all__ = [
38
38
  'Hl7StoreNotificationConfig',
39
39
  'Hl7StoreNotificationConfigs',
40
40
  'Hl7StoreParserConfig',
41
- 'PipelineJobBackfillPipelineJob',
42
- 'PipelineJobMappingPipelineJob',
43
- 'PipelineJobMappingPipelineJobFhirStreamingSource',
44
- 'PipelineJobMappingPipelineJobMappingConfig',
45
- 'PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource',
46
- 'PipelineJobReconciliationPipelineJob',
47
- 'PipelineJobReconciliationPipelineJobMergeConfig',
48
- 'PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource',
49
41
  'WorkspaceSettings',
50
42
  ]
51
43
 
@@ -1028,465 +1020,6 @@ class Hl7StoreParserConfig(dict):
1028
1020
  return pulumi.get(self, "version")
1029
1021
 
1030
1022
 
1031
- @pulumi.output_type
1032
- class PipelineJobBackfillPipelineJob(dict):
1033
- @staticmethod
1034
- def __key_warning(key: str):
1035
- suggest = None
1036
- if key == "mappingPipelineJob":
1037
- suggest = "mapping_pipeline_job"
1038
-
1039
- if suggest:
1040
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobBackfillPipelineJob. Access the value via the '{suggest}' property getter instead.")
1041
-
1042
- def __getitem__(self, key: str) -> Any:
1043
- PipelineJobBackfillPipelineJob.__key_warning(key)
1044
- return super().__getitem__(key)
1045
-
1046
- def get(self, key: str, default = None) -> Any:
1047
- PipelineJobBackfillPipelineJob.__key_warning(key)
1048
- return super().get(key, default)
1049
-
1050
- def __init__(__self__, *,
1051
- mapping_pipeline_job: Optional[str] = None):
1052
- """
1053
- :param str mapping_pipeline_job: Specifies the mapping pipeline job to backfill, the name format
1054
- should follow: projects/{projectId}/locations/{locationId}/datasets/{datasetId}/pipelineJobs/{pipelineJobId}.
1055
- """
1056
- if mapping_pipeline_job is not None:
1057
- pulumi.set(__self__, "mapping_pipeline_job", mapping_pipeline_job)
1058
-
1059
- @property
1060
- @pulumi.getter(name="mappingPipelineJob")
1061
- def mapping_pipeline_job(self) -> Optional[str]:
1062
- """
1063
- Specifies the mapping pipeline job to backfill, the name format
1064
- should follow: projects/{projectId}/locations/{locationId}/datasets/{datasetId}/pipelineJobs/{pipelineJobId}.
1065
- """
1066
- return pulumi.get(self, "mapping_pipeline_job")
1067
-
1068
-
1069
- @pulumi.output_type
1070
- class PipelineJobMappingPipelineJob(dict):
1071
- @staticmethod
1072
- def __key_warning(key: str):
1073
- suggest = None
1074
- if key == "mappingConfig":
1075
- suggest = "mapping_config"
1076
- elif key == "fhirStoreDestination":
1077
- suggest = "fhir_store_destination"
1078
- elif key == "fhirStreamingSource":
1079
- suggest = "fhir_streaming_source"
1080
- elif key == "reconciliationDestination":
1081
- suggest = "reconciliation_destination"
1082
-
1083
- if suggest:
1084
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobMappingPipelineJob. Access the value via the '{suggest}' property getter instead.")
1085
-
1086
- def __getitem__(self, key: str) -> Any:
1087
- PipelineJobMappingPipelineJob.__key_warning(key)
1088
- return super().__getitem__(key)
1089
-
1090
- def get(self, key: str, default = None) -> Any:
1091
- PipelineJobMappingPipelineJob.__key_warning(key)
1092
- return super().get(key, default)
1093
-
1094
- def __init__(__self__, *,
1095
- mapping_config: 'outputs.PipelineJobMappingPipelineJobMappingConfig',
1096
- fhir_store_destination: Optional[str] = None,
1097
- fhir_streaming_source: Optional['outputs.PipelineJobMappingPipelineJobFhirStreamingSource'] = None,
1098
- reconciliation_destination: Optional[bool] = None):
1099
- """
1100
- :param 'PipelineJobMappingPipelineJobMappingConfigArgs' mapping_config: The location of the mapping configuration.
1101
- Structure is documented below.
1102
- :param str fhir_store_destination: If set, the mapping pipeline will write snapshots to this
1103
- FHIR store without assigning stable IDs. You must
1104
- grant your pipeline project's Cloud Healthcare Service
1105
- Agent serviceaccount healthcare.fhirResources.executeBundle
1106
- and healthcare.fhirResources.create permissions on the
1107
- destination store. The destination store must set
1108
- [disableReferentialIntegrity][FhirStore.disable_referential_integrity]
1109
- to true. The destination store must use FHIR version R4.
1110
- Format: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{fhirStoreID}.
1111
- :param 'PipelineJobMappingPipelineJobFhirStreamingSourceArgs' fhir_streaming_source: A streaming FHIR data source.
1112
- Structure is documented below.
1113
- :param bool reconciliation_destination: If set to true, a mapping pipeline will send output snapshots
1114
- to the reconciliation pipeline in its dataset. A reconciliation
1115
- pipeline must exist in this dataset before a mapping pipeline
1116
- with a reconciliation destination can be created.
1117
- """
1118
- pulumi.set(__self__, "mapping_config", mapping_config)
1119
- if fhir_store_destination is not None:
1120
- pulumi.set(__self__, "fhir_store_destination", fhir_store_destination)
1121
- if fhir_streaming_source is not None:
1122
- pulumi.set(__self__, "fhir_streaming_source", fhir_streaming_source)
1123
- if reconciliation_destination is not None:
1124
- pulumi.set(__self__, "reconciliation_destination", reconciliation_destination)
1125
-
1126
- @property
1127
- @pulumi.getter(name="mappingConfig")
1128
- def mapping_config(self) -> 'outputs.PipelineJobMappingPipelineJobMappingConfig':
1129
- """
1130
- The location of the mapping configuration.
1131
- Structure is documented below.
1132
- """
1133
- return pulumi.get(self, "mapping_config")
1134
-
1135
- @property
1136
- @pulumi.getter(name="fhirStoreDestination")
1137
- def fhir_store_destination(self) -> Optional[str]:
1138
- """
1139
- If set, the mapping pipeline will write snapshots to this
1140
- FHIR store without assigning stable IDs. You must
1141
- grant your pipeline project's Cloud Healthcare Service
1142
- Agent serviceaccount healthcare.fhirResources.executeBundle
1143
- and healthcare.fhirResources.create permissions on the
1144
- destination store. The destination store must set
1145
- [disableReferentialIntegrity][FhirStore.disable_referential_integrity]
1146
- to true. The destination store must use FHIR version R4.
1147
- Format: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{fhirStoreID}.
1148
- """
1149
- return pulumi.get(self, "fhir_store_destination")
1150
-
1151
- @property
1152
- @pulumi.getter(name="fhirStreamingSource")
1153
- def fhir_streaming_source(self) -> Optional['outputs.PipelineJobMappingPipelineJobFhirStreamingSource']:
1154
- """
1155
- A streaming FHIR data source.
1156
- Structure is documented below.
1157
- """
1158
- return pulumi.get(self, "fhir_streaming_source")
1159
-
1160
- @property
1161
- @pulumi.getter(name="reconciliationDestination")
1162
- def reconciliation_destination(self) -> Optional[bool]:
1163
- """
1164
- If set to true, a mapping pipeline will send output snapshots
1165
- to the reconciliation pipeline in its dataset. A reconciliation
1166
- pipeline must exist in this dataset before a mapping pipeline
1167
- with a reconciliation destination can be created.
1168
- """
1169
- return pulumi.get(self, "reconciliation_destination")
1170
-
1171
-
1172
- @pulumi.output_type
1173
- class PipelineJobMappingPipelineJobFhirStreamingSource(dict):
1174
- @staticmethod
1175
- def __key_warning(key: str):
1176
- suggest = None
1177
- if key == "fhirStore":
1178
- suggest = "fhir_store"
1179
-
1180
- if suggest:
1181
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobMappingPipelineJobFhirStreamingSource. Access the value via the '{suggest}' property getter instead.")
1182
-
1183
- def __getitem__(self, key: str) -> Any:
1184
- PipelineJobMappingPipelineJobFhirStreamingSource.__key_warning(key)
1185
- return super().__getitem__(key)
1186
-
1187
- def get(self, key: str, default = None) -> Any:
1188
- PipelineJobMappingPipelineJobFhirStreamingSource.__key_warning(key)
1189
- return super().get(key, default)
1190
-
1191
- def __init__(__self__, *,
1192
- fhir_store: str,
1193
- description: Optional[str] = None):
1194
- """
1195
- :param str fhir_store: The path to the FHIR store in the format projects/{projectId}/locations/{locationId}/datasets/{datasetId}/fhirStores/{fhirStoreId}.
1196
- :param str description: Describes the streaming FHIR data source.
1197
- """
1198
- pulumi.set(__self__, "fhir_store", fhir_store)
1199
- if description is not None:
1200
- pulumi.set(__self__, "description", description)
1201
-
1202
- @property
1203
- @pulumi.getter(name="fhirStore")
1204
- def fhir_store(self) -> str:
1205
- """
1206
- The path to the FHIR store in the format projects/{projectId}/locations/{locationId}/datasets/{datasetId}/fhirStores/{fhirStoreId}.
1207
- """
1208
- return pulumi.get(self, "fhir_store")
1209
-
1210
- @property
1211
- @pulumi.getter
1212
- def description(self) -> Optional[str]:
1213
- """
1214
- Describes the streaming FHIR data source.
1215
- """
1216
- return pulumi.get(self, "description")
1217
-
1218
-
1219
- @pulumi.output_type
1220
- class PipelineJobMappingPipelineJobMappingConfig(dict):
1221
- @staticmethod
1222
- def __key_warning(key: str):
1223
- suggest = None
1224
- if key == "whistleConfigSource":
1225
- suggest = "whistle_config_source"
1226
-
1227
- if suggest:
1228
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobMappingPipelineJobMappingConfig. Access the value via the '{suggest}' property getter instead.")
1229
-
1230
- def __getitem__(self, key: str) -> Any:
1231
- PipelineJobMappingPipelineJobMappingConfig.__key_warning(key)
1232
- return super().__getitem__(key)
1233
-
1234
- def get(self, key: str, default = None) -> Any:
1235
- PipelineJobMappingPipelineJobMappingConfig.__key_warning(key)
1236
- return super().get(key, default)
1237
-
1238
- def __init__(__self__, *,
1239
- description: Optional[str] = None,
1240
- whistle_config_source: Optional['outputs.PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource'] = None):
1241
- """
1242
- :param str description: Describes the mapping configuration.
1243
- :param 'PipelineJobMappingPipelineJobMappingConfigWhistleConfigSourceArgs' whistle_config_source: Specifies the path to the mapping configuration for harmonization pipeline.
1244
- Structure is documented below.
1245
- """
1246
- if description is not None:
1247
- pulumi.set(__self__, "description", description)
1248
- if whistle_config_source is not None:
1249
- pulumi.set(__self__, "whistle_config_source", whistle_config_source)
1250
-
1251
- @property
1252
- @pulumi.getter
1253
- def description(self) -> Optional[str]:
1254
- """
1255
- Describes the mapping configuration.
1256
- """
1257
- return pulumi.get(self, "description")
1258
-
1259
- @property
1260
- @pulumi.getter(name="whistleConfigSource")
1261
- def whistle_config_source(self) -> Optional['outputs.PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource']:
1262
- """
1263
- Specifies the path to the mapping configuration for harmonization pipeline.
1264
- Structure is documented below.
1265
- """
1266
- return pulumi.get(self, "whistle_config_source")
1267
-
1268
-
1269
- @pulumi.output_type
1270
- class PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource(dict):
1271
- @staticmethod
1272
- def __key_warning(key: str):
1273
- suggest = None
1274
- if key == "importUriPrefix":
1275
- suggest = "import_uri_prefix"
1276
-
1277
- if suggest:
1278
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource. Access the value via the '{suggest}' property getter instead.")
1279
-
1280
- def __getitem__(self, key: str) -> Any:
1281
- PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource.__key_warning(key)
1282
- return super().__getitem__(key)
1283
-
1284
- def get(self, key: str, default = None) -> Any:
1285
- PipelineJobMappingPipelineJobMappingConfigWhistleConfigSource.__key_warning(key)
1286
- return super().get(key, default)
1287
-
1288
- def __init__(__self__, *,
1289
- import_uri_prefix: str,
1290
- uri: str):
1291
- """
1292
- :param str import_uri_prefix: Directory path where all the Whistle files are located.
1293
- Example: gs://{bucket-id}/{path/to/import-root/dir}
1294
- :param str uri: Main configuration file which has the entrypoint or the root function.
1295
- Example: gs://{bucket-id}/{path/to/import-root/dir}/entrypoint-file-name.wstl.
1296
- """
1297
- pulumi.set(__self__, "import_uri_prefix", import_uri_prefix)
1298
- pulumi.set(__self__, "uri", uri)
1299
-
1300
- @property
1301
- @pulumi.getter(name="importUriPrefix")
1302
- def import_uri_prefix(self) -> str:
1303
- """
1304
- Directory path where all the Whistle files are located.
1305
- Example: gs://{bucket-id}/{path/to/import-root/dir}
1306
- """
1307
- return pulumi.get(self, "import_uri_prefix")
1308
-
1309
- @property
1310
- @pulumi.getter
1311
- def uri(self) -> str:
1312
- """
1313
- Main configuration file which has the entrypoint or the root function.
1314
- Example: gs://{bucket-id}/{path/to/import-root/dir}/entrypoint-file-name.wstl.
1315
- """
1316
- return pulumi.get(self, "uri")
1317
-
1318
-
1319
- @pulumi.output_type
1320
- class PipelineJobReconciliationPipelineJob(dict):
1321
- @staticmethod
1322
- def __key_warning(key: str):
1323
- suggest = None
1324
- if key == "matchingUriPrefix":
1325
- suggest = "matching_uri_prefix"
1326
- elif key == "mergeConfig":
1327
- suggest = "merge_config"
1328
- elif key == "fhirStoreDestination":
1329
- suggest = "fhir_store_destination"
1330
-
1331
- if suggest:
1332
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobReconciliationPipelineJob. Access the value via the '{suggest}' property getter instead.")
1333
-
1334
- def __getitem__(self, key: str) -> Any:
1335
- PipelineJobReconciliationPipelineJob.__key_warning(key)
1336
- return super().__getitem__(key)
1337
-
1338
- def get(self, key: str, default = None) -> Any:
1339
- PipelineJobReconciliationPipelineJob.__key_warning(key)
1340
- return super().get(key, default)
1341
-
1342
- def __init__(__self__, *,
1343
- matching_uri_prefix: str,
1344
- merge_config: 'outputs.PipelineJobReconciliationPipelineJobMergeConfig',
1345
- fhir_store_destination: Optional[str] = None):
1346
- """
1347
- :param str matching_uri_prefix: Specifies the top level directory of the matching configs used
1348
- in all mapping pipelines, which extract properties for resources
1349
- to be matched on.
1350
- Example: gs://{bucket-id}/{path/to/matching/configs}
1351
- :param 'PipelineJobReconciliationPipelineJobMergeConfigArgs' merge_config: Specifies the location of the reconciliation configuration.
1352
- Structure is documented below.
1353
- :param str fhir_store_destination: The harmonized FHIR store to write harmonized FHIR resources to,
1354
- in the format of: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{id}
1355
- """
1356
- pulumi.set(__self__, "matching_uri_prefix", matching_uri_prefix)
1357
- pulumi.set(__self__, "merge_config", merge_config)
1358
- if fhir_store_destination is not None:
1359
- pulumi.set(__self__, "fhir_store_destination", fhir_store_destination)
1360
-
1361
- @property
1362
- @pulumi.getter(name="matchingUriPrefix")
1363
- def matching_uri_prefix(self) -> str:
1364
- """
1365
- Specifies the top level directory of the matching configs used
1366
- in all mapping pipelines, which extract properties for resources
1367
- to be matched on.
1368
- Example: gs://{bucket-id}/{path/to/matching/configs}
1369
- """
1370
- return pulumi.get(self, "matching_uri_prefix")
1371
-
1372
- @property
1373
- @pulumi.getter(name="mergeConfig")
1374
- def merge_config(self) -> 'outputs.PipelineJobReconciliationPipelineJobMergeConfig':
1375
- """
1376
- Specifies the location of the reconciliation configuration.
1377
- Structure is documented below.
1378
- """
1379
- return pulumi.get(self, "merge_config")
1380
-
1381
- @property
1382
- @pulumi.getter(name="fhirStoreDestination")
1383
- def fhir_store_destination(self) -> Optional[str]:
1384
- """
1385
- The harmonized FHIR store to write harmonized FHIR resources to,
1386
- in the format of: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{id}
1387
- """
1388
- return pulumi.get(self, "fhir_store_destination")
1389
-
1390
-
1391
- @pulumi.output_type
1392
- class PipelineJobReconciliationPipelineJobMergeConfig(dict):
1393
- @staticmethod
1394
- def __key_warning(key: str):
1395
- suggest = None
1396
- if key == "whistleConfigSource":
1397
- suggest = "whistle_config_source"
1398
-
1399
- if suggest:
1400
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobReconciliationPipelineJobMergeConfig. Access the value via the '{suggest}' property getter instead.")
1401
-
1402
- def __getitem__(self, key: str) -> Any:
1403
- PipelineJobReconciliationPipelineJobMergeConfig.__key_warning(key)
1404
- return super().__getitem__(key)
1405
-
1406
- def get(self, key: str, default = None) -> Any:
1407
- PipelineJobReconciliationPipelineJobMergeConfig.__key_warning(key)
1408
- return super().get(key, default)
1409
-
1410
- def __init__(__self__, *,
1411
- whistle_config_source: 'outputs.PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource',
1412
- description: Optional[str] = None):
1413
- """
1414
- :param 'PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSourceArgs' whistle_config_source: Specifies the path to the mapping configuration for harmonization pipeline.
1415
- Structure is documented below.
1416
- :param str description: Describes the mapping configuration.
1417
- """
1418
- pulumi.set(__self__, "whistle_config_source", whistle_config_source)
1419
- if description is not None:
1420
- pulumi.set(__self__, "description", description)
1421
-
1422
- @property
1423
- @pulumi.getter(name="whistleConfigSource")
1424
- def whistle_config_source(self) -> 'outputs.PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource':
1425
- """
1426
- Specifies the path to the mapping configuration for harmonization pipeline.
1427
- Structure is documented below.
1428
- """
1429
- return pulumi.get(self, "whistle_config_source")
1430
-
1431
- @property
1432
- @pulumi.getter
1433
- def description(self) -> Optional[str]:
1434
- """
1435
- Describes the mapping configuration.
1436
- """
1437
- return pulumi.get(self, "description")
1438
-
1439
-
1440
- @pulumi.output_type
1441
- class PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource(dict):
1442
- @staticmethod
1443
- def __key_warning(key: str):
1444
- suggest = None
1445
- if key == "importUriPrefix":
1446
- suggest = "import_uri_prefix"
1447
-
1448
- if suggest:
1449
- pulumi.log.warn(f"Key '{key}' not found in PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource. Access the value via the '{suggest}' property getter instead.")
1450
-
1451
- def __getitem__(self, key: str) -> Any:
1452
- PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource.__key_warning(key)
1453
- return super().__getitem__(key)
1454
-
1455
- def get(self, key: str, default = None) -> Any:
1456
- PipelineJobReconciliationPipelineJobMergeConfigWhistleConfigSource.__key_warning(key)
1457
- return super().get(key, default)
1458
-
1459
- def __init__(__self__, *,
1460
- import_uri_prefix: str,
1461
- uri: str):
1462
- """
1463
- :param str import_uri_prefix: Directory path where all the Whistle files are located.
1464
- Example: gs://{bucket-id}/{path/to/import-root/dir}
1465
- :param str uri: Main configuration file which has the entrypoint or the root function.
1466
- Example: gs://{bucket-id}/{path/to/import-root/dir}/entrypoint-file-name.wstl.
1467
- """
1468
- pulumi.set(__self__, "import_uri_prefix", import_uri_prefix)
1469
- pulumi.set(__self__, "uri", uri)
1470
-
1471
- @property
1472
- @pulumi.getter(name="importUriPrefix")
1473
- def import_uri_prefix(self) -> str:
1474
- """
1475
- Directory path where all the Whistle files are located.
1476
- Example: gs://{bucket-id}/{path/to/import-root/dir}
1477
- """
1478
- return pulumi.get(self, "import_uri_prefix")
1479
-
1480
- @property
1481
- @pulumi.getter
1482
- def uri(self) -> str:
1483
- """
1484
- Main configuration file which has the entrypoint or the root function.
1485
- Example: gs://{bucket-id}/{path/to/import-root/dir}/entrypoint-file-name.wstl.
1486
- """
1487
- return pulumi.get(self, "uri")
1488
-
1489
-
1490
1023
  @pulumi.output_type
1491
1024
  class WorkspaceSettings(dict):
1492
1025
  @staticmethod
@@ -253,7 +253,7 @@ class TunnelDestGroup(pulumi.CustomResource):
253
253
 
254
254
  dest_group = gcp.iap.TunnelDestGroup("dest_group",
255
255
  region="us-central1",
256
- group_name="testgroup_87786",
256
+ group_name="testgroup_2605",
257
257
  cidrs=[
258
258
  "10.1.0.0/16",
259
259
  "192.168.10.0/24",
@@ -339,7 +339,7 @@ class TunnelDestGroup(pulumi.CustomResource):
339
339
 
340
340
  dest_group = gcp.iap.TunnelDestGroup("dest_group",
341
341
  region="us-central1",
342
- group_name="testgroup_87786",
342
+ group_name="testgroup_2605",
343
343
  cidrs=[
344
344
  "10.1.0.0/16",
345
345
  "192.168.10.0/24",
@@ -378,8 +378,8 @@ class ManagedZone(pulumi.CustomResource):
378
378
  import pulumi_gcp as gcp
379
379
 
380
380
  target_project = gcp.organizations.Project("target_project",
381
- project_id="tf-test_2067",
382
- name="tf-test_40785",
381
+ project_id="tf-test_34535",
382
+ name="tf-test_22375",
383
383
  org_id="123456789",
384
384
  billing_account="000000-0000000-0000000-000000",
385
385
  deletion_policy="DELETE")
@@ -400,8 +400,8 @@ class ManagedZone(pulumi.CustomResource):
400
400
  auto_create_subnetworks=False,
401
401
  opts = pulumi.ResourceOptions(depends_on=[compute]))
402
402
  zone = gcp.dns.ManagedZone("zone",
403
- name="tf-test-dns_79169",
404
- dns_name="private_56529.example.com.",
403
+ name="tf-test-dns_29439",
404
+ dns_name="private_87786.example.com.",
405
405
  visibility="private",
406
406
  private_visibility_config={
407
407
  "networks": [{
@@ -489,8 +489,8 @@ class ManagedZone(pulumi.CustomResource):
489
489
  import pulumi_gcp as gcp
490
490
 
491
491
  target_project = gcp.organizations.Project("target_project",
492
- project_id="tf-test_2067",
493
- name="tf-test_40785",
492
+ project_id="tf-test_34535",
493
+ name="tf-test_22375",
494
494
  org_id="123456789",
495
495
  billing_account="000000-0000000-0000000-000000",
496
496
  deletion_policy="DELETE")
@@ -511,8 +511,8 @@ class ManagedZone(pulumi.CustomResource):
511
511
  auto_create_subnetworks=False,
512
512
  opts = pulumi.ResourceOptions(depends_on=[compute]))
513
513
  zone = gcp.dns.ManagedZone("zone",
514
- name="tf-test-dns_79169",
515
- dns_name="private_56529.example.com.",
514
+ name="tf-test-dns_29439",
515
+ dns_name="private_87786.example.com.",
516
516
  visibility="private",
517
517
  private_visibility_config={
518
518
  "networks": [{
@@ -31,7 +31,7 @@ class LogScopeArgs:
31
31
 
32
32
  - - -
33
33
  :param pulumi.Input[str] description: Describes this log scopes.
34
- :param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
34
+ :param pulumi.Input[str] location: The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
35
35
  :param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
36
36
  :param pulumi.Input[str] parent: The parent of the resource.
37
37
  """
@@ -76,7 +76,7 @@ class LogScopeArgs:
76
76
  @pulumi.getter
77
77
  def location(self) -> Optional[pulumi.Input[str]]:
78
78
  """
79
- The location of the resource. The only supported location is global so far.
79
+ The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
80
80
  """
81
81
  return pulumi.get(self, "location")
82
82
 
@@ -123,7 +123,7 @@ class _LogScopeState:
123
123
  Input properties used for looking up and filtering LogScope resources.
124
124
  :param pulumi.Input[str] create_time: Output only. The creation timestamp of the log scopes.
125
125
  :param pulumi.Input[str] description: Describes this log scopes.
126
- :param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
126
+ :param pulumi.Input[str] location: The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
127
127
  :param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
128
128
  :param pulumi.Input[str] parent: The parent of the resource.
129
129
  :param pulumi.Input[Sequence[pulumi.Input[str]]] resource_names: Names of one or more parent resources : * \\`projects/[PROJECT_ID]\\` May alternatively be one or more views : * \\`projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]\\` A log scope can include a maximum of 50 projects and a maximum of 100 resources in total.
@@ -175,7 +175,7 @@ class _LogScopeState:
175
175
  @pulumi.getter
176
176
  def location(self) -> Optional[pulumi.Input[str]]:
177
177
  """
178
- The location of the resource. The only supported location is global so far.
178
+ The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
179
179
  """
180
180
  return pulumi.get(self, "location")
181
181
 
@@ -290,7 +290,7 @@ class LogScope(pulumi.CustomResource):
290
290
  :param str resource_name: The name of the resource.
291
291
  :param pulumi.ResourceOptions opts: Options for the resource.
292
292
  :param pulumi.Input[str] description: Describes this log scopes.
293
- :param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
293
+ :param pulumi.Input[str] location: The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
294
294
  :param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
295
295
  :param pulumi.Input[str] parent: The parent of the resource.
296
296
  :param pulumi.Input[Sequence[pulumi.Input[str]]] resource_names: Names of one or more parent resources : * \\`projects/[PROJECT_ID]\\` May alternatively be one or more views : * \\`projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]\\` A log scope can include a maximum of 50 projects and a maximum of 100 resources in total.
@@ -409,7 +409,7 @@ class LogScope(pulumi.CustomResource):
409
409
  :param pulumi.ResourceOptions opts: Options for the resource.
410
410
  :param pulumi.Input[str] create_time: Output only. The creation timestamp of the log scopes.
411
411
  :param pulumi.Input[str] description: Describes this log scopes.
412
- :param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
412
+ :param pulumi.Input[str] location: The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
413
413
  :param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
414
414
  :param pulumi.Input[str] parent: The parent of the resource.
415
415
  :param pulumi.Input[Sequence[pulumi.Input[str]]] resource_names: Names of one or more parent resources : * \\`projects/[PROJECT_ID]\\` May alternatively be one or more views : * \\`projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]\\` A log scope can include a maximum of 50 projects and a maximum of 100 resources in total.
@@ -451,7 +451,7 @@ class LogScope(pulumi.CustomResource):
451
451
  @pulumi.getter
452
452
  def location(self) -> pulumi.Output[str]:
453
453
  """
454
- The location of the resource. The only supported location is global so far.
454
+ The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1.
455
455
  """
456
456
  return pulumi.get(self, "location")
457
457