pulumi-gcp 7.16.0a1711520590__py3-none-any.whl → 7.17.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. pulumi_gcp/__init__.py +35 -0
  2. pulumi_gcp/accesscontextmanager/__init__.py +1 -0
  3. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +345 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +80 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +86 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +4 -2
  7. pulumi_gcp/apphub/__init__.py +1 -0
  8. pulumi_gcp/apphub/get_application.py +220 -0
  9. pulumi_gcp/apphub/outputs.py +214 -0
  10. pulumi_gcp/applicationintegration/__init__.py +10 -0
  11. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  12. pulumi_gcp/applicationintegration/client.py +566 -0
  13. pulumi_gcp/applicationintegration/outputs.py +122 -0
  14. pulumi_gcp/bigquery/_inputs.py +16 -0
  15. pulumi_gcp/bigquery/outputs.py +14 -0
  16. pulumi_gcp/bigquery/routine.py +98 -0
  17. pulumi_gcp/bigtable/_inputs.py +4 -4
  18. pulumi_gcp/bigtable/gc_policy.py +8 -0
  19. pulumi_gcp/bigtable/outputs.py +4 -4
  20. pulumi_gcp/billing/_inputs.py +4 -4
  21. pulumi_gcp/billing/outputs.py +4 -4
  22. pulumi_gcp/billing/project_info.py +4 -4
  23. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  24. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  25. pulumi_gcp/cloudquota/__init__.py +3 -0
  26. pulumi_gcp/cloudquota/_inputs.py +131 -0
  27. pulumi_gcp/cloudquota/get_s_quota_infos.py +136 -0
  28. pulumi_gcp/cloudquota/outputs.py +388 -0
  29. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  30. pulumi_gcp/cloudrunv2/_inputs.py +59 -2
  31. pulumi_gcp/cloudrunv2/outputs.py +107 -4
  32. pulumi_gcp/cloudrunv2/service.py +13 -13
  33. pulumi_gcp/composer/_inputs.py +30 -4
  34. pulumi_gcp/composer/outputs.py +45 -10
  35. pulumi_gcp/compute/_inputs.py +145 -51
  36. pulumi_gcp/compute/autoscaler.py +14 -14
  37. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  38. pulumi_gcp/compute/network_endpoint.py +8 -0
  39. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  40. pulumi_gcp/compute/outputs.py +202 -69
  41. pulumi_gcp/compute/region_autoscaler.py +14 -14
  42. pulumi_gcp/compute/region_backend_service.py +28 -0
  43. pulumi_gcp/compute/region_url_map.py +152 -0
  44. pulumi_gcp/compute/target_instance.py +4 -4
  45. pulumi_gcp/config/__init__.pyi +2 -0
  46. pulumi_gcp/config/vars.py +4 -0
  47. pulumi_gcp/container/_inputs.py +148 -16
  48. pulumi_gcp/container/outputs.py +148 -16
  49. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  50. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  51. pulumi_gcp/dataform/repository.py +4 -74
  52. pulumi_gcp/dataloss/_inputs.py +6 -6
  53. pulumi_gcp/dataloss/outputs.py +6 -6
  54. pulumi_gcp/dataplex/task.py +16 -16
  55. pulumi_gcp/dataproc/_inputs.py +85 -10
  56. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  57. pulumi_gcp/dataproc/metastore_service.py +120 -0
  58. pulumi_gcp/dataproc/outputs.py +142 -10
  59. pulumi_gcp/firebase/android_app.py +41 -40
  60. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  61. pulumi_gcp/firestore/backup_schedule.py +14 -14
  62. pulumi_gcp/firestore/field.py +4 -4
  63. pulumi_gcp/firestore/index.py +34 -48
  64. pulumi_gcp/gkehub/membership_binding.py +6 -6
  65. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  66. pulumi_gcp/gkehub/namespace.py +4 -4
  67. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  68. pulumi_gcp/iam/_inputs.py +76 -0
  69. pulumi_gcp/iam/outputs.py +76 -0
  70. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  71. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  72. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  73. pulumi_gcp/kms/_inputs.py +46 -0
  74. pulumi_gcp/kms/crypto_key.py +54 -0
  75. pulumi_gcp/kms/crypto_key_version.py +54 -0
  76. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  77. pulumi_gcp/kms/outputs.py +54 -0
  78. pulumi_gcp/logging/_inputs.py +8 -8
  79. pulumi_gcp/logging/metric.py +7 -7
  80. pulumi_gcp/logging/outputs.py +8 -8
  81. pulumi_gcp/monitoring/_inputs.py +4 -2
  82. pulumi_gcp/monitoring/outputs.py +4 -2
  83. pulumi_gcp/monitoring/slo.py +4 -4
  84. pulumi_gcp/networksecurity/firewall_endpoint.py +48 -0
  85. pulumi_gcp/networkservices/_inputs.py +6 -6
  86. pulumi_gcp/networkservices/outputs.py +6 -6
  87. pulumi_gcp/orgpolicy/policy.py +2 -2
  88. pulumi_gcp/provider.py +20 -0
  89. pulumi_gcp/pubsub/_inputs.py +108 -0
  90. pulumi_gcp/pubsub/get_topic.py +11 -1
  91. pulumi_gcp/pubsub/outputs.py +213 -0
  92. pulumi_gcp/pubsub/subscription.py +4 -4
  93. pulumi_gcp/pubsub/topic.py +92 -0
  94. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  95. pulumi_gcp/sql/_inputs.py +20 -2
  96. pulumi_gcp/sql/database_instance.py +2 -2
  97. pulumi_gcp/sql/outputs.py +20 -2
  98. pulumi_gcp/storage/_inputs.py +42 -2
  99. pulumi_gcp/storage/bucket.py +54 -0
  100. pulumi_gcp/storage/get_bucket.py +11 -1
  101. pulumi_gcp/storage/outputs.py +83 -2
  102. pulumi_gcp/vertex/__init__.py +1 -0
  103. pulumi_gcp/vertex/_inputs.py +175 -8
  104. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  105. pulumi_gcp/vertex/outputs.py +202 -10
  106. pulumi_gcp/vpcaccess/connector.py +77 -28
  107. pulumi_gcp/workstations/_inputs.py +113 -0
  108. pulumi_gcp/workstations/outputs.py +109 -1
  109. pulumi_gcp/workstations/workstation_config.py +106 -0
  110. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/METADATA +1 -1
  111. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/RECORD +113 -103
  112. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/WHEEL +0 -0
  113. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.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__, *,
