pulumi-gcp 8.9.0a1731366299__py3-none-any.whl → 8.9.0a1731432418__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/activedirectory/domain.py +24 -0
  3. pulumi_gcp/apigee/__init__.py +1 -0
  4. pulumi_gcp/apigee/_inputs.py +74 -0
  5. pulumi_gcp/apigee/api.py +456 -0
  6. pulumi_gcp/apigee/outputs.py +65 -0
  7. pulumi_gcp/applicationintegration/auth_config.py +24 -0
  8. pulumi_gcp/backupdisasterrecovery/__init__.py +4 -0
  9. pulumi_gcp/backupdisasterrecovery/_inputs.py +533 -0
  10. pulumi_gcp/backupdisasterrecovery/backup_plan.py +653 -0
  11. pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +766 -0
  12. pulumi_gcp/backupdisasterrecovery/backup_vault.py +146 -6
  13. pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +204 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +243 -0
  15. pulumi_gcp/backupdisasterrecovery/outputs.py +702 -0
  16. pulumi_gcp/bigquery/data_transfer_config.py +24 -0
  17. pulumi_gcp/cloudrunv2/_inputs.py +46 -0
  18. pulumi_gcp/cloudrunv2/job.py +0 -2
  19. pulumi_gcp/cloudrunv2/outputs.py +60 -2
  20. pulumi_gcp/cloudrunv2/service.py +0 -2
  21. pulumi_gcp/compute/__init__.py +1 -0
  22. pulumi_gcp/compute/_inputs.py +2163 -256
  23. pulumi_gcp/compute/disk.py +7 -7
  24. pulumi_gcp/compute/firewall_policy_rule.py +108 -54
  25. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  26. pulumi_gcp/compute/health_check.py +42 -42
  27. pulumi_gcp/compute/network_firewall_policy_rule.py +4 -4
  28. pulumi_gcp/compute/network_firewall_policy_with_rules.py +10 -10
  29. pulumi_gcp/compute/node_template.py +95 -0
  30. pulumi_gcp/compute/outputs.py +1639 -213
  31. pulumi_gcp/compute/region_disk.py +7 -7
  32. pulumi_gcp/compute/region_health_check.py +42 -42
  33. pulumi_gcp/compute/region_instance_group_manager.py +54 -14
  34. pulumi_gcp/compute/region_network_firewall_policy_rule.py +4 -4
  35. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +10 -10
  36. pulumi_gcp/compute/region_resize_request.py +772 -0
  37. pulumi_gcp/compute/region_security_policy.py +120 -0
  38. pulumi_gcp/compute/region_security_policy_rule.py +6 -6
  39. pulumi_gcp/compute/router_peer.py +56 -35
  40. pulumi_gcp/compute/security_scan_config.py +8 -8
  41. pulumi_gcp/config/__init__.pyi +4 -0
  42. pulumi_gcp/config/vars.py +8 -0
  43. pulumi_gcp/container/_inputs.py +345 -10
  44. pulumi_gcp/container/cluster.py +101 -0
  45. pulumi_gcp/container/get_cluster.py +23 -1
  46. pulumi_gcp/container/outputs.py +456 -8
  47. pulumi_gcp/dataloss/prevention_discovery_config.py +7 -7
  48. pulumi_gcp/dataproc/__init__.py +2 -0
  49. pulumi_gcp/dataproc/_inputs.py +101 -0
  50. pulumi_gcp/dataproc/gdc_application_environment.py +931 -0
  51. pulumi_gcp/dataproc/gdc_service_instance.py +1022 -0
  52. pulumi_gcp/dataproc/outputs.py +94 -0
  53. pulumi_gcp/edgecontainer/vpn_connection.py +4 -4
  54. pulumi_gcp/firebase/android_app.py +2 -2
  55. pulumi_gcp/firebase/apple_app.py +2 -2
  56. pulumi_gcp/firebase/web_app.py +2 -2
  57. pulumi_gcp/firestore/index.py +44 -0
  58. pulumi_gcp/gkeonprem/_inputs.py +15 -15
  59. pulumi_gcp/gkeonprem/outputs.py +10 -10
  60. pulumi_gcp/healthcare/dataset.py +7 -7
  61. pulumi_gcp/healthcare/dicom_store.py +7 -7
  62. pulumi_gcp/healthcare/fhir_store.py +7 -7
  63. pulumi_gcp/healthcare/hl7_store.py +14 -14
  64. pulumi_gcp/iam/__init__.py +1 -0
  65. pulumi_gcp/iam/_inputs.py +161 -0
  66. pulumi_gcp/iam/outputs.py +114 -0
  67. pulumi_gcp/iam/principal_access_boundary_policy.py +679 -0
  68. pulumi_gcp/logging/metric.py +2 -2
  69. pulumi_gcp/looker/_inputs.py +6 -0
  70. pulumi_gcp/looker/instance.py +169 -321
  71. pulumi_gcp/looker/outputs.py +4 -0
  72. pulumi_gcp/memorystore/instance.py +4 -0
  73. pulumi_gcp/monitoring/alert_policy.py +24 -0
  74. pulumi_gcp/monitoring/custom_service.py +24 -0
  75. pulumi_gcp/monitoring/group.py +24 -0
  76. pulumi_gcp/monitoring/metric_descriptor.py +24 -0
  77. pulumi_gcp/monitoring/slo.py +24 -0
  78. pulumi_gcp/monitoring/uptime_check_config.py +24 -0
  79. pulumi_gcp/networkmanagement/__init__.py +1 -0
  80. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +1358 -0
  81. pulumi_gcp/osconfig/patch_deployment.py +8 -8
  82. pulumi_gcp/provider.py +40 -0
  83. pulumi_gcp/pulumi-plugin.json +1 -1
  84. pulumi_gcp/redis/_inputs.py +3 -3
  85. pulumi_gcp/redis/outputs.py +2 -2
  86. pulumi_gcp/securitycenter/notification_config.py +4 -16
  87. pulumi_gcp/securitycenter/project_notification_config.py +0 -24
  88. pulumi_gcp/securitycenter/v2_organization_notification_config.py +4 -16
  89. pulumi_gcp/spanner/__init__.py +1 -0
  90. pulumi_gcp/spanner/_inputs.py +9 -9
  91. pulumi_gcp/spanner/get_database.py +229 -0
  92. pulumi_gcp/spanner/get_instance.py +12 -1
  93. pulumi_gcp/spanner/instance.py +70 -0
  94. pulumi_gcp/spanner/outputs.py +46 -12
  95. pulumi_gcp/sql/_inputs.py +26 -0
  96. pulumi_gcp/sql/database_instance.py +124 -11
  97. pulumi_gcp/sql/get_database_instance.py +12 -1
  98. pulumi_gcp/sql/outputs.py +51 -0
  99. pulumi_gcp/storage/_inputs.py +3 -3
  100. pulumi_gcp/storage/outputs.py +2 -2
  101. pulumi_gcp/tags/tag_binding.py +4 -4
  102. pulumi_gcp/tags/tag_value.py +2 -2
  103. pulumi_gcp/transcoder/job.py +24 -0
  104. pulumi_gcp/vertex/_inputs.py +184 -0
  105. pulumi_gcp/vertex/ai_endpoint.py +394 -8
  106. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  107. pulumi_gcp/vertex/outputs.py +166 -0
  108. pulumi_gcp/workbench/instance.py +21 -7
  109. pulumi_gcp/workflows/workflow.py +36 -0
  110. pulumi_gcp/workstations/workstation_config.py +8 -8
  111. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/METADATA +1 -1
  112. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/RECORD +114 -103
  113. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/WHEEL +0 -0
  114. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/top_level.txt +0 -0
