pulumi-gcp 7.17.0a1712163201__py3-none-any.whl → 7.17.0a1712602552__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 (91) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/apphub/__init__.py +1 -0
  3. pulumi_gcp/apphub/get_application.py +220 -0
  4. pulumi_gcp/apphub/outputs.py +214 -0
  5. pulumi_gcp/applicationintegration/__init__.py +10 -0
  6. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  7. pulumi_gcp/applicationintegration/client.py +566 -0
  8. pulumi_gcp/applicationintegration/outputs.py +122 -0
  9. pulumi_gcp/bigquery/_inputs.py +16 -0
  10. pulumi_gcp/bigquery/outputs.py +14 -0
  11. pulumi_gcp/bigquery/routine.py +98 -0
  12. pulumi_gcp/bigtable/_inputs.py +4 -4
  13. pulumi_gcp/bigtable/gc_policy.py +8 -0
  14. pulumi_gcp/bigtable/outputs.py +4 -4
  15. pulumi_gcp/billing/_inputs.py +4 -4
  16. pulumi_gcp/billing/outputs.py +4 -4
  17. pulumi_gcp/billing/project_info.py +4 -4
  18. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  19. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  20. pulumi_gcp/cloudquota/__init__.py +2 -0
  21. pulumi_gcp/cloudquota/_inputs.py +131 -0
  22. pulumi_gcp/cloudquota/outputs.py +118 -0
  23. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  24. pulumi_gcp/cloudrunv2/service.py +7 -7
  25. pulumi_gcp/composer/_inputs.py +14 -4
  26. pulumi_gcp/composer/outputs.py +22 -10
  27. pulumi_gcp/compute/_inputs.py +40 -44
  28. pulumi_gcp/compute/autoscaler.py +14 -14
  29. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  30. pulumi_gcp/compute/network_endpoint.py +8 -0
  31. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  32. pulumi_gcp/compute/outputs.py +62 -60
  33. pulumi_gcp/compute/region_autoscaler.py +14 -14
  34. pulumi_gcp/compute/region_backend_service.py +28 -0
  35. pulumi_gcp/compute/target_instance.py +4 -4
  36. pulumi_gcp/config/__init__.pyi +2 -0
  37. pulumi_gcp/config/vars.py +4 -0
  38. pulumi_gcp/container/_inputs.py +148 -16
  39. pulumi_gcp/container/outputs.py +148 -16
  40. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  41. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  42. pulumi_gcp/dataloss/_inputs.py +6 -6
  43. pulumi_gcp/dataloss/outputs.py +6 -6
  44. pulumi_gcp/dataplex/task.py +16 -16
  45. pulumi_gcp/dataproc/_inputs.py +85 -10
  46. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  47. pulumi_gcp/dataproc/metastore_service.py +120 -0
  48. pulumi_gcp/dataproc/outputs.py +142 -10
  49. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  50. pulumi_gcp/firestore/backup_schedule.py +14 -14
  51. pulumi_gcp/firestore/field.py +4 -4
  52. pulumi_gcp/gkehub/membership_binding.py +6 -6
  53. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  54. pulumi_gcp/gkehub/namespace.py +4 -4
  55. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  56. pulumi_gcp/iam/_inputs.py +76 -0
  57. pulumi_gcp/iam/outputs.py +76 -0
  58. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  59. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  60. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  61. pulumi_gcp/kms/_inputs.py +46 -0
  62. pulumi_gcp/kms/crypto_key.py +54 -0
  63. pulumi_gcp/kms/crypto_key_version.py +54 -0
  64. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  65. pulumi_gcp/kms/outputs.py +54 -0
  66. pulumi_gcp/logging/_inputs.py +8 -8
  67. pulumi_gcp/logging/metric.py +7 -7
  68. pulumi_gcp/logging/outputs.py +8 -8
  69. pulumi_gcp/monitoring/_inputs.py +2 -2
  70. pulumi_gcp/monitoring/outputs.py +2 -2
  71. pulumi_gcp/monitoring/slo.py +4 -4
  72. pulumi_gcp/networkservices/_inputs.py +6 -6
  73. pulumi_gcp/networkservices/outputs.py +6 -6
  74. pulumi_gcp/orgpolicy/policy.py +2 -2
  75. pulumi_gcp/provider.py +20 -0
  76. pulumi_gcp/pubsub/subscription.py +4 -4
  77. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  78. pulumi_gcp/sql/_inputs.py +20 -2
  79. pulumi_gcp/sql/database_instance.py +2 -2
  80. pulumi_gcp/sql/outputs.py +20 -2
  81. pulumi_gcp/storage/_inputs.py +2 -2
  82. pulumi_gcp/storage/outputs.py +2 -2
  83. pulumi_gcp/vertex/__init__.py +1 -0
  84. pulumi_gcp/vertex/_inputs.py +175 -8
  85. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  86. pulumi_gcp/vertex/outputs.py +202 -10
  87. pulumi_gcp/vpcaccess/connector.py +77 -28
  88. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
  89. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +91 -83
  90. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
  91. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/top_level.txt +0 -0
