pulumi-gcp 8.36.0a1751060819__py3-none-any.whl → 8.37.0a1751903932__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/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +675 -0
- pulumi_gcp/apihub/outputs.py +567 -0
- pulumi_gcp/apihub/plugin.py +1146 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +7 -7
- pulumi_gcp/bigqueryanalyticshub/listing.py +7 -7
- pulumi_gcp/cloudidentity/group_membership.py +47 -0
- pulumi_gcp/cloudidentity/outputs.py +11 -0
- pulumi_gcp/cloudrunv2/_inputs.py +65 -9
- pulumi_gcp/cloudrunv2/job.py +44 -0
- pulumi_gcp/cloudrunv2/outputs.py +73 -8
- pulumi_gcp/cloudrunv2/service.py +0 -2
- pulumi_gcp/cloudrunv2/worker_pool.py +18 -20
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +763 -6
- pulumi_gcp/compute/disk.py +35 -28
- pulumi_gcp/compute/firewall_policy_rule.py +207 -0
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_disk.py +12 -1
- pulumi_gcp/compute/instance_group_manager.py +165 -14
- pulumi_gcp/compute/network.py +56 -0
- pulumi_gcp/compute/network_firewall_policy.py +68 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +61 -0
- pulumi_gcp/compute/outputs.py +604 -4
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +90 -0
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +109 -0
- pulumi_gcp/compute/wire_group.py +751 -0
- pulumi_gcp/container/_inputs.py +135 -16
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/node_pool.py +14 -0
- pulumi_gcp/container/outputs.py +222 -12
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +431 -0
- pulumi_gcp/diagflow/cx_generative_settings.py +625 -0
- pulumi_gcp/diagflow/outputs.py +370 -0
- pulumi_gcp/dns/record_set.py +4 -2
- pulumi_gcp/firestore/database.py +0 -9
- pulumi_gcp/iam/_inputs.py +36 -0
- pulumi_gcp/iam/outputs.py +38 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +88 -2
- pulumi_gcp/kms/autokey_config.py +28 -0
- pulumi_gcp/kms/get_autokey_config.py +12 -1
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +49 -0
- pulumi_gcp/monitoring/metric_descriptor.py +55 -57
- pulumi_gcp/notebooks/instance.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +44 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +7 -0
- pulumi_gcp/secretmanager/regional_secret.py +38 -2
- pulumi_gcp/spanner/_inputs.py +24 -1
- pulumi_gcp/spanner/outputs.py +17 -1
- pulumi_gcp/storage/_inputs.py +43 -3
- pulumi_gcp/storage/outputs.py +53 -3
- pulumi_gcp/workbench/instance.py +2 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/RECORD +64 -61
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudrunv2/outputs.py
CHANGED
@@ -36,6 +36,7 @@ __all__ = [
|
|
36
36
|
'JobTemplateTemplateContainerStartupProbeHttpGetHttpHeader',
|
37
37
|
'JobTemplateTemplateContainerStartupProbeTcpSocket',
|
38
38
|
'JobTemplateTemplateContainerVolumeMount',
|
39
|
+
'JobTemplateTemplateNodeSelector',
|
39
40
|
'JobTemplateTemplateVolume',
|
40
41
|
'JobTemplateTemplateVolumeCloudSqlInstance',
|
41
42
|
'JobTemplateTemplateVolumeEmptyDir',
|
@@ -128,6 +129,7 @@ __all__ = [
|
|
128
129
|
'GetJobTemplateTemplateContainerStartupProbeHttpGetHttpHeaderResult',
|
129
130
|
'GetJobTemplateTemplateContainerStartupProbeTcpSocketResult',
|
130
131
|
'GetJobTemplateTemplateContainerVolumeMountResult',
|
132
|
+
'GetJobTemplateTemplateNodeSelectorResult',
|
131
133
|
'GetJobTemplateTemplateVolumeResult',
|
132
134
|
'GetJobTemplateTemplateVolumeCloudSqlInstanceResult',
|
133
135
|
'GetJobTemplateTemplateVolumeEmptyDirResult',
|
@@ -639,6 +641,8 @@ class JobTemplateTemplate(dict):
|
|
639
641
|
suggest = "execution_environment"
|
640
642
|
elif key == "maxRetries":
|
641
643
|
suggest = "max_retries"
|
644
|
+
elif key == "nodeSelector":
|
645
|
+
suggest = "node_selector"
|
642
646
|
elif key == "serviceAccount":
|
643
647
|
suggest = "service_account"
|
644
648
|
elif key == "vpcAccess":
|
@@ -660,6 +664,7 @@ class JobTemplateTemplate(dict):
|
|
660
664
|
encryption_key: Optional[builtins.str] = None,
|
661
665
|
execution_environment: Optional[builtins.str] = None,
|
662
666
|
max_retries: Optional[builtins.int] = None,
|
667
|
+
node_selector: Optional['outputs.JobTemplateTemplateNodeSelector'] = None,
|
663
668
|
service_account: Optional[builtins.str] = None,
|
664
669
|
timeout: Optional[builtins.str] = None,
|
665
670
|
volumes: Optional[Sequence['outputs.JobTemplateTemplateVolume']] = None,
|
@@ -671,6 +676,8 @@ class JobTemplateTemplate(dict):
|
|
671
676
|
:param builtins.str execution_environment: The execution environment being used to host this Task.
|
672
677
|
Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
|
673
678
|
:param builtins.int max_retries: Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
|
679
|
+
:param 'JobTemplateTemplateNodeSelectorArgs' node_selector: Node Selector describes the hardware requirements of the resources.
|
680
|
+
Structure is documented below.
|
674
681
|
:param builtins.str service_account: Email address of the IAM service account associated with the Task of a Job. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account.
|
675
682
|
:param builtins.str timeout: Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout.
|
676
683
|
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
@@ -687,6 +694,8 @@ class JobTemplateTemplate(dict):
|
|
687
694
|
pulumi.set(__self__, "execution_environment", execution_environment)
|
688
695
|
if max_retries is not None:
|
689
696
|
pulumi.set(__self__, "max_retries", max_retries)
|
697
|
+
if node_selector is not None:
|
698
|
+
pulumi.set(__self__, "node_selector", node_selector)
|
690
699
|
if service_account is not None:
|
691
700
|
pulumi.set(__self__, "service_account", service_account)
|
692
701
|
if timeout is not None:
|
@@ -730,6 +739,15 @@ class JobTemplateTemplate(dict):
|
|
730
739
|
"""
|
731
740
|
return pulumi.get(self, "max_retries")
|
732
741
|
|
742
|
+
@property
|
743
|
+
@pulumi.getter(name="nodeSelector")
|
744
|
+
def node_selector(self) -> Optional['outputs.JobTemplateTemplateNodeSelector']:
|
745
|
+
"""
|
746
|
+
Node Selector describes the hardware requirements of the resources.
|
747
|
+
Structure is documented below.
|
748
|
+
"""
|
749
|
+
return pulumi.get(self, "node_selector")
|
750
|
+
|
733
751
|
@property
|
734
752
|
@pulumi.getter(name="serviceAccount")
|
735
753
|
def service_account(self) -> Optional[builtins.str]:
|
@@ -1124,7 +1142,7 @@ class JobTemplateTemplateContainerResources(dict):
|
|
1124
1142
|
def __init__(__self__, *,
|
1125
1143
|
limits: Optional[Mapping[str, builtins.str]] = None):
|
1126
1144
|
"""
|
1127
|
-
:param Mapping[str, builtins.str] limits: Only memory and
|
1145
|
+
:param Mapping[str, builtins.str] limits: Only memory, CPU, and nvidia.com/gpu are supported. Use key `cpu` for CPU limit, `memory` for memory limit, `nvidia.com/gpu` for gpu limit. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
|
1128
1146
|
"""
|
1129
1147
|
if limits is not None:
|
1130
1148
|
pulumi.set(__self__, "limits", limits)
|
@@ -1133,7 +1151,7 @@ class JobTemplateTemplateContainerResources(dict):
|
|
1133
1151
|
@pulumi.getter
|
1134
1152
|
def limits(self) -> Optional[Mapping[str, builtins.str]]:
|
1135
1153
|
"""
|
1136
|
-
Only memory and
|
1154
|
+
Only memory, CPU, and nvidia.com/gpu are supported. Use key `cpu` for CPU limit, `memory` for memory limit, `nvidia.com/gpu` for gpu limit. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
|
1137
1155
|
"""
|
1138
1156
|
return pulumi.get(self, "limits")
|
1139
1157
|
|
@@ -1472,6 +1490,28 @@ class JobTemplateTemplateContainerVolumeMount(dict):
|
|
1472
1490
|
return pulumi.get(self, "name")
|
1473
1491
|
|
1474
1492
|
|
1493
|
+
@pulumi.output_type
|
1494
|
+
class JobTemplateTemplateNodeSelector(dict):
|
1495
|
+
def __init__(__self__, *,
|
1496
|
+
accelerator: builtins.str):
|
1497
|
+
"""
|
1498
|
+
:param builtins.str accelerator: The GPU to attach to an instance. See https://cloud.google.com/run/docs/configuring/jobs/gpu for configuring GPU.
|
1499
|
+
|
1500
|
+
- - -
|
1501
|
+
"""
|
1502
|
+
pulumi.set(__self__, "accelerator", accelerator)
|
1503
|
+
|
1504
|
+
@property
|
1505
|
+
@pulumi.getter
|
1506
|
+
def accelerator(self) -> builtins.str:
|
1507
|
+
"""
|
1508
|
+
The GPU to attach to an instance. See https://cloud.google.com/run/docs/configuring/jobs/gpu for configuring GPU.
|
1509
|
+
|
1510
|
+
- - -
|
1511
|
+
"""
|
1512
|
+
return pulumi.get(self, "accelerator")
|
1513
|
+
|
1514
|
+
|
1475
1515
|
@pulumi.output_type
|
1476
1516
|
class JobTemplateTemplateVolume(dict):
|
1477
1517
|
@staticmethod
|
@@ -1952,8 +1992,6 @@ class JobTemplateTemplateVpcAccessNetworkInterface(dict):
|
|
1952
1992
|
network and subnetwork are specified, the given VPC subnetwork must belong to the given VPC network. If subnetwork is not specified, the
|
1953
1993
|
subnetwork with the same name with the network will be used.
|
1954
1994
|
:param Sequence[builtins.str] tags: Network tags applied to this Cloud Run job.
|
1955
|
-
|
1956
|
-
- - -
|
1957
1995
|
"""
|
1958
1996
|
if network is not None:
|
1959
1997
|
pulumi.set(__self__, "network", network)
|
@@ -1987,8 +2025,6 @@ class JobTemplateTemplateVpcAccessNetworkInterface(dict):
|
|
1987
2025
|
def tags(self) -> Optional[Sequence[builtins.str]]:
|
1988
2026
|
"""
|
1989
2027
|
Network tags applied to this Cloud Run job.
|
1990
|
-
|
1991
|
-
- - -
|
1992
2028
|
"""
|
1993
2029
|
return pulumi.get(self, "tags")
|
1994
2030
|
|
@@ -6788,6 +6824,7 @@ class GetJobTemplateTemplateResult(dict):
|
|
6788
6824
|
encryption_key: builtins.str,
|
6789
6825
|
execution_environment: builtins.str,
|
6790
6826
|
max_retries: builtins.int,
|
6827
|
+
node_selectors: Sequence['outputs.GetJobTemplateTemplateNodeSelectorResult'],
|
6791
6828
|
service_account: builtins.str,
|
6792
6829
|
timeout: builtins.str,
|
6793
6830
|
volumes: Sequence['outputs.GetJobTemplateTemplateVolumeResult'],
|
@@ -6797,6 +6834,7 @@ class GetJobTemplateTemplateResult(dict):
|
|
6797
6834
|
:param builtins.str encryption_key: A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek
|
6798
6835
|
:param builtins.str execution_environment: The execution environment being used to host this Task. Possible values: ["EXECUTION_ENVIRONMENT_GEN1", "EXECUTION_ENVIRONMENT_GEN2"]
|
6799
6836
|
:param builtins.int max_retries: Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
|
6837
|
+
:param Sequence['GetJobTemplateTemplateNodeSelectorArgs'] node_selectors: Node Selector describes the hardware requirements of the resources.
|
6800
6838
|
:param builtins.str service_account: Email address of the IAM service account associated with the Task of a Job. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account.
|
6801
6839
|
:param builtins.str timeout: Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout.
|
6802
6840
|
|
@@ -6808,6 +6846,7 @@ class GetJobTemplateTemplateResult(dict):
|
|
6808
6846
|
pulumi.set(__self__, "encryption_key", encryption_key)
|
6809
6847
|
pulumi.set(__self__, "execution_environment", execution_environment)
|
6810
6848
|
pulumi.set(__self__, "max_retries", max_retries)
|
6849
|
+
pulumi.set(__self__, "node_selectors", node_selectors)
|
6811
6850
|
pulumi.set(__self__, "service_account", service_account)
|
6812
6851
|
pulumi.set(__self__, "timeout", timeout)
|
6813
6852
|
pulumi.set(__self__, "volumes", volumes)
|
@@ -6845,6 +6884,14 @@ class GetJobTemplateTemplateResult(dict):
|
|
6845
6884
|
"""
|
6846
6885
|
return pulumi.get(self, "max_retries")
|
6847
6886
|
|
6887
|
+
@property
|
6888
|
+
@pulumi.getter(name="nodeSelectors")
|
6889
|
+
def node_selectors(self) -> Sequence['outputs.GetJobTemplateTemplateNodeSelectorResult']:
|
6890
|
+
"""
|
6891
|
+
Node Selector describes the hardware requirements of the resources.
|
6892
|
+
"""
|
6893
|
+
return pulumi.get(self, "node_selectors")
|
6894
|
+
|
6848
6895
|
@property
|
6849
6896
|
@pulumi.getter(name="serviceAccount")
|
6850
6897
|
def service_account(self) -> builtins.str:
|
@@ -7137,7 +7184,7 @@ class GetJobTemplateTemplateContainerResourceResult(dict):
|
|
7137
7184
|
def __init__(__self__, *,
|
7138
7185
|
limits: Mapping[str, builtins.str]):
|
7139
7186
|
"""
|
7140
|
-
:param Mapping[str, builtins.str] limits: Only memory and
|
7187
|
+
:param Mapping[str, builtins.str] limits: Only memory, CPU, and nvidia.com/gpu are supported. Use key 'cpu' for CPU limit, 'memory' for memory limit, 'nvidia.com/gpu' for gpu limit. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
|
7141
7188
|
"""
|
7142
7189
|
pulumi.set(__self__, "limits", limits)
|
7143
7190
|
|
@@ -7145,7 +7192,7 @@ class GetJobTemplateTemplateContainerResourceResult(dict):
|
|
7145
7192
|
@pulumi.getter
|
7146
7193
|
def limits(self) -> Mapping[str, builtins.str]:
|
7147
7194
|
"""
|
7148
|
-
Only memory and
|
7195
|
+
Only memory, CPU, and nvidia.com/gpu are supported. Use key 'cpu' for CPU limit, 'memory' for memory limit, 'nvidia.com/gpu' for gpu limit. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
|
7149
7196
|
"""
|
7150
7197
|
return pulumi.get(self, "limits")
|
7151
7198
|
|
@@ -7401,6 +7448,24 @@ class GetJobTemplateTemplateContainerVolumeMountResult(dict):
|
|
7401
7448
|
return pulumi.get(self, "name")
|
7402
7449
|
|
7403
7450
|
|
7451
|
+
@pulumi.output_type
|
7452
|
+
class GetJobTemplateTemplateNodeSelectorResult(dict):
|
7453
|
+
def __init__(__self__, *,
|
7454
|
+
accelerator: builtins.str):
|
7455
|
+
"""
|
7456
|
+
:param builtins.str accelerator: The GPU to attach to an instance. See https://cloud.google.com/run/docs/configuring/jobs/gpu for configuring GPU.
|
7457
|
+
"""
|
7458
|
+
pulumi.set(__self__, "accelerator", accelerator)
|
7459
|
+
|
7460
|
+
@property
|
7461
|
+
@pulumi.getter
|
7462
|
+
def accelerator(self) -> builtins.str:
|
7463
|
+
"""
|
7464
|
+
The GPU to attach to an instance. See https://cloud.google.com/run/docs/configuring/jobs/gpu for configuring GPU.
|
7465
|
+
"""
|
7466
|
+
return pulumi.get(self, "accelerator")
|
7467
|
+
|
7468
|
+
|
7404
7469
|
@pulumi.output_type
|
7405
7470
|
class GetJobTemplateTemplateVolumeResult(dict):
|
7406
7471
|
def __init__(__self__, *,
|
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -1645,7 +1645,6 @@ class Service(pulumi.CustomResource):
|
|
1645
1645
|
"image_uri": "us-docker.pkg.dev/cloudrun/container/hello",
|
1646
1646
|
"base_image": "us-central1-docker.pkg.dev/serverless-runtimes/google-22-full/runtimes/nodejs22",
|
1647
1647
|
"enable_automatic_updates": True,
|
1648
|
-
"worker_pool": "worker-pool",
|
1649
1648
|
"environment_variables": {
|
1650
1649
|
"FOO_KEY": "FOO_VALUE",
|
1651
1650
|
"BAR_KEY": "BAR_VALUE",
|
@@ -2266,7 +2265,6 @@ class Service(pulumi.CustomResource):
|
|
2266
2265
|
"image_uri": "us-docker.pkg.dev/cloudrun/container/hello",
|
2267
2266
|
"base_image": "us-central1-docker.pkg.dev/serverless-runtimes/google-22-full/runtimes/nodejs22",
|
2268
2267
|
"enable_automatic_updates": True,
|
2269
|
-
"worker_pool": "worker-pool",
|
2270
2268
|
"environment_variables": {
|
2271
2269
|
"FOO_KEY": "FOO_VALUE",
|
2272
2270
|
"BAR_KEY": "BAR_VALUE",
|
@@ -942,7 +942,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
942
942
|
name="cloudrun-worker-pool",
|
943
943
|
location="us-central1",
|
944
944
|
deletion_protection=False,
|
945
|
-
launch_stage="
|
945
|
+
launch_stage="BETA",
|
946
946
|
template={
|
947
947
|
"containers": [{
|
948
948
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -959,7 +959,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
959
959
|
name="cloudrun-worker-pool",
|
960
960
|
location="us-central1",
|
961
961
|
deletion_protection=False,
|
962
|
-
launch_stage="
|
962
|
+
launch_stage="BETA",
|
963
963
|
template={
|
964
964
|
"containers": [{
|
965
965
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -998,7 +998,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
998
998
|
name="cloudrun-worker-pool",
|
999
999
|
location="us-central1",
|
1000
1000
|
deletion_protection=False,
|
1001
|
-
launch_stage="
|
1001
|
+
launch_stage="BETA",
|
1002
1002
|
template={
|
1003
1003
|
"volumes": [{
|
1004
1004
|
"name": "cloudsql",
|
@@ -1051,7 +1051,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1051
1051
|
name="cloudrun-worker-pool",
|
1052
1052
|
location="us-central1",
|
1053
1053
|
deletion_protection=False,
|
1054
|
-
launch_stage="
|
1054
|
+
launch_stage="BETA",
|
1055
1055
|
template={
|
1056
1056
|
"containers": [{
|
1057
1057
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -1114,7 +1114,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1114
1114
|
name="cloudrun-worker-pool",
|
1115
1115
|
location="us-central1",
|
1116
1116
|
deletion_protection=False,
|
1117
|
-
launch_stage="
|
1117
|
+
launch_stage="BETA",
|
1118
1118
|
template={
|
1119
1119
|
"volumes": [{
|
1120
1120
|
"name": "a-volume",
|
@@ -1154,13 +1154,12 @@ class WorkerPool(pulumi.CustomResource):
|
|
1154
1154
|
name="cloudrun-worker-pool",
|
1155
1155
|
location="us-central1",
|
1156
1156
|
deletion_protection=False,
|
1157
|
-
launch_stage="
|
1157
|
+
launch_stage="BETA",
|
1158
1158
|
template={
|
1159
1159
|
"containers": [
|
1160
1160
|
{
|
1161
1161
|
"name": "hello-1",
|
1162
1162
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
1163
|
-
"depends_ons": ["hello-2"],
|
1164
1163
|
"volume_mounts": [{
|
1165
1164
|
"name": "empty-dir-volume",
|
1166
1165
|
"mount_path": "/mnt",
|
@@ -1194,7 +1193,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1194
1193
|
name="cloudrun-worker-pool",
|
1195
1194
|
location="us-central1",
|
1196
1195
|
deletion_protection=False,
|
1197
|
-
launch_stage="
|
1196
|
+
launch_stage="BETA",
|
1198
1197
|
template={
|
1199
1198
|
"containers": [{
|
1200
1199
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -1234,7 +1233,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1234
1233
|
name="cloudrun-worker-pool",
|
1235
1234
|
location="us-central1",
|
1236
1235
|
deletion_protection=False,
|
1237
|
-
launch_stage="
|
1236
|
+
launch_stage="BETA",
|
1238
1237
|
template={
|
1239
1238
|
"containers": [{
|
1240
1239
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool:latest",
|
@@ -1269,7 +1268,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1269
1268
|
name="cloudrun-worker-pool",
|
1270
1269
|
location="us-central1",
|
1271
1270
|
deletion_protection=False,
|
1272
|
-
launch_stage="
|
1271
|
+
launch_stage="BETA",
|
1273
1272
|
custom_audiences=["aud1"],
|
1274
1273
|
template={
|
1275
1274
|
"containers": [{
|
@@ -1367,7 +1366,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1367
1366
|
name="cloudrun-worker-pool",
|
1368
1367
|
location="us-central1",
|
1369
1368
|
deletion_protection=False,
|
1370
|
-
launch_stage="
|
1369
|
+
launch_stage="BETA",
|
1371
1370
|
template={
|
1372
1371
|
"containers": [{
|
1373
1372
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -1384,7 +1383,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1384
1383
|
name="cloudrun-worker-pool",
|
1385
1384
|
location="us-central1",
|
1386
1385
|
deletion_protection=False,
|
1387
|
-
launch_stage="
|
1386
|
+
launch_stage="BETA",
|
1388
1387
|
template={
|
1389
1388
|
"containers": [{
|
1390
1389
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -1423,7 +1422,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1423
1422
|
name="cloudrun-worker-pool",
|
1424
1423
|
location="us-central1",
|
1425
1424
|
deletion_protection=False,
|
1426
|
-
launch_stage="
|
1425
|
+
launch_stage="BETA",
|
1427
1426
|
template={
|
1428
1427
|
"volumes": [{
|
1429
1428
|
"name": "cloudsql",
|
@@ -1476,7 +1475,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1476
1475
|
name="cloudrun-worker-pool",
|
1477
1476
|
location="us-central1",
|
1478
1477
|
deletion_protection=False,
|
1479
|
-
launch_stage="
|
1478
|
+
launch_stage="BETA",
|
1480
1479
|
template={
|
1481
1480
|
"containers": [{
|
1482
1481
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -1539,7 +1538,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1539
1538
|
name="cloudrun-worker-pool",
|
1540
1539
|
location="us-central1",
|
1541
1540
|
deletion_protection=False,
|
1542
|
-
launch_stage="
|
1541
|
+
launch_stage="BETA",
|
1543
1542
|
template={
|
1544
1543
|
"volumes": [{
|
1545
1544
|
"name": "a-volume",
|
@@ -1579,13 +1578,12 @@ class WorkerPool(pulumi.CustomResource):
|
|
1579
1578
|
name="cloudrun-worker-pool",
|
1580
1579
|
location="us-central1",
|
1581
1580
|
deletion_protection=False,
|
1582
|
-
launch_stage="
|
1581
|
+
launch_stage="BETA",
|
1583
1582
|
template={
|
1584
1583
|
"containers": [
|
1585
1584
|
{
|
1586
1585
|
"name": "hello-1",
|
1587
1586
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
1588
|
-
"depends_ons": ["hello-2"],
|
1589
1587
|
"volume_mounts": [{
|
1590
1588
|
"name": "empty-dir-volume",
|
1591
1589
|
"mount_path": "/mnt",
|
@@ -1619,7 +1617,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1619
1617
|
name="cloudrun-worker-pool",
|
1620
1618
|
location="us-central1",
|
1621
1619
|
deletion_protection=False,
|
1622
|
-
launch_stage="
|
1620
|
+
launch_stage="BETA",
|
1623
1621
|
template={
|
1624
1622
|
"containers": [{
|
1625
1623
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool",
|
@@ -1659,7 +1657,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1659
1657
|
name="cloudrun-worker-pool",
|
1660
1658
|
location="us-central1",
|
1661
1659
|
deletion_protection=False,
|
1662
|
-
launch_stage="
|
1660
|
+
launch_stage="BETA",
|
1663
1661
|
template={
|
1664
1662
|
"containers": [{
|
1665
1663
|
"image": "us-docker.pkg.dev/cloudrun/container/worker-pool:latest",
|
@@ -1694,7 +1692,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
1694
1692
|
name="cloudrun-worker-pool",
|
1695
1693
|
location="us-central1",
|
1696
1694
|
deletion_protection=False,
|
1697
|
-
launch_stage="
|
1695
|
+
launch_stage="BETA",
|
1698
1696
|
custom_audiences=["aud1"],
|
1699
1697
|
template={
|
1700
1698
|
"containers": [{
|