@@ -798,10 +798,22 @@ class DataTransferConfig(pulumi.CustomResource):
798
798
 
799
799
  Config can be imported using any of these accepted formats:
800
800
 
801
+ * `{{project}}/{{name}}`
802
+
803
+ * `{{project}} {{name}}`
804
+
801
805
  * `{{name}}`
802
806
 
803
807
  When using the `pulumi import` command, Config can be imported using one of the formats above. For example:
804
808
 
809
+ ```sh
810
+ $ pulumi import gcp:bigquery/dataTransferConfig:DataTransferConfig default {{project}}/{{name}}
811
+ ```
812
+
813
+ ```sh
814
+ $ pulumi import gcp:bigquery/dataTransferConfig:DataTransferConfig default "{{project}} {{name}}"
815
+ ```
816
+
805
817
  ```sh
806
818
  $ pulumi import gcp:bigquery/dataTransferConfig:DataTransferConfig default {{name}}
807
819
  ```
@@ -973,10 +985,22 @@ class DataTransferConfig(pulumi.CustomResource):
973
985
 
974
986
  Config can be imported using any of these accepted formats:
975
987
 
988
+ * `{{project}}/{{name}}`
989
+
990
+ * `{{project}} {{name}}`
991
+
976
992
  * `{{name}}`