@@ -30,6 +30,7 @@ class MetastoreServiceArgs:
30
30
  project: Optional[pulumi.Input[str]] = None,
31
31
  release_channel: Optional[pulumi.Input[str]] = None,
32
32
  scaling_config: Optional[pulumi.Input['MetastoreServiceScalingConfigArgs']] = None,
33
+ scheduled_backup: Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']] = None,
33
34
  telemetry_config: Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']] = None,
34
35
  tier: Optional[pulumi.Input[str]] = None):
35
36
  """
@@ -71,6 +72,8 @@ class MetastoreServiceArgs:
71
72
  Possible values are: `CANARY`, `STABLE`.
72
73
  :param pulumi.Input['MetastoreServiceScalingConfigArgs'] scaling_config: Represents the scaling configuration of a metastore service.
73
74
  Structure is documented below.
75
+ :param pulumi.Input['MetastoreServiceScheduledBackupArgs'] scheduled_backup: The configuration of scheduled backup for the metastore service.
76
+ Structure is documented below.
74
77
  :param pulumi.Input['MetastoreServiceTelemetryConfigArgs'] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
75
78
  Structure is documented below.
76
79
  :param pulumi.Input[str] tier: The tier of the service.
@@ -103,6 +106,8 @@ class MetastoreServiceArgs:
103
106
  pulumi.set(__self__, "release_channel", release_channel)
104
107
  if scaling_config is not None:
105
108
  pulumi.set(__self__, "scaling_config", scaling_config)
109
+ if scheduled_backup is not None:
110
+ pulumi.set(__self__, "scheduled_backup", scheduled_backup)
106
111
  if telemetry_config is not None:
107
112
  pulumi.set(__self__, "telemetry_config", telemetry_config)
108
113
  if tier is not None:
@@ -299,6 +304,19 @@ class MetastoreServiceArgs:
299
304
  def scaling_config(self, value: Optional[pulumi.Input['MetastoreServiceScalingConfigArgs']]):
300
305
  pulumi.set(self, "scaling_config", value)
301
306
 
307
+ @property
308
+ @pulumi.getter(name="scheduledBackup")
309
+ def scheduled_backup(self) -> Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']]:
310
+ """
311
+ The configuration of scheduled backup for the metastore service.
312
+ Structure is documented below.
313
+ """
314
+ return pulumi.get(self, "scheduled_backup")
315
+
316
+ @scheduled_backup.setter
317
+ def scheduled_backup(self, value: Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']]):
318
+ pulumi.set(self, "scheduled_backup", value)
319
+
302
320
  @property
303
321
  @pulumi.getter(name="telemetryConfig")
304
322
  def telemetry_config(self) -> Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']]:
@@ -347,6 +365,7 @@ class _MetastoreServiceState:
347
365
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
348
366
  release_channel: Optional[pulumi.Input[str]] = None,
349
367
  scaling_config: Optional[pulumi.Input['MetastoreServiceScalingConfigArgs']] = None,
368
+ scheduled_backup: Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']] = None,
350
369
  service_id: Optional[pulumi.Input[str]] = None,
351
370
  state: Optional[pulumi.Input[str]] = None,
352
371
  state_message: Optional[pulumi.Input[str]] = None,
@@ -393,6 +412,8 @@ class _MetastoreServiceState:
393
412
  Possible values are: `CANARY`, `STABLE`.
394
413
  :param pulumi.Input['MetastoreServiceScalingConfigArgs'] scaling_config: Represents the scaling configuration of a metastore service.
395
414
  Structure is documented below.
415
+ :param pulumi.Input['MetastoreServiceScheduledBackupArgs'] scheduled_backup: The configuration of scheduled backup for the metastore service.
416
+ Structure is documented below.
396
417
  :param pulumi.Input[str] service_id: The ID of the metastore service. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_),
397
418
  and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between
398
419
  3 and 63 characters.
@@ -443,6 +464,8 @@ class _MetastoreServiceState:
443
464
  pulumi.set(__self__, "release_channel", release_channel)
444
465
  if scaling_config is not None:
445
466
  pulumi.set(__self__, "scaling_config", scaling_config)
467
+ if scheduled_backup is not None:
468
+ pulumi.set(__self__, "scheduled_backup", scheduled_backup)
446
469
  if service_id is not None:
447
470
  pulumi.set(__self__, "service_id", service_id)
448
471
  if state is not None:
@@ -692,6 +715,19 @@ class _MetastoreServiceState:
692
715
  def scaling_config(self, value: Optional[pulumi.Input['MetastoreServiceScalingConfigArgs']]):
693
716
  pulumi.set(self, "scaling_config", value)
694
717
 
718
+ @property
719
+ @pulumi.getter(name="scheduledBackup")
720
+ def scheduled_backup(self) -> Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']]:
721
+ """
722
+ The configuration of scheduled backup for the metastore service.
723
+ Structure is documented below.
724
+ """
725
+ return pulumi.get(self, "scheduled_backup")
726
+
727
+ @scheduled_backup.setter
728
+ def scheduled_backup(self, value: Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']]):
729
+ pulumi.set(self, "scheduled_backup", value)
730
+
695
731
  @property
696
732
  @pulumi.getter(name="serviceId")
697
733
  def service_id(self) -> Optional[pulumi.Input[str]]:
@@ -790,6 +826,7 @@ class MetastoreService(pulumi.CustomResource):
790
826
  project: Optional[pulumi.Input[str]] = None,
791
827
  release_channel: Optional[pulumi.Input[str]] = None,
792
828
  scaling_config: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceScalingConfigArgs']]] = None,
829
+ scheduled_backup: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceScheduledBackupArgs']]] = None,
793
830
  service_id: Optional[pulumi.Input[str]] = None,
794
831
  telemetry_config: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceTelemetryConfigArgs']]] = None,
795
832
  tier: Optional[pulumi.Input[str]] = None,
@@ -951,6 +988,39 @@ class MetastoreService(pulumi.CustomResource):
951
988
  ))
952
989
  ```
953
990
  <!--End PulumiCodeChooser -->
991
+ ### Dataproc Metastore Service Scheduled Backup
992
+
993
+ <!--Start PulumiCodeChooser -->
994
+ ```python
995
+ import pulumi
996
+ import pulumi_gcp as gcp
997
+
998
+ bucket = gcp.storage.Bucket("bucket",
999
+ name="backup",
1000
+ location="us-central1")
1001
+ backup = gcp.dataproc.MetastoreService("backup",
1002
+ service_id="backup",
1003
+ location="us-central1",
1004
+ port=9080,
1005
+ tier="DEVELOPER",
1006
+ maintenance_window=gcp.dataproc.MetastoreServiceMaintenanceWindowArgs(
1007
+ hour_of_day=2,
1008
+ day_of_week="SUNDAY",
1009
+ ),
1010
+ hive_metastore_config=gcp.dataproc.MetastoreServiceHiveMetastoreConfigArgs(
1011
+ version="2.3.6",
1012
+ ),
1013
+ scheduled_backup=gcp.dataproc.MetastoreServiceScheduledBackupArgs(
1014
+ enabled=True,
1015
+ cron_schedule="0 0 * * *",
1016
+ time_zone="UTC",
1017
+ backup_location=bucket.name.apply(lambda name: f"gs://{name}"),
1018
+ ),
1019
+ labels={
1020
+ "env": "test",
1021
+ })
1022
+ ```
1023
+ <!--End PulumiCodeChooser -->
954
1024
 
955
1025
  ## Import
956
1026
 
@@ -1009,6 +1079,8 @@ class MetastoreService(pulumi.CustomResource):
1009
1079
  Possible values are: `CANARY`, `STABLE`.
1010
1080
  :param pulumi.Input[pulumi.InputType['MetastoreServiceScalingConfigArgs']] scaling_config: Represents the scaling configuration of a metastore service.
1011
1081
  Structure is documented below.
1082
+ :param pulumi.Input[pulumi.InputType['MetastoreServiceScheduledBackupArgs']] scheduled_backup: The configuration of scheduled backup for the metastore service.
1083
+ Structure is documented below.
1012
1084
  :param pulumi.Input[str] service_id: The ID of the metastore service. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_),
1013
1085
  and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between
1014
1086
  3 and 63 characters.
@@ -1183,6 +1255,39 @@ class MetastoreService(pulumi.CustomResource):
1183
1255
  ))
1184
1256
  ```
1185
1257
  <!--End PulumiCodeChooser -->
1258
+ ### Dataproc Metastore Service Scheduled Backup
1259
+
1260
+ <!--Start PulumiCodeChooser -->
1261
+ ```python
1262
+ import pulumi
1263
+ import pulumi_gcp as gcp
1264
+
1265
+ bucket = gcp.storage.Bucket("bucket",
1266
+ name="backup",
1267
+ location="us-central1")
1268
+ backup = gcp.dataproc.MetastoreService("backup",
1269
+ service_id="backup",
1270
+ location="us-central1",
1271
+ port=9080,
1272
+ tier="DEVELOPER",
1273
+ maintenance_window=gcp.dataproc.MetastoreServiceMaintenanceWindowArgs(
1274
+ hour_of_day=2,
1275
+ day_of_week="SUNDAY",
1276
+ ),
1277
+ hive_metastore_config=gcp.dataproc.MetastoreServiceHiveMetastoreConfigArgs(
1278
+ version="2.3.6",
1279
+ ),
1280
+ scheduled_backup=gcp.dataproc.MetastoreServiceScheduledBackupArgs(
1281
+ enabled=True,
1282
+ cron_schedule="0 0 * * *",
1283
+ time_zone="UTC",
1284
+ backup_location=bucket.name.apply(lambda name: f"gs://{name}"),
1285
+ ),
1286
+ labels={
1287
+ "env": "test",
1288
+ })
1289
+ ```
1290
+ <!--End PulumiCodeChooser -->
1186
1291
 
1187
1292
  ## Import
1188
1293
 
@@ -1236,6 +1341,7 @@ class MetastoreService(pulumi.CustomResource):
1236
1341
  project: Optional[pulumi.Input[str]] = None,
1237
1342
  release_channel: Optional[pulumi.Input[str]] = None,
1238
1343
  scaling_config: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceScalingConfigArgs']]] = None,
1344
+ scheduled_backup: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceScheduledBackupArgs']]] = None,
1239
1345
  service_id: Optional[pulumi.Input[str]] = None,
1240
1346
  telemetry_config: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceTelemetryConfigArgs']]] = None,
1241
1347
  tier: Optional[pulumi.Input[str]] = None,
@@ -1261,6 +1367,7 @@ class MetastoreService(pulumi.CustomResource):
1261
1367
  __props__.__dict__["project"] = project
1262
1368
  __props__.__dict__["release_channel"] = release_channel
1263
1369
  __props__.__dict__["scaling_config"] = scaling_config
1370
+ __props__.__dict__["scheduled_backup"] = scheduled_backup
1264
1371
  if service_id is None and not opts.urn:
1265
1372
  raise TypeError("Missing required property 'service_id'")
1266
1373
  __props__.__dict__["service_id"] = service_id
@@ -1304,6 +1411,7 @@ class MetastoreService(pulumi.CustomResource):
1304
1411
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1305
1412
  release_channel: Optional[pulumi.Input[str]] = None,
1306
1413
  scaling_config: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceScalingConfigArgs']]] = None,
1414
+ scheduled_backup: Optional[pulumi.Input[pulumi.InputType['MetastoreServiceScheduledBackupArgs']]] = None,
1307
1415
  service_id: Optional[pulumi.Input[str]] = None,
1308
1416
  state: Optional[pulumi.Input[str]] = None,
1309
1417
  state_message: Optional[pulumi.Input[str]] = None,
@@ -1355,6 +1463,8 @@ class MetastoreService(pulumi.CustomResource):
1355
1463
  Possible values are: `CANARY`, `STABLE`.
1356
1464
  :param pulumi.Input[pulumi.InputType['MetastoreServiceScalingConfigArgs']] scaling_config: Represents the scaling configuration of a metastore service.
1357
1465
  Structure is documented below.
1466
+ :param pulumi.Input[pulumi.InputType['MetastoreServiceScheduledBackupArgs']] scheduled_backup: The configuration of scheduled backup for the metastore service.
1467
+ Structure is documented below.
1358
1468
  :param pulumi.Input[str] service_id: The ID of the metastore service. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_),
1359
1469
  and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between
1360
1470
  3 and 63 characters.
@@ -1391,6 +1501,7 @@ class MetastoreService(pulumi.CustomResource):
1391
1501
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1392
1502
  __props__.__dict__["release_channel"] = release_channel
1393
1503
  __props__.__dict__["scaling_config"] = scaling_config
1504
+ __props__.__dict__["scheduled_backup"] = scheduled_backup
1394
1505
  __props__.__dict__["service_id"] = service_id
1395
1506
  __props__.__dict__["state"] = state
1396
1507
  __props__.__dict__["state_message"] = state_message
@@ -1563,6 +1674,15 @@ class MetastoreService(pulumi.CustomResource):
1563
1674
  """