@@ -15,15 +15,17 @@ __all__ = ['AndroidAppArgs', 'AndroidApp']
15
15
  class AndroidAppArgs:
16
16
  def __init__(__self__, *,
17
17
  display_name: pulumi.Input[str],
18
+ package_name: pulumi.Input[str],
18
19
  api_key_id: Optional[pulumi.Input[str]] = None,
19
20
  deletion_policy: Optional[pulumi.Input[str]] = None,
20
- package_name: Optional[pulumi.Input[str]] = None,
21
21
  project: Optional[pulumi.Input[str]] = None,
22
22
  sha1_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
23
23
  sha256_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
24
24
  """
25
25
  The set of arguments for constructing a AndroidApp resource.
26
26
  :param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
27
+ :param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
28
+ Developer Console.
27
29
 
28
30
 
29
31
  - - -
@@ -33,20 +35,17 @@ class AndroidAppArgs:
33
35
  :param pulumi.Input[str] deletion_policy: (Optional) Set to 'ABANDON' to allow the AndroidApp to be untracked from terraform state rather than deleted upon
34
36
  'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
35
37
  AndroidApp. Defaults to 'DELETE'.
36
- :param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
37
- Developer Console.
38
38
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
39
39
  If it is not provided, the provider project is used.
40
40
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
41
41
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sha256_hashes: The SHA256 certificate hashes for the AndroidApp.
42
42
  """
43
43
  pulumi.set(__self__, "display_name", display_name)
44
+ pulumi.set(__self__, "package_name", package_name)
44
45
  if api_key_id is not None:
45
46
  pulumi.set(__self__, "api_key_id", api_key_id)
46
47
  if deletion_policy is not None:
47
48
  pulumi.set(__self__, "deletion_policy", deletion_policy)
48
- if package_name is not None:
49
- pulumi.set(__self__, "package_name", package_name)
50
49
  if project is not None:
51
50
  pulumi.set(__self__, "project", project)
52
51
  if sha1_hashes is not None:
@@ -59,9 +58,6 @@ class AndroidAppArgs:
59
58
  def display_name(self) -> pulumi.Input[str]:
60
59
  """
61
60
  The user-assigned display name of the AndroidApp.
62
-
63
-
64
- - - -
65
61
  """
66
62
  return pulumi.get(self, "display_name")
67
63
 
@@ -69,6 +65,22 @@ class AndroidAppArgs:
69
65
  def display_name(self, value: pulumi.Input[str]):
70
66
  pulumi.set(self, "display_name", value)
71
67
 
68
+ @property
69
+ @pulumi.getter(name="packageName")
70
+ def package_name(self) -> pulumi.Input[str]:
71
+ """
72
+ The canonical package name of the Android app as would appear in the Google Play
73
+ Developer Console.
74
+
75
+
76
+ - - -
77
+ """
78
+ return pulumi.get(self, "package_name")
79
+
80
+ @package_name.setter
81
+ def package_name(self, value: pulumi.Input[str]):
82
+ pulumi.set(self, "package_name", value)
83
+
72
84
  @property
73
85
  @pulumi.getter(name="apiKeyId")
74
86
  def api_key_id(self) -> Optional[pulumi.Input[str]]:
@@ -97,19 +109,6 @@ class AndroidAppArgs:
97
109
  def deletion_policy(self, value: Optional[pulumi.Input[str]]):
98
110
  pulumi.set(self, "deletion_policy", value)
99
111
 
100
- @property
101
- @pulumi.getter(name="packageName")
102
- def package_name(self) -> Optional[pulumi.Input[str]]:
103
- """
104
- Immutable. The canonical package name of the Android app as would appear in the Google Play
105
- Developer Console.
106
- """
107
- return pulumi.get(self, "package_name")
108
-
109
- @package_name.setter
110
- def package_name(self, value: Optional[pulumi.Input[str]]):
111
- pulumi.set(self, "package_name", value)
112
-
113
112
  @property
114
113
  @pulumi.getter
115
114
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -172,15 +171,15 @@ class _AndroidAppState:
172
171
  'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
173
172
  AndroidApp. Defaults to 'DELETE'.
174
173
  :param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
175
-
176
-
177
- - - -
178
174
  :param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and it may be sent
179
175
  with update requests to ensure the client has an up-to-date value before proceeding.
180
176
  :param pulumi.Input[str] name: The fully qualified resource name of the AndroidApp, for example:
181
177
  projects/projectId/androidApps/appId
182
- :param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
178
+ :param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
183
179
  Developer Console.
180
+
181
+
182
+ - - -
184
183
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
185
184
  If it is not provided, the provider project is used.
186
185
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
@@ -253,9 +252,6 @@ class _AndroidAppState:
253
252
  def display_name(self) -> Optional[pulumi.Input[str]]:
254
253
  """
255
254
  The user-assigned display name of the AndroidApp.
256
-
257
-
258
- - - -
259
255
  """
260
256
  return pulumi.get(self, "display_name")
261
257
 
@@ -293,8 +289,11 @@ class _AndroidAppState:
293
289
  @pulumi.getter(name="packageName")
294
290
  def package_name(self) -> Optional[pulumi.Input[str]]:
295
291
  """
296
- Immutable. The canonical package name of the Android app as would appear in the Google Play
292
+ The canonical package name of the Android app as would appear in the Google Play
297
293
  Developer Console.
294
+
295
+
296
+ - - -
298
297
  """
299
298
  return pulumi.get(self, "package_name")
300
299
 
@@ -445,11 +444,11 @@ class AndroidApp(pulumi.CustomResource):
445
444
  'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
446
445
  AndroidApp. Defaults to 'DELETE'.
447
446
  :param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
447
+ :param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
448
+ Developer Console.
448
449
 
449
450
 
450
451
  - - -
451
- :param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
452
- Developer Console.
453
452
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
454
453
  If it is not provided, the provider project is used.
455
454
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
@@ -580,6 +579,8 @@ class AndroidApp(pulumi.CustomResource):
580
579
  if display_name is None and not opts.urn:
581
580
  raise TypeError("Missing required property 'display_name'")
582
581
  __props__.__dict__["display_name"] = display_name
582
+ if package_name is None and not opts.urn:
583
+ raise TypeError("Missing required property 'package_name'")
583
584
  __props__.__dict__["package_name"] = package_name
584
585
  __props__.__dict__["project"] = project
585
586
  __props__.__dict__["sha1_hashes"] = sha1_hashes
@@ -623,15 +624,15 @@ class AndroidApp(pulumi.CustomResource):
623
624
  'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
624
625
  AndroidApp. Defaults to 'DELETE'.
625
626
  :param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
626
-
627
-
628
- - - -
629
627
  :param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and it may be sent
630
628
  with update requests to ensure the client has an up-to-date value before proceeding.
631
629
  :param pulumi.Input[str] name: The fully qualified resource name of the AndroidApp, for example:
632
630
  projects/projectId/androidApps/appId
633
- :param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
631
+ :param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
634
632
  Developer Console.
633
+
634
+
635
+ - - -
635
636
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
636
637
  If it is not provided, the provider project is used.
637
638
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
@@ -687,9 +688,6 @@ class AndroidApp(pulumi.CustomResource):
687
688
  def display_name(self) -> pulumi.Output[str]:
688
689
  """
689
690
  The user-assigned display name of the AndroidApp.
690
-
691
-
692
- - - -
693
691
  """
694
692
  return pulumi.get(self, "display_name")
695
693
 
@@ -713,10 +711,13 @@ class AndroidApp(pulumi.CustomResource):
713
711
 
714
712
  @property
715
713
  @pulumi.getter(name="packageName")
716
- def package_name(self) -> pulumi.Output[Optional[str]]:
714
+ def package_name(self) -> pulumi.Output[str]:
717
715
  """
718
- Immutable. The canonical package name of the Android app as would appear in the Google Play
716
+ The canonical package name of the Android app as would appear in the Google Play
719
717
  Developer Console.
718
+
719
+
720
+ - - -
720
721
  """
721
722
  return pulumi.get(self, "package_name")
722
723