977
993
 
978
994
  When using the `pulumi import` command, Config can be imported using one of the formats above. For example:
979
995
 
996
+ ```sh
997
+ $ pulumi import gcp:bigquery/dataTransferConfig:DataTransferConfig default {{project}}/{{name}}
998
+ ```
999
+
1000
+ ```sh
1001
+ $ pulumi import gcp:bigquery/dataTransferConfig:DataTransferConfig default "{{project}} {{name}}"
1002
+ ```
1003
+
980
1004
  ```sh
981
1005
  $ pulumi import gcp:bigquery/dataTransferConfig:DataTransferConfig default {{name}}
982
1006
  ```
@@ -1655,6 +1655,11 @@ if not MYPY:
1655
1655
  """
1656
1656
  Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
1657
1657
  """
1658
+ mount_options: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1659
+ """
1660
+ A list of flags to pass to the gcsfuse command for configuring this volume.
1661
+ Flags should be passed without leading dashes.
1662
+ """
1658
1663
  read_only: NotRequired[pulumi.Input[bool]]
1659
1664
  """
1660
1665
  If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
@@ -1666,12 +1671,17 @@ elif False:
1666
1671
  class JobTemplateTemplateVolumeGcsArgs:
1667
1672
  def __init__(__self__, *,
1668
1673
  bucket: pulumi.Input[str],
1674
+ mount_options: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1669
1675
  read_only: Optional[pulumi.Input[bool]] = None):
1670
1676
  """
1671
1677
  :param pulumi.Input[str] bucket: Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
1678
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] mount_options: A list of flags to pass to the gcsfuse command for configuring this volume.
1679
+ Flags should be passed without leading dashes.
1672
1680
  :param pulumi.Input[bool] read_only: If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
1673
1681
  """
1674
1682
  pulumi.set(__self__, "bucket", bucket)
1683
+ if mount_options is not None:
1684
+ pulumi.set(__self__, "mount_options", mount_options)
1675
1685
  if read_only is not None:
1676
1686
  pulumi.set(__self__, "read_only", read_only)
1677
1687
 
@@ -1687,6 +1697,19 @@ class JobTemplateTemplateVolumeGcsArgs:
1687
1697
  def bucket(self, value: pulumi.Input[str]):
1688
1698
  pulumi.set(self, "bucket", value)
1689
1699
 
1700
+ @property
1701
+ @pulumi.getter(name="mountOptions")
1702
+ def mount_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1703
+ """
1704
+ A list of flags to pass to the gcsfuse command for configuring this volume.
1705
+ Flags should be passed without leading dashes.
1706
+ """
1707
+ return pulumi.get(self, "mount_options")
1708
+
1709
+ @mount_options.setter
1710
+ def mount_options(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1711
+ pulumi.set(self, "mount_options", value)
1712
+
1690
1713
  @property
1691
1714
  @pulumi.getter(name="readOnly")
1692
1715
  def read_only(self) -> Optional[pulumi.Input[bool]]:
@@ -4779,6 +4802,11 @@ if not MYPY:
4779
4802
  """