1564
1675
  return pulumi.get(self, "scaling_config")
1565
1676
 
1677
+ @property
1678
+ @pulumi.getter(name="scheduledBackup")
1679
+ def scheduled_backup(self) -> pulumi.Output[Optional['outputs.MetastoreServiceScheduledBackup']]:
1680
+ """
1681
+ The configuration of scheduled backup for the metastore service.
1682
+ Structure is documented below.
1683
+ """
1684
+ return pulumi.get(self, "scheduled_backup")
1685
+
1566
1686
  @property
1567
1687
  @pulumi.getter(name="serviceId")
1568
1688
  def service_id(self) -> pulumi.Output[str]:
@@ -97,6 +97,7 @@ __all__ = [
97
97
  'MetastoreServiceNetworkConfig',
98
98
  'MetastoreServiceNetworkConfigConsumer',
99
99
  'MetastoreServiceScalingConfig',
100
+ 'MetastoreServiceScheduledBackup',
100
101
  'MetastoreServiceTelemetryConfig',
101
102
  'WorkflowTemplateJob',
102
103
  'WorkflowTemplateJobHadoopJob',
@@ -165,6 +166,7 @@ __all__ = [
165
166
  'GetMetastoreServiceNetworkConfigResult',
166
167
  'GetMetastoreServiceNetworkConfigConsumerResult',
167
168
  'GetMetastoreServiceScalingConfigResult',
169
+ 'GetMetastoreServiceScheduledBackupResult',
168
170
  'GetMetastoreServiceTelemetryConfigResult',
169
171
  ]
170
172
 
@@ -653,7 +655,9 @@ class ClusterClusterConfig(dict):
653
655
  Structure defined below.
654
656
  :param Sequence['ClusterClusterConfigAuxiliaryNodeGroupArgs'] auxiliary_node_groups: A Dataproc NodeGroup resource is a group of Dataproc cluster nodes that execute an assigned role.
655
657
  Structure defined below.
656
- :param str bucket: The name of the cloud storage bucket ultimately used to house the staging data for the cluster. If staging_bucket is specified, it will contain this value, otherwise it will be the auto generated name.
658
+ :param str bucket: The name of the cloud storage bucket ultimately used to house the staging data
659
+ for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
660
+ it will be the auto generated name.
657
661
  :param 'ClusterClusterConfigDataprocMetricConfigArgs' dataproc_metric_config: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
658
662
  Structure defined below.
659
663
  :param 'ClusterClusterConfigEncryptionConfigArgs' encryption_config: The Customer managed encryption keys settings for the cluster.
@@ -751,7 +755,9 @@ class ClusterClusterConfig(dict):
751
755
  @pulumi.getter
752
756
  def bucket(self) -> Optional[str]:
753
757
  """
754
- The name of the cloud storage bucket ultimately used to house the staging data for the cluster. If staging_bucket is specified, it will contain this value, otherwise it will be the auto generated name.
758
+ The name of the cloud storage bucket ultimately used to house the staging data
759
+ for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
760
+ it will be the auto generated name.
755
761
  """
756
762
  return pulumi.get(self, "bucket")
757
763
 
@@ -5305,10 +5311,10 @@ class JobStatus(dict):
5305
5311
  state_start_time: Optional[str] = None,
5306
5312
  substate: Optional[str] = None):
