pulumi-gcp 8.0.0a1726253601__py3-none-any.whl → 8.1.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.
- pulumi_gcp/__init__.py +24 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/_inputs.py +129 -9
- pulumi_gcp/compute/get_instance.py +1 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +108 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -0
- pulumi_gcp/container/_inputs.py +140 -3
- pulumi_gcp/container/attached_cluster.py +7 -7
- pulumi_gcp/container/outputs.py +174 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +194 -7
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +7 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudbuild/_inputs.py
CHANGED
@@ -3961,11 +3961,11 @@ if not MYPY:
|
|
3961
3961
|
class WorkerPoolWorkerConfigArgsDict(TypedDict):
|
3962
3962
|
disk_size_gb: NotRequired[pulumi.Input[int]]
|
3963
3963
|
"""
|
3964
|
-
Size of the disk attached to the worker, in GB. See (https://cloud.google.com/
|
3964
|
+
Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
3965
3965
|
"""
|
3966
3966
|
machine_type: NotRequired[pulumi.Input[str]]
|
3967
3967
|
"""
|
3968
|
-
Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/
|
3968
|
+
Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
3969
3969
|
"""
|
3970
3970
|
no_external_ip: NotRequired[pulumi.Input[bool]]
|
3971
3971
|
"""
|
@@ -3981,8 +3981,8 @@ class WorkerPoolWorkerConfigArgs:
|
|
3981
3981
|
machine_type: Optional[pulumi.Input[str]] = None,
|
3982
3982
|
no_external_ip: Optional[pulumi.Input[bool]] = None):
|
3983
3983
|
"""
|
3984
|
-
:param pulumi.Input[int] disk_size_gb: Size of the disk attached to the worker, in GB. See (https://cloud.google.com/
|
3985
|
-
:param pulumi.Input[str] machine_type: Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/
|
3984
|
+
:param pulumi.Input[int] disk_size_gb: Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
3985
|
+
:param pulumi.Input[str] machine_type: Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
3986
3986
|
:param pulumi.Input[bool] no_external_ip: If true, workers are created without any public address, which prevents network egress to public IPs.
|
3987
3987
|
"""
|
3988
3988
|
if disk_size_gb is not None:
|
@@ -3996,7 +3996,7 @@ class WorkerPoolWorkerConfigArgs:
|
|
3996
3996
|
@pulumi.getter(name="diskSizeGb")
|
3997
3997
|
def disk_size_gb(self) -> Optional[pulumi.Input[int]]:
|
3998
3998
|
"""
|
3999
|
-
Size of the disk attached to the worker, in GB. See (https://cloud.google.com/
|
3999
|
+
Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
4000
4000
|
"""
|
4001
4001
|
return pulumi.get(self, "disk_size_gb")
|
4002
4002
|
|
@@ -4008,7 +4008,7 @@ class WorkerPoolWorkerConfigArgs:
|
|
4008
4008
|
@pulumi.getter(name="machineType")
|
4009
4009
|
def machine_type(self) -> Optional[pulumi.Input[str]]:
|
4010
4010
|
"""
|
4011
|
-
Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/
|
4011
|
+
Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
4012
4012
|
"""
|
4013
4013
|
return pulumi.get(self, "machine_type")
|
4014
4014
|
|
pulumi_gcp/cloudbuild/outputs.py
CHANGED
@@ -3036,8 +3036,8 @@ class WorkerPoolWorkerConfig(dict):
|
|
3036
3036
|
machine_type: Optional[str] = None,
|
3037
3037
|
no_external_ip: Optional[bool] = None):
|
3038
3038
|
"""
|
3039
|
-
:param int disk_size_gb: Size of the disk attached to the worker, in GB. See (https://cloud.google.com/
|
3040
|
-
:param str machine_type: Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/
|
3039
|
+
:param int disk_size_gb: Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
3040
|
+
:param str machine_type: Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
3041
3041
|
:param bool no_external_ip: If true, workers are created without any public address, which prevents network egress to public IPs.
|
3042
3042
|
"""
|
3043
3043
|
if disk_size_gb is not None:
|
@@ -3051,7 +3051,7 @@ class WorkerPoolWorkerConfig(dict):
|
|
3051
3051
|
@pulumi.getter(name="diskSizeGb")
|
3052
3052
|
def disk_size_gb(self) -> Optional[int]:
|
3053
3053
|
"""
|
3054
|
-
Size of the disk attached to the worker, in GB. See (https://cloud.google.com/
|
3054
|
+
Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
3055
3055
|
"""
|
3056
3056
|
return pulumi.get(self, "disk_size_gb")
|
3057
3057
|
|
@@ -3059,7 +3059,7 @@ class WorkerPoolWorkerConfig(dict):
|
|
3059
3059
|
@pulumi.getter(name="machineType")
|
3060
3060
|
def machine_type(self) -> Optional[str]:
|
3061
3061
|
"""
|
3062
|
-
Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/
|
3062
|
+
Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
3063
3063
|
"""
|
3064
3064
|
return pulumi.get(self, "machine_type")
|
3065
3065
|
|
pulumi_gcp/cloudrun/_inputs.py
CHANGED
@@ -3870,8 +3870,7 @@ if not MYPY:
|
|
3870
3870
|
nfs: NotRequired[pulumi.Input['ServiceTemplateSpecVolumeNfsArgsDict']]
|
3871
3871
|
"""
|
3872
3872
|
A filesystem backed by a Network File System share. This filesystem requires the
|
3873
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
3874
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
3873
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
3875
3874
|
Structure is documented below.
|
3876
3875
|
"""
|
3877
3876
|
secret: NotRequired[pulumi.Input['ServiceTemplateSpecVolumeSecretArgsDict']]
|
@@ -3899,8 +3898,7 @@ class ServiceTemplateSpecVolumeArgs:
|
|
3899
3898
|
:param pulumi.Input['ServiceTemplateSpecVolumeEmptyDirArgs'] empty_dir: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
|
3900
3899
|
Structure is documented below.
|
3901
3900
|
:param pulumi.Input['ServiceTemplateSpecVolumeNfsArgs'] nfs: A filesystem backed by a Network File System share. This filesystem requires the
|
3902
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
3903
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
3901
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
3904
3902
|
Structure is documented below.
|
3905
3903
|
:param pulumi.Input['ServiceTemplateSpecVolumeSecretArgs'] secret: The secret's value will be presented as the content of a file whose
|
3906
3904
|
name is defined in the item path. If no items are defined, the name of
|
@@ -3960,8 +3958,7 @@ class ServiceTemplateSpecVolumeArgs:
|
|
3960
3958
|
def nfs(self) -> Optional[pulumi.Input['ServiceTemplateSpecVolumeNfsArgs']]:
|
3961
3959
|
"""
|
3962
3960
|
A filesystem backed by a Network File System share. This filesystem requires the
|
3963
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
3964
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
3961
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
3965
3962
|
Structure is documented below.
|
3966
3963
|
"""
|
3967
3964
|
return pulumi.get(self, "nfs")
|
@@ -3992,8 +3989,7 @@ if not MYPY:
|
|
3992
3989
|
"""
|
3993
3990
|
Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
3994
3991
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
3995
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
3996
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
3992
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
3997
3993
|
"""
|
3998
3994
|
read_only: NotRequired[pulumi.Input[bool]]
|
3999
3995
|
"""
|
@@ -4017,8 +4013,7 @@ class ServiceTemplateSpecVolumeCsiArgs:
|
|
4017
4013
|
"""
|
4018
4014
|
:param pulumi.Input[str] driver: Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
4019
4015
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
4020
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
4021
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4016
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
4022
4017
|
:param pulumi.Input[bool] read_only: If true, all mounts created from this volume will be read-only.
|
4023
4018
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
|
4024
4019
|
* gcsfuse.run.googleapis.com
|
@@ -4036,8 +4031,7 @@ class ServiceTemplateSpecVolumeCsiArgs:
|
|
4036
4031
|
"""
|
4037
4032
|
Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
4038
4033
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
4039
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
4040
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4034
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
4041
4035
|
"""
|
4042
4036
|
return pulumi.get(self, "driver")
|
4043
4037
|
|
pulumi_gcp/cloudrun/outputs.py
CHANGED
@@ -2813,8 +2813,7 @@ class ServiceTemplateSpecVolume(dict):
|
|
2813
2813
|
:param 'ServiceTemplateSpecVolumeEmptyDirArgs' empty_dir: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
|
2814
2814
|
Structure is documented below.
|
2815
2815
|
:param 'ServiceTemplateSpecVolumeNfsArgs' nfs: A filesystem backed by a Network File System share. This filesystem requires the
|
2816
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
2817
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2816
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
2818
2817
|
Structure is documented below.
|
2819
2818
|
:param 'ServiceTemplateSpecVolumeSecretArgs' secret: The secret's value will be presented as the content of a file whose
|
2820
2819
|
name is defined in the item path. If no items are defined, the name of
|
@@ -2862,8 +2861,7 @@ class ServiceTemplateSpecVolume(dict):
|
|
2862
2861
|
def nfs(self) -> Optional['outputs.ServiceTemplateSpecVolumeNfs']:
|
2863
2862
|
"""
|
2864
2863
|
A filesystem backed by a Network File System share. This filesystem requires the
|
2865
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
2866
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2864
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
2867
2865
|
Structure is documented below.
|
2868
2866
|
"""
|
2869
2867
|
return pulumi.get(self, "nfs")
|
@@ -2908,8 +2906,7 @@ class ServiceTemplateSpecVolumeCsi(dict):
|
|
2908
2906
|
"""
|
2909
2907
|
:param str driver: Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
2910
2908
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
2911
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
2912
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2909
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
2913
2910
|
:param bool read_only: If true, all mounts created from this volume will be read-only.
|
2914
2911
|
:param Mapping[str, str] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
|
2915
2912
|
* gcsfuse.run.googleapis.com
|
@@ -2927,8 +2924,7 @@ class ServiceTemplateSpecVolumeCsi(dict):
|
|
2927
2924
|
"""
|
2928
2925
|
Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
2929
2926
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
2930
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
2931
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2927
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
2932
2928
|
"""
|
2933
2929
|
return pulumi.get(self, "driver")
|
2934
2930
|
|
@@ -4812,8 +4808,7 @@ class GetServiceTemplateSpecVolumeResult(dict):
|
|
4812
4808
|
:param Sequence['GetServiceTemplateSpecVolumeEmptyDirArgs'] empty_dirs: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
|
4813
4809
|
:param str name: The name of the Cloud Run Service.
|
4814
4810
|
:param Sequence['GetServiceTemplateSpecVolumeNfArgs'] nfs: A filesystem backed by a Network File System share. This filesystem requires the
|
4815
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
4816
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4811
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
4817
4812
|
:param Sequence['GetServiceTemplateSpecVolumeSecretArgs'] secrets: The secret's value will be presented as the content of a file whose
|
4818
4813
|
name is defined in the item path. If no items are defined, the name of
|
4819
4814
|
the file is the secret_name.
|
@@ -4853,8 +4848,7 @@ class GetServiceTemplateSpecVolumeResult(dict):
|
|
4853
4848
|
def nfs(self) -> Sequence['outputs.GetServiceTemplateSpecVolumeNfResult']:
|
4854
4849
|
"""
|
4855
4850
|
A filesystem backed by a Network File System share. This filesystem requires the
|
4856
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
4857
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4851
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
4858
4852
|
"""
|
4859
4853
|
return pulumi.get(self, "nfs")
|
4860
4854
|
|
@@ -4878,8 +4872,7 @@ class GetServiceTemplateSpecVolumeCsiResult(dict):
|
|
4878
4872
|
"""
|
4879
4873
|
:param str driver: Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
4880
4874
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
4881
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
4882
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4875
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
4883
4876
|
:param bool read_only: If true, all mounts created from this volume will be read-only.
|
4884
4877
|
:param Mapping[str, str] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
|
4885
4878
|
* gcsfuse.run.googleapis.com
|
@@ -4895,8 +4888,7 @@ class GetServiceTemplateSpecVolumeCsiResult(dict):
|
|
4895
4888
|
"""
|
4896
4889
|
Unique name representing the type of file system to be created. Cloud Run supports the following values:
|
4897
4890
|
* gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
|
4898
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2"
|
4899
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4891
|
+
run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
|
4900
4892
|
"""
|
4901
4893
|
return pulumi.get(self, "driver")
|
4902
4894
|
|
pulumi_gcp/cloudrunv2/_inputs.py
CHANGED
@@ -111,6 +111,8 @@ __all__ = [
|
|
111
111
|
'ServiceTemplateContainerVolumeMountArgsDict',
|
112
112
|
'ServiceTemplateScalingArgs',
|
113
113
|
'ServiceTemplateScalingArgsDict',
|
114
|
+
'ServiceTemplateServiceMeshArgs',
|
115
|
+
'ServiceTemplateServiceMeshArgsDict',
|
114
116
|
'ServiceTemplateVolumeArgs',
|
115
117
|
'ServiceTemplateVolumeArgsDict',
|
116
118
|
'ServiceTemplateVolumeCloudSqlInstanceArgs',
|
@@ -1427,12 +1429,12 @@ if not MYPY:
|
|
1427
1429
|
"""
|
1428
1430
|
gcs: NotRequired[pulumi.Input['JobTemplateTemplateVolumeGcsArgsDict']]
|
1429
1431
|
"""
|
1430
|
-
Cloud Storage bucket mounted as a volume using GCSFuse.
|
1432
|
+
Cloud Storage bucket mounted as a volume using GCSFuse.
|
1431
1433
|
Structure is documented below.
|
1432
1434
|
"""
|
1433
1435
|
nfs: NotRequired[pulumi.Input['JobTemplateTemplateVolumeNfsArgsDict']]
|
1434
1436
|
"""
|
1435
|
-
NFS share mounted as a volume.
|
1437
|
+
NFS share mounted as a volume.
|
1436
1438
|
Structure is documented below.
|
1437
1439
|
"""
|
1438
1440
|
secret: NotRequired[pulumi.Input['JobTemplateTemplateVolumeSecretArgsDict']]
|
@@ -1458,9 +1460,9 @@ class JobTemplateTemplateVolumeArgs:
|
|
1458
1460
|
Structure is documented below.
|
1459
1461
|
:param pulumi.Input['JobTemplateTemplateVolumeEmptyDirArgs'] empty_dir: Ephemeral storage used as a shared volume.
|
1460
1462
|
Structure is documented below.
|
1461
|
-
:param pulumi.Input['JobTemplateTemplateVolumeGcsArgs'] gcs: Cloud Storage bucket mounted as a volume using GCSFuse.
|
1463
|
+
:param pulumi.Input['JobTemplateTemplateVolumeGcsArgs'] gcs: Cloud Storage bucket mounted as a volume using GCSFuse.
|
1462
1464
|
Structure is documented below.
|
1463
|
-
:param pulumi.Input['JobTemplateTemplateVolumeNfsArgs'] nfs: NFS share mounted as a volume.
|
1465
|
+
:param pulumi.Input['JobTemplateTemplateVolumeNfsArgs'] nfs: NFS share mounted as a volume.
|
1464
1466
|
Structure is documented below.
|
1465
1467
|
:param pulumi.Input['JobTemplateTemplateVolumeSecretArgs'] secret: Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
|
1466
1468
|
Structure is documented below.
|
@@ -1519,7 +1521,7 @@ class JobTemplateTemplateVolumeArgs:
|
|
1519
1521
|
@pulumi.getter
|
1520
1522
|
def gcs(self) -> Optional[pulumi.Input['JobTemplateTemplateVolumeGcsArgs']]:
|
1521
1523
|
"""
|
1522
|
-
Cloud Storage bucket mounted as a volume using GCSFuse.
|
1524
|
+
Cloud Storage bucket mounted as a volume using GCSFuse.
|
1523
1525
|
Structure is documented below.
|
1524
1526
|
"""
|
1525
1527
|
return pulumi.get(self, "gcs")
|
@@ -1532,7 +1534,7 @@ class JobTemplateTemplateVolumeArgs:
|
|
1532
1534
|
@pulumi.getter
|
1533
1535
|
def nfs(self) -> Optional[pulumi.Input['JobTemplateTemplateVolumeNfsArgs']]:
|
1534
1536
|
"""
|
1535
|
-
NFS share mounted as a volume.
|
1537
|
+
NFS share mounted as a volume.
|
1536
1538
|
Structure is documented below.
|
1537
1539
|
"""
|
1538
1540
|
return pulumi.get(self, "nfs")
|
@@ -2723,6 +2725,11 @@ if not MYPY:
|
|
2723
2725
|
"""
|
2724
2726
|
Email address of the IAM service account associated with the revision of the service. The service account represents the identity of the running revision, and determines what permissions the revision has. If not provided, the revision will use the project's default service account.
|
2725
2727
|
"""
|
2728
|
+
service_mesh: NotRequired[pulumi.Input['ServiceTemplateServiceMeshArgsDict']]
|
2729
|
+
"""
|
2730
|
+
Enables Cloud Service Mesh for this Revision.
|
2731
|
+
Structure is documented below.
|
2732
|
+
"""
|
2726
2733
|
session_affinity: NotRequired[pulumi.Input[bool]]
|
2727
2734
|
"""
|
2728
2735
|
Enables session affinity. For more information, go to https://cloud.google.com/run/docs/configuring/session-affinity
|
@@ -2757,6 +2764,7 @@ class ServiceTemplateArgs:
|
|
2757
2764
|
revision: Optional[pulumi.Input[str]] = None,
|
2758
2765
|
scaling: Optional[pulumi.Input['ServiceTemplateScalingArgs']] = None,
|
2759
2766
|
service_account: Optional[pulumi.Input[str]] = None,
|
2767
|
+
service_mesh: Optional[pulumi.Input['ServiceTemplateServiceMeshArgs']] = None,
|
2760
2768
|
session_affinity: Optional[pulumi.Input[bool]] = None,
|
2761
2769
|
timeout: Optional[pulumi.Input[str]] = None,
|
2762
2770
|
volumes: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTemplateVolumeArgs']]]] = None,
|
@@ -2781,6 +2789,8 @@ class ServiceTemplateArgs:
|
|
2781
2789
|
:param pulumi.Input['ServiceTemplateScalingArgs'] scaling: Scaling settings for this Revision.
|
2782
2790
|
Structure is documented below.
|
2783
2791
|
:param pulumi.Input[str] service_account: Email address of the IAM service account associated with the revision of the service. The service account represents the identity of the running revision, and determines what permissions the revision has. If not provided, the revision will use the project's default service account.
|
2792
|
+
:param pulumi.Input['ServiceTemplateServiceMeshArgs'] service_mesh: Enables Cloud Service Mesh for this Revision.
|
2793
|
+
Structure is documented below.
|
2784
2794
|
:param pulumi.Input[bool] session_affinity: Enables session affinity. For more information, go to https://cloud.google.com/run/docs/configuring/session-affinity
|
2785
2795
|
:param pulumi.Input[str] timeout: Max allowed time for an instance to respond to a request.
|
2786
2796
|
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
@@ -2807,6 +2817,8 @@ class ServiceTemplateArgs:
|
|
2807
2817
|
pulumi.set(__self__, "scaling", scaling)
|
2808
2818
|
if service_account is not None:
|
2809
2819
|
pulumi.set(__self__, "service_account", service_account)
|
2820
|
+
if service_mesh is not None:
|
2821
|
+
pulumi.set(__self__, "service_mesh", service_mesh)
|
2810
2822
|
if session_affinity is not None:
|
2811
2823
|
pulumi.set(__self__, "session_affinity", session_affinity)
|
2812
2824
|
if timeout is not None:
|
@@ -2934,6 +2946,19 @@ class ServiceTemplateArgs:
|
|
2934
2946
|
def service_account(self, value: Optional[pulumi.Input[str]]):
|
2935
2947
|
pulumi.set(self, "service_account", value)
|
2936
2948
|
|
2949
|
+
@property
|
2950
|
+
@pulumi.getter(name="serviceMesh")
|
2951
|
+
def service_mesh(self) -> Optional[pulumi.Input['ServiceTemplateServiceMeshArgs']]:
|
2952
|
+
"""
|
2953
|
+
Enables Cloud Service Mesh for this Revision.
|
2954
|
+
Structure is documented below.
|
2955
|
+
"""
|
2956
|
+
return pulumi.get(self, "service_mesh")
|
2957
|
+
|
2958
|
+
@service_mesh.setter
|
2959
|
+
def service_mesh(self, value: Optional[pulumi.Input['ServiceTemplateServiceMeshArgs']]):
|
2960
|
+
pulumi.set(self, "service_mesh", value)
|
2961
|
+
|
2937
2962
|
@property
|
2938
2963
|
@pulumi.getter(name="sessionAffinity")
|
2939
2964
|
def session_affinity(self) -> Optional[pulumi.Input[bool]]:
|
@@ -4418,6 +4443,44 @@ class ServiceTemplateScalingArgs:
|
|
4418
4443
|
pulumi.set(self, "min_instance_count", value)
|
4419
4444
|
|
4420
4445
|
|
4446
|
+
if not MYPY:
|
4447
|
+
class ServiceTemplateServiceMeshArgsDict(TypedDict):
|
4448
|
+
mesh: NotRequired[pulumi.Input[str]]
|
4449
|
+
"""
|
4450
|
+
The Mesh resource name. For more information see https://cloud.google.com/service-mesh/docs/reference/network-services/rest/v1/projects.locations.meshes#resource:-mesh.
|
4451
|
+
|
4452
|
+
- - -
|
4453
|
+
"""
|
4454
|
+
elif False:
|
4455
|
+
ServiceTemplateServiceMeshArgsDict: TypeAlias = Mapping[str, Any]
|
4456
|
+
|
4457
|
+
@pulumi.input_type
|
4458
|
+
class ServiceTemplateServiceMeshArgs:
|
4459
|
+
def __init__(__self__, *,
|
4460
|
+
mesh: Optional[pulumi.Input[str]] = None):
|
4461
|
+
"""
|
4462
|
+
:param pulumi.Input[str] mesh: The Mesh resource name. For more information see https://cloud.google.com/service-mesh/docs/reference/network-services/rest/v1/projects.locations.meshes#resource:-mesh.
|
4463
|
+
|
4464
|
+
- - -
|
4465
|
+
"""
|
4466
|
+
if mesh is not None:
|
4467
|
+
pulumi.set(__self__, "mesh", mesh)
|
4468
|
+
|
4469
|
+
@property
|
4470
|
+
@pulumi.getter
|
4471
|
+
def mesh(self) -> Optional[pulumi.Input[str]]:
|
4472
|
+
"""
|
4473
|
+
The Mesh resource name. For more information see https://cloud.google.com/service-mesh/docs/reference/network-services/rest/v1/projects.locations.meshes#resource:-mesh.
|
4474
|
+
|
4475
|
+
- - -
|
4476
|
+
"""
|
4477
|
+
return pulumi.get(self, "mesh")
|
4478
|
+
|
4479
|
+
@mesh.setter
|
4480
|
+
def mesh(self, value: Optional[pulumi.Input[str]]):
|
4481
|
+
pulumi.set(self, "mesh", value)
|
4482
|
+
|
4483
|
+
|
4421
4484
|
if not MYPY:
|
4422
4485
|
class ServiceTemplateVolumeArgsDict(TypedDict):
|
4423
4486
|
name: pulumi.Input[str]
|
@@ -4436,7 +4499,7 @@ if not MYPY:
|
|
4436
4499
|
"""
|
4437
4500
|
gcs: NotRequired[pulumi.Input['ServiceTemplateVolumeGcsArgsDict']]
|
4438
4501
|
"""
|
4439
|
-
Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment
|
4502
|
+
Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment.
|
4440
4503
|
Structure is documented below.
|
4441
4504
|
"""
|
4442
4505
|
nfs: NotRequired[pulumi.Input['ServiceTemplateVolumeNfsArgsDict']]
|
@@ -4467,7 +4530,7 @@ class ServiceTemplateVolumeArgs:
|
|
4467
4530
|
Structure is documented below.
|
4468
4531
|
:param pulumi.Input['ServiceTemplateVolumeEmptyDirArgs'] empty_dir: Ephemeral storage used as a shared volume.
|
4469
4532
|
Structure is documented below.
|
4470
|
-
:param pulumi.Input['ServiceTemplateVolumeGcsArgs'] gcs: Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment
|
4533
|
+
:param pulumi.Input['ServiceTemplateVolumeGcsArgs'] gcs: Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment.
|
4471
4534
|
Structure is documented below.
|
4472
4535
|
:param pulumi.Input['ServiceTemplateVolumeNfsArgs'] nfs: Represents an NFS mount.
|
4473
4536
|
Structure is documented below.
|
@@ -4528,7 +4591,7 @@ class ServiceTemplateVolumeArgs:
|
|
4528
4591
|
@pulumi.getter
|
4529
4592
|
def gcs(self) -> Optional[pulumi.Input['ServiceTemplateVolumeGcsArgs']]:
|
4530
4593
|
"""
|
4531
|
-
Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment
|
4594
|
+
Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment.
|
4532
4595
|
Structure is documented below.
|
4533
4596
|
"""
|
4534
4597
|
return pulumi.get(self, "gcs")
|
@@ -4718,8 +4781,6 @@ if not MYPY:
|
|
4718
4781
|
read_only: NotRequired[pulumi.Input[bool]]
|
4719
4782
|
"""
|
4720
4783
|
If true, mount the NFS volume as read only
|
4721
|
-
|
4722
|
-
- - -
|
4723
4784
|
"""
|
4724
4785
|
elif False:
|
4725
4786
|
ServiceTemplateVolumeNfsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4734,8 +4795,6 @@ class ServiceTemplateVolumeNfsArgs:
|
|
4734
4795
|
:param pulumi.Input[str] path: Path that is exported by the NFS server.
|
4735
4796
|
:param pulumi.Input[str] server: Hostname or IP address of the NFS server
|
4736
4797
|
:param pulumi.Input[bool] read_only: If true, mount the NFS volume as read only
|
4737
|
-
|
4738
|
-
- - -
|
4739
4798
|
"""
|
4740
4799
|
pulumi.set(__self__, "path", path)
|
4741
4800
|
pulumi.set(__self__, "server", server)
|
@@ -4771,8 +4830,6 @@ class ServiceTemplateVolumeNfsArgs:
|
|
4771
4830
|
def read_only(self) -> Optional[pulumi.Input[bool]]:
|
4772
4831
|
"""
|
4773
4832
|
If true, mount the NFS volume as read only
|
4774
|
-
|
4775
|
-
- - -
|
4776
4833
|
"""
|
4777
4834
|
return pulumi.get(self, "read_only")
|
4778
4835
|
|