4780
4803
  GCS Bucket name
4781
4804
  """
4805
+ mount_options: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
4806
+ """
4807
+ A list of flags to pass to the gcsfuse command for configuring this volume.
4808
+ Flags should be passed without leading dashes.
4809
+ """
4782
4810
  read_only: NotRequired[pulumi.Input[bool]]
4783
4811
  """
4784
4812
  If true, mount the GCS bucket as read-only
@@ -4790,12 +4818,17 @@ elif False:
4790
4818
  class ServiceTemplateVolumeGcsArgs:
4791
4819
  def __init__(__self__, *,
4792
4820
  bucket: pulumi.Input[str],
4821
+ mount_options: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4793
4822
  read_only: Optional[pulumi.Input[bool]] = None):
4794
4823
  """
4795
4824
  :param pulumi.Input[str] bucket: GCS Bucket name
4825
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] mount_options: A list of flags to pass to the gcsfuse command for configuring this volume.
4826
+ Flags should be passed without leading dashes.
4796
4827
  :param pulumi.Input[bool] read_only: If true, mount the GCS bucket as read-only
4797
4828
  """
4798
4829
  pulumi.set(__self__, "bucket", bucket)
4830
+ if mount_options is not None:
4831
+ pulumi.set(__self__, "mount_options", mount_options)
4799
4832
  if read_only is not None:
4800
4833
  pulumi.set(__self__, "read_only", read_only)
4801
4834
 
@@ -4811,6 +4844,19 @@ class ServiceTemplateVolumeGcsArgs:
4811
4844
  def bucket(self, value: pulumi.Input[str]):
4812
4845
  pulumi.set(self, "bucket", value)
4813
4846
 