5307
5313
  """
5308
- :param str details: Output-only. Optional job state details, such as an error description if the state is ERROR
5309
- :param str state: Output-only. A state message specifying the overall job state
5310
- :param str state_start_time: Output-only. The time when this state was entered
5311
- :param str substate: Output-only. Additional state information, which includes status reported by the agent
5314
+ :param str details: Optional job state details, such as an error description if the state is ERROR.
5315
+ :param str state: A state message specifying the overall job state.
5316
+ :param str state_start_time: The time when this state was entered.
5317
+ :param str substate: Additional state information, which includes status reported by the agent.
5312
5318
  """
5313
5319
  if details is not None:
5314
5320
  pulumi.set(__self__, "details", details)
@@ -5323,7 +5329,7 @@ class JobStatus(dict):
5323
5329
  @pulumi.getter
5324
5330
  def details(self) -> Optional[str]:
5325
5331
  """
5326
- Output-only. Optional job state details, such as an error description if the state is ERROR
5332
+ Optional job state details, such as an error description if the state is ERROR.
5327
5333
  """
5328
5334
  return pulumi.get(self, "details")
5329
5335
 
@@ -5331,7 +5337,7 @@ class JobStatus(dict):
5331
5337
  @pulumi.getter
5332
5338
  def state(self) -> Optional[str]:
5333
5339
  """
5334
- Output-only. A state message specifying the overall job state
5340
+ A state message specifying the overall job state.
5335
5341
  """
5336
5342
  return pulumi.get(self, "state")
5337
5343
 
@@ -5339,7 +5345,7 @@ class JobStatus(dict):
5339
5345
  @pulumi.getter(name="stateStartTime")
5340
5346
  def state_start_time(self) -> Optional[str]:
5341
5347
  """
5342
- Output-only. The time when this state was entered
5348
+ The time when this state was entered.
5343
5349
  """
5344
5350
  return pulumi.get(self, "state_start_time")
5345
5351
 
@@ -5347,7 +5353,7 @@ class JobStatus(dict):
5347
5353
  @pulumi.getter
5348
5354
  def substate(self) -> Optional[str]:
5349
5355
  """
5350
- Output-only. Additional state information, which includes status reported by the agent
5356
+ Additional state information, which includes status reported by the agent.
5351
5357
  """
5352
5358
  return pulumi.get(self, "substate")
5353
5359
 
@@ -6084,6 +6090,81 @@ class MetastoreServiceScalingConfig(dict):
6084
6090
  return pulumi.get(self, "scaling_factor")
6085
6091
 
6086
6092
 
6093
+ @pulumi.output_type
6094
+ class MetastoreServiceScheduledBackup(dict):
6095
+ @staticmethod
6096
+ def __key_warning(key: str):
6097
+ suggest = None
6098
+ if key == "backupLocation":
6099
+ suggest = "backup_location"
6100
+ elif key == "cronSchedule":
6101
+ suggest = "cron_schedule"
6102
+ elif key == "timeZone":
6103
+ suggest = "time_zone"
6104
+
6105
+ if suggest:
6106
+ pulumi.log.warn(f"Key '{key}' not found in MetastoreServiceScheduledBackup. Access the value via the '{suggest}' property getter instead.")
6107
+
6108
+ def __getitem__(self, key: str) -> Any:
6109
+ MetastoreServiceScheduledBackup.__key_warning(key)
6110
+ return super().__getitem__(key)
6111
+
6112
+ def get(self, key: str, default = None) -> Any:
6113
+ MetastoreServiceScheduledBackup.__key_warning(key)
6114
+ return super().get(key, default)
6115
+
6116
+ def __init__(__self__, *,
6117
+ backup_location: str,
6118
+ cron_schedule: Optional[str] = None,
6119
+ enabled: Optional[bool] = None,
6120
+ time_zone: Optional[str] = None):
6121
+ """
6122
+ :param str backup_location: A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
6123
+ :param str cron_schedule: The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
6124
+ :param bool enabled: Defines whether the scheduled backup is enabled. The default value is false.
6125
+ :param str time_zone: Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
6126
+ """
6127
+ pulumi.set(__self__, "backup_location", backup_location)
6128
+ if cron_schedule is not None:
6129
+ pulumi.set(__self__, "cron_schedule", cron_schedule)
6130
+ if enabled is not None:
6131
+ pulumi.set(__self__, "enabled", enabled)
6132
+ if time_zone is not None:
6133
+ pulumi.set(__self__, "time_zone", time_zone)
6134
+
6135
+ @property
6136
+ @pulumi.getter(name="backupLocation")
6137
+ def backup_location(self) -> str:
6138
+ """
6139
+ A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
6140
+ """
6141
+ return pulumi.get(self, "backup_location")
6142
+
6143
+ @property
6144
+ @pulumi.getter(name="cronSchedule")
6145
+ def cron_schedule(self) -> Optional[str]:
6146
+ """
6147
+ The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
6148
+ """
6149
+ return pulumi.get(self, "cron_schedule")
6150
+
6151
+ @property
6152
+ @pulumi.getter
6153
+ def enabled(self) -> Optional[bool]:
6154
+ """
6155
+ Defines whether the scheduled backup is enabled. The default value is false.
6156
+ """
6157
+ return pulumi.get(self, "enabled")
6158
+
6159
+ @property
6160
+ @pulumi.getter(name="timeZone")
6161
+ def time_zone(self) -> Optional[str]:
6162
+ """
6163
+ Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
6164
+ """
6165
+ return pulumi.get(self, "time_zone")
6166
+
6167
+
6087
6168
  @pulumi.output_type
6088
6169
  class MetastoreServiceTelemetryConfig(dict):
6089
6170
  @staticmethod
@@ -10485,6 +10566,57 @@ class GetMetastoreServiceScalingConfigResult(dict):
10485
10566
  return pulumi.get(self, "scaling_factor")
10486
10567
 
10487
10568
 
10569
+ @pulumi.output_type
10570
+ class GetMetastoreServiceScheduledBackupResult(dict):
10571
+ def __init__(__self__, *,
10572
+ backup_location: str,
10573
+ cron_schedule: str,
10574
+ enabled: bool,
10575
+ time_zone: str):
10576
+ """
10577
+ :param str backup_location: A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
10578
+ :param str cron_schedule: The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
10579
+ :param bool enabled: Defines whether the scheduled backup is enabled. The default value is false.
10580
+ :param str time_zone: Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
10581
+ """
10582
+ pulumi.set(__self__, "backup_location", backup_location)
10583
+ pulumi.set(__self__, "cron_schedule", cron_schedule)
10584
+ pulumi.set(__self__, "enabled", enabled)
10585
+ pulumi.set(__self__, "time_zone", time_zone)
10586
+
10587
+ @property
10588
+ @pulumi.getter(name="backupLocation")
10589
+ def backup_location(self) -> str:
10590
+ """
10591
+ A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
10592
+ """
10593
+ return pulumi.get(self, "backup_location")
10594
+
10595
+ @property
10596
+ @pulumi.getter(name="cronSchedule")
10597
+ def cron_schedule(self) -> str:
10598
+ """
10599
+ The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
10600
+ """
10601
+ return pulumi.get(self, "cron_schedule")
10602
+
10603
+ @property
10604
+ @pulumi.getter
10605
+ def enabled(self) -> bool:
10606
+ """
10607
+ Defines whether the scheduled backup is enabled. The default value is false.
10608
+ """
10609
+ return pulumi.get(self, "enabled")
10610
+
10611
+ @property
10612
+ @pulumi.getter(name="timeZone")
10613
+ def time_zone(self) -> str:
10614
+ """
10615
+ Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
10616
+ """
10617
+ return pulumi.get(self, "time_zone")
10618
+
10619
+
10488
10620
  @pulumi.output_type
10489
10621
  class GetMetastoreServiceTelemetryConfigResult(dict):
10490
10622
  def __init__(__self__, *,
@@ -300,7 +300,7 @@ class AppCheckServiceConfig(pulumi.CustomResource):
300
300
  disable_on_destroy=False)
301
301
  default = gcp.firebase.AppCheckServiceConfig("default",
302
302
  project="my-project-name",
303
- service_id="firebasedatabase.googleapis.com",
303
+ service_id="identitytoolkit.googleapis.com",
304
304
  enforcement_mode="UNENFORCED")
305
305
  ```
306
306
  <!--End PulumiCodeChooser -->
@@ -422,7 +422,7 @@ class AppCheckServiceConfig(pulumi.CustomResource):
422
422
  disable_on_destroy=False)
423
423
  default = gcp.firebase.AppCheckServiceConfig("default",
424
424
  project="my-project-name",
425
- service_id="firebasedatabase.googleapis.com",
425
+ service_id="identitytoolkit.googleapis.com",
426
426
  enforcement_mode="UNENFORCED")
427
427
  ```