4847
+ @property
4848
+ @pulumi.getter(name="mountOptions")
4849
+ def mount_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
4850
+ """
4851
+ A list of flags to pass to the gcsfuse command for configuring this volume.
4852
+ Flags should be passed without leading dashes.
4853
+ """
4854
+ return pulumi.get(self, "mount_options")
4855
+
4856
+ @mount_options.setter
4857
+ def mount_options(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4858
+ pulumi.set(self, "mount_options", value)
4859
+
4814
4860
  @property
4815
4861
  @pulumi.getter(name="readOnly")
4816
4862
  def read_only(self) -> Optional[pulumi.Input[bool]]:
@@ -1086,7 +1086,6 @@ class Job(pulumi.CustomResource):
1086
1086
  name="cloudrun-job",
1087
1087
  location="us-central1",
1088
1088
  deletion_protection=False,
1089
- launch_stage="BETA",
1090
1089
  template={
1091
1090
  "template": {
1092
1091
  "containers": [{
@@ -1440,7 +1439,6 @@ class Job(pulumi.CustomResource):
1440
1439
  name="cloudrun-job",
1441
1440
  location="us-central1",
1442
1441
  deletion_protection=False,
1443
- launch_stage="BETA",
1444
1442
  template={
1445
1443
  "template": {
1446
1444
  "containers": [{
@@ -1270,7 +1270,9 @@ class JobTemplateTemplateVolumeGcs(dict):
1270
1270
  @staticmethod
1271
1271
  def __key_warning(key: str):
1272
1272
  suggest = None
1273
- if key == "readOnly":
1273
+ if key == "mountOptions":
1274
+ suggest = "mount_options"
1275
+ elif key == "readOnly":
1274
1276
  suggest = "read_only"
1275
1277
 
1276
1278
  if suggest:
@@ -1286,12 +1288,17 @@ class JobTemplateTemplateVolumeGcs(dict):
1286
1288
 
1287
1289
  def __init__(__self__, *,
1288
1290
  bucket: str,
1291
+ mount_options: Optional[Sequence[str]] = None,
1289
1292
  read_only: Optional[bool] = None):
1290
1293
  """
1291
1294
  :param str bucket: Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
1295
+ :param Sequence[str] mount_options: A list of flags to pass to the gcsfuse command for configuring this volume.
1296
+ Flags should be passed without leading dashes.
1292
1297
  :param bool read_only: If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
1293
1298
  """
1294
1299
  pulumi.set(__self__, "bucket", bucket)
1300
+ if mount_options is not None:
1301
+ pulumi.set(__self__, "mount_options", mount_options)
1295
1302
  if read_only is not None:
1296
1303
  pulumi.set(__self__, "read_only", read_only)
1297
1304
 
@@ -1303,6 +1310,15 @@ class JobTemplateTemplateVolumeGcs(dict):
1303
1310
  """
1304
1311
  return pulumi.get(self, "bucket")
1305
1312
 
1313
+ @property
1314
+ @pulumi.getter(name="mountOptions")
1315
+ def mount_options(self) -> Optional[Sequence[str]]:
1316
+ """
1317
+ A list of flags to pass to the gcsfuse command for configuring this volume.
1318
+ Flags should be passed without leading dashes.
1319
+ """
1320
+ return pulumi.get(self, "mount_options")
1321
+
1306
1322
  @property
1307
1323
  @pulumi.getter(name="readOnly")
1308
1324
  def read_only(self) -> Optional[bool]:
@@ -3577,7 +3593,9 @@ class ServiceTemplateVolumeGcs(dict):
3577
3593
  @staticmethod
3578
3594
  def __key_warning(key: str):
3579
3595
  suggest = None
3580
- if key == "readOnly":
3596
+ if key == "mountOptions":
3597
+ suggest = "mount_options"
3598
+ elif key == "readOnly":
3581
3599
  suggest = "read_only"
3582
3600
 
3583
3601
  if suggest:
@@ -3593,12 +3611,17 @@ class ServiceTemplateVolumeGcs(dict):
3593
3611
 
3594
3612
  def __init__(__self__, *,
3595
3613
  bucket: str,
3614
+ mount_options: Optional[Sequence[str]] = None,
3596
3615
  read_only: Optional[bool] = None):
3597
3616
  """
3598
3617
  :param str bucket: GCS Bucket name
3618
+ :param Sequence[str] mount_options: A list of flags to pass to the gcsfuse command for configuring this volume.
3619
+ Flags should be passed without leading dashes.
3599
3620
  :param bool read_only: If true, mount the GCS bucket as read-only
3600
3621
  """
3601
3622
  pulumi.set(__self__, "bucket", bucket)
3623
+ if mount_options is not None:
3624
+ pulumi.set(__self__, "mount_options", mount_options)
3602
3625
  if read_only is not None:
3603
3626
  pulumi.set(__self__, "read_only", read_only)
3604
3627
 
@@ -3610,6 +3633,15 @@ class ServiceTemplateVolumeGcs(dict):
3610
3633
  """
3611
3634
  return pulumi.get(self, "bucket")
3612
3635
 
3636
+ @property
3637
+ @pulumi.getter(name="mountOptions")
3638
+ def mount_options(self) -> Optional[Sequence[str]]:
3639
+ """
3640
+ A list of flags to pass to the gcsfuse command for configuring this volume.
3641
+ Flags should be passed without leading dashes.
3642
+ """
3643
+ return pulumi.get(self, "mount_options")
3644
+
3613
3645
  @property
3614
3646
  @pulumi.getter(name="readOnly")
3615
3647
  def read_only(self) -> Optional[bool]:
@@ -4936,12 +4968,16 @@ class GetJobTemplateTemplateVolumeEmptyDirResult(dict):
4936
4968
  class GetJobTemplateTemplateVolumeGcResult(dict):
4937
4969
  def __init__(__self__, *,
4938
4970
  bucket: str,
4971
+ mount_options: Sequence[str],
4939
4972
  read_only: bool):
4940
4973
  """
4941
4974
  :param str bucket: Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
4975
+ :param Sequence[str] mount_options: A list of flags to pass to the gcsfuse command for configuring this volume.
4976
+ Flags should be passed without leading dashes.
4942
4977
  :param bool read_only: If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
4943
4978
  """
4944
4979
  pulumi.set(__self__, "bucket", bucket)
4980
+ pulumi.set(__self__, "mount_options", mount_options)
4945
4981
  pulumi.set(__self__, "read_only", read_only)
4946
4982
 
4947
4983
  @property
@@ -4952,6 +4988,15 @@ class GetJobTemplateTemplateVolumeGcResult(dict):
4952
4988
  """
4953
4989
  return pulumi.get(self, "bucket")
4954
4990
 
4991
+ @property
4992
+ @pulumi.getter(name="mountOptions")
4993
+ def mount_options(self) -> Sequence[str]:
4994
+ """
4995
+ A list of flags to pass to the gcsfuse command for configuring this volume.
4996
+ Flags should be passed without leading dashes.
4997
+ """
4998
+ return pulumi.get(self, "mount_options")
4999
+
4955
5000
  @property
4956
5001
  @pulumi.getter(name="readOnly")
4957
5002
  def read_only(self) -> bool:
@@ -6562,12 +6607,16 @@ class GetServiceTemplateVolumeEmptyDirResult(dict):
6562
6607
  class GetServiceTemplateVolumeGcResult(dict):
6563
6608
  def __init__(__self__, *,
6564
6609
  bucket: str,
6610
+ mount_options: Sequence[str],
6565
6611
  read_only: bool):
6566
6612
  """
6567
6613
  :param str bucket: GCS Bucket name
6614
+ :param Sequence[str] mount_options: A list of flags to pass to the gcsfuse command for configuring this volume.
6615
+ Flags should be passed without leading dashes.
6568
6616
  :param bool read_only: If true, mount the GCS bucket as read-only
6569
6617
  """
6570
6618
  pulumi.set(__self__, "bucket", bucket)
6619
+ pulumi.set(__self__, "mount_options", mount_options)
6571
6620
  pulumi.set(__self__, "read_only", read_only)
6572
6621
 
6573
6622
  @property
@@ -6578,6 +6627,15 @@ class GetServiceTemplateVolumeGcResult(dict):
6578
6627
  """
6579
6628
  return pulumi.get(self, "bucket")
6580
6629
 
6630
+ @property
6631
+ @pulumi.getter(name="mountOptions")
6632
+ def mount_options(self) -> Sequence[str]:
6633
+ """
6634
+ A list of flags to pass to the gcsfuse command for configuring this volume.
6635
+ Flags should be passed without leading dashes.
6636
+ """
6637
+ return pulumi.get(self, "mount_options")
6638
+
6581
6639
  @property
6582
6640
  @pulumi.getter(name="readOnly")
6583
6641
  def read_only(self) -> bool:
@@ -1355,7 +1355,6 @@ class Service(pulumi.CustomResource):
1355
1355
  name="cloudrun-service",
1356
1356
  location="us-central1",
1357
1357
  deletion_protection=False,
1358
- launch_stage="BETA",
1359
1358
  ingress="INGRESS_TRAFFIC_ALL",
1360
1359
  template={
1361
1360
  "containers": [
@@ -1899,7 +1898,6 @@ class Service(pulumi.CustomResource):
1899
1898
  name="cloudrun-service",
1900
1899
  location="us-central1",
1901
1900
  deletion_protection=False,
1902
- launch_stage="BETA",
1903
1901
  ingress="INGRESS_TRAFFIC_ALL",
1904
1902
  template={
1905
1903
  "containers": [
@@ -167,6 +167,7 @@ from .region_network_firewall_policy_association import *
167
167
  from .region_network_firewall_policy_rule import *
168
168
  from .region_network_firewall_policy_with_rules import *
169
169
  from .region_per_instance_config import *
170
+ from .region_resize_request import *
170
171
  from .region_security_policy import *
171
172
  from .region_security_policy_rule import *
172
173
  from .region_ssl_certificate import *