428
428
  <!--End PulumiCodeChooser -->
@@ -29,11 +29,11 @@ class BackupScheduleArgs:
29
29
 
30
30
 
31
31
  - - -
32
- :param pulumi.Input['BackupScheduleDailyRecurrenceArgs'] daily_recurrence: For a schedule that runs daily at a specified time.
32
+ :param pulumi.Input['BackupScheduleDailyRecurrenceArgs'] daily_recurrence: For a schedule that runs daily.
33
33
  :param pulumi.Input[str] database: The Firestore database id. Defaults to `"(default)"`.
34
34
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
35
35
  If it is not provided, the provider project is used.
36
- :param pulumi.Input['BackupScheduleWeeklyRecurrenceArgs'] weekly_recurrence: For a schedule that runs weekly on a specific day and time.
36
+ :param pulumi.Input['BackupScheduleWeeklyRecurrenceArgs'] weekly_recurrence: For a schedule that runs weekly on a specific day.
37
37
  Structure is documented below.
38
38
  """
39
39
  pulumi.set(__self__, "retention", retention)
@@ -67,7 +67,7 @@ class BackupScheduleArgs:
67
67
  @pulumi.getter(name="dailyRecurrence")
68
68
  def daily_recurrence(self) -> Optional[pulumi.Input['BackupScheduleDailyRecurrenceArgs']]:
69
69
  """
70
- For a schedule that runs daily at a specified time.
70
+ For a schedule that runs daily.
71
71
  """
72
72
  return pulumi.get(self, "daily_recurrence")
73
73
 
@@ -104,7 +104,7 @@ class BackupScheduleArgs:
104
104
  @pulumi.getter(name="weeklyRecurrence")
105
105
  def weekly_recurrence(self) -> Optional[pulumi.Input['BackupScheduleWeeklyRecurrenceArgs']]:
106
106
  """
107
- For a schedule that runs weekly on a specific day and time.
107
+ For a schedule that runs weekly on a specific day.
108
108
  Structure is documented below.
109
109
  """
110
110
  return pulumi.get(self, "weekly_recurrence")
@@ -125,7 +125,7 @@ class _BackupScheduleState:
125
125
  weekly_recurrence: Optional[pulumi.Input['BackupScheduleWeeklyRecurrenceArgs']] = None):
126
126
  """
127
127
  Input properties used for looking up and filtering BackupSchedule resources.
128
- :param pulumi.Input['BackupScheduleDailyRecurrenceArgs'] daily_recurrence: For a schedule that runs daily at a specified time.
128
+ :param pulumi.Input['BackupScheduleDailyRecurrenceArgs'] daily_recurrence: For a schedule that runs daily.
129
129
  :param pulumi.Input[str] database: The Firestore database id. Defaults to `"(default)"`.
130
130
  :param pulumi.Input[str] name: The unique backup schedule identifier across all locations and databases for the given project. Format:
131
131
  `projects/{{project}}/databases/{{database}}/backupSchedules/{{backupSchedule}}`
@@ -137,7 +137,7 @@ class _BackupScheduleState:
137
137
 
138
138
 
139
139
  - - -
140
- :param pulumi.Input['BackupScheduleWeeklyRecurrenceArgs'] weekly_recurrence: For a schedule that runs weekly on a specific day and time.
140
+ :param pulumi.Input['BackupScheduleWeeklyRecurrenceArgs'] weekly_recurrence: For a schedule that runs weekly on a specific day.
141
141
  Structure is documented below.
142
142
  """
143
143
  if daily_recurrence is not None:
@@ -157,7 +157,7 @@ class _BackupScheduleState:
157
157
  @pulumi.getter(name="dailyRecurrence")
158
158
  def daily_recurrence(self) -> Optional[pulumi.Input['BackupScheduleDailyRecurrenceArgs']]:
159
159
  """
160
- For a schedule that runs daily at a specified time.
160
+ For a schedule that runs daily.
161
161
  """
162
162
  return pulumi.get(self, "daily_recurrence")
163
163
 
@@ -224,7 +224,7 @@ class _BackupScheduleState:
224
224
  @pulumi.getter(name="weeklyRecurrence")
225
225
  def weekly_recurrence(self) -> Optional[pulumi.Input['BackupScheduleWeeklyRecurrenceArgs']]:
226
226
  """
227
- For a schedule that runs weekly on a specific day and time.
227
+ For a schedule that runs weekly on a specific day.
228
228
  Structure is documented below.
229
229
  """
230
230
  return pulumi.get(self, "weekly_recurrence")
@@ -334,7 +334,7 @@ class BackupSchedule(pulumi.CustomResource):
334
334
 
335
335
  :param str resource_name: The name of the resource.
336
336
  :param pulumi.ResourceOptions opts: Options for the resource.
337
- :param pulumi.Input[pulumi.InputType['BackupScheduleDailyRecurrenceArgs']] daily_recurrence: For a schedule that runs daily at a specified time.
337
+ :param pulumi.Input[pulumi.InputType['BackupScheduleDailyRecurrenceArgs']] daily_recurrence: For a schedule that runs daily.
338
338
  :param pulumi.Input[str] database: The Firestore database id. Defaults to `"(default)"`.
339
339
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
340
340
  If it is not provided, the provider project is used.
@@ -344,7 +344,7 @@ class BackupSchedule(pulumi.CustomResource):
344
344
 
345
345
 
346
346
  - - -
347
- :param pulumi.Input[pulumi.InputType['BackupScheduleWeeklyRecurrenceArgs']] weekly_recurrence: For a schedule that runs weekly on a specific day and time.
347
+ :param pulumi.Input[pulumi.InputType['BackupScheduleWeeklyRecurrenceArgs']] weekly_recurrence: For a schedule that runs weekly on a specific day.
348
348
  Structure is documented below.
349
349
  """
350
350
  ...
@@ -500,7 +500,7 @@ class BackupSchedule(pulumi.CustomResource):
500
500
  :param str resource_name: The unique name of the resulting resource.
501
501
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
502
502
  :param pulumi.ResourceOptions opts: Options for the resource.
503
- :param pulumi.Input[pulumi.InputType['BackupScheduleDailyRecurrenceArgs']] daily_recurrence: For a schedule that runs daily at a specified time.
503
+ :param pulumi.Input[pulumi.InputType['BackupScheduleDailyRecurrenceArgs']] daily_recurrence: For a schedule that runs daily.
504
504
  :param pulumi.Input[str] database: The Firestore database id. Defaults to `"(default)"`.
505
505
  :param pulumi.Input[str] name: The unique backup schedule identifier across all locations and databases for the given project. Format:
506
506
  `projects/{{project}}/databases/{{database}}/backupSchedules/{{backupSchedule}}`
@@ -512,7 +512,7 @@ class BackupSchedule(pulumi.CustomResource):
512
512
 
513
513
 
514
514
  - - -
515
- :param pulumi.Input[pulumi.InputType['BackupScheduleWeeklyRecurrenceArgs']] weekly_recurrence: For a schedule that runs weekly on a specific day and time.
515
+ :param pulumi.Input[pulumi.InputType['BackupScheduleWeeklyRecurrenceArgs']] weekly_recurrence: For a schedule that runs weekly on a specific day.
516
516
  Structure is documented below.
517
517
  """
518
518
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -531,7 +531,7 @@ class BackupSchedule(pulumi.CustomResource):
531
531
  @pulumi.getter(name="dailyRecurrence")
532
532
  def daily_recurrence(self) -> pulumi.Output[Optional['outputs.BackupScheduleDailyRecurrence']]:
533
533
  """
534
- For a schedule that runs daily at a specified time.
534
+ For a schedule that runs daily.
535
535
  """
536
536
  return pulumi.get(self, "daily_recurrence")
537
537
 
@@ -578,7 +578,7 @@ class BackupSchedule(pulumi.CustomResource):
578
578
  @pulumi.getter(name="weeklyRecurrence")
579
579
  def weekly_recurrence(self) -> pulumi.Output[Optional['outputs.BackupScheduleWeeklyRecurrence']]:
580
580
  """
581
- For a schedule that runs weekly on a specific day and time.
581
+ For a schedule that runs weekly on a specific day.
582
582
  Structure is documented below.
583
583
  """
584
584
  return pulumi.get(self, "weekly_recurrence")
@@ -320,7 +320,7 @@ class Field(pulumi.CustomResource):
320
320
  basic = gcp.firestore.Field("basic",
321
321
  project="my-project-name",
322
322
  database=database.name,
323
- collection="chatrooms__64336",
323
+ collection="chatrooms__34962",
324
324
  field="basic",
325
325
  index_config=gcp.firestore.FieldIndexConfigArgs(
326
326
  indexes=[
@@ -375,7 +375,7 @@ class Field(pulumi.CustomResource):
375
375
  match_override = gcp.firestore.Field("match_override",
376
376
  project="my-project-name",
377
377
  database=database.name,
378
- collection="chatrooms__34962",
378
+ collection="chatrooms__74000",
379
379
  field="field_with_same_configuration_as_ancestor",
380
380
  index_config=gcp.firestore.FieldIndexConfigArgs(
381
381
  indexes=[
@@ -464,7 +464,7 @@ class Field(pulumi.CustomResource):
464
464
  basic = gcp.firestore.Field("basic",
465
465
  project="my-project-name",
466
466
  database=database.name,
467
- collection="chatrooms__64336",
467
+ collection="chatrooms__34962",
468
468
  field="basic",
469
469
  index_config=gcp.firestore.FieldIndexConfigArgs(
470
470
  indexes=[
@@ -519,7 +519,7 @@ class Field(pulumi.CustomResource):
519
519
  match_override = gcp.firestore.Field("match_override",
520
520
  project="my-project-name",
521
521
  database=database.name,
522
- collection="chatrooms__34962",
522
+ collection="chatrooms__74000",
523
523
  field="field_with_same_configuration_as_ancestor",
524
524
  index_config=gcp.firestore.FieldIndexConfigArgs(
525
525
  indexes=[