pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.1__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 +43 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
- pulumi_gcp/accesscontextmanager/outputs.py +2 -2
- pulumi_gcp/artifactregistry/_inputs.py +83 -0
- pulumi_gcp/artifactregistry/get_repository.py +15 -4
- pulumi_gcp/artifactregistry/outputs.py +112 -0
- pulumi_gcp/artifactregistry/repository.py +93 -7
- pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
- pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
- pulumi_gcp/bigquery/_inputs.py +369 -0
- pulumi_gcp/bigquery/dataset_access.py +61 -0
- pulumi_gcp/bigquery/job.py +6 -18
- pulumi_gcp/bigquery/outputs.py +350 -0
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/chronicle/__init__.py +10 -0
- pulumi_gcp/chronicle/_inputs.py +169 -0
- pulumi_gcp/chronicle/outputs.py +107 -0
- pulumi_gcp/chronicle/watchlist.py +776 -0
- pulumi_gcp/cloudrunv2/_inputs.py +6 -3
- pulumi_gcp/cloudrunv2/outputs.py +10 -6
- pulumi_gcp/composer/_inputs.py +80 -5
- pulumi_gcp/composer/outputs.py +111 -4
- pulumi_gcp/compute/_inputs.py +181 -87
- pulumi_gcp/compute/firewall_policy_association.py +50 -39
- pulumi_gcp/compute/get_network.py +17 -2
- pulumi_gcp/compute/get_subnetwork.py +18 -4
- pulumi_gcp/compute/network.py +39 -2
- pulumi_gcp/compute/outputs.py +157 -58
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
- pulumi_gcp/compute/resize_request.py +26 -40
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/dataproc/batch.py +4 -18
- pulumi_gcp/datastream/_inputs.py +68 -0
- pulumi_gcp/datastream/outputs.py +41 -1
- pulumi_gcp/developerconnect/connection.py +58 -12
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/filestore/backup.py +71 -3
- pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
- pulumi_gcp/firestore/_inputs.py +3 -3
- pulumi_gcp/firestore/outputs.py +2 -2
- pulumi_gcp/gkehub/__init__.py +1 -0
- pulumi_gcp/gkehub/get_feature.py +226 -0
- pulumi_gcp/gkehub/outputs.py +1153 -0
- pulumi_gcp/gkeonprem/__init__.py +1 -0
- pulumi_gcp/gkeonprem/_inputs.py +2364 -0
- pulumi_gcp/gkeonprem/outputs.py +1780 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
- pulumi_gcp/integrationconnectors/_inputs.py +6 -6
- pulumi_gcp/integrationconnectors/connection.py +7 -7
- pulumi_gcp/integrationconnectors/outputs.py +4 -4
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/get_autokey_config.py +121 -0
- pulumi_gcp/kms/get_key_handle.py +185 -0
- pulumi_gcp/netapp/kmsconfig.py +2 -14
- pulumi_gcp/networkconnectivity/hub.py +108 -0
- pulumi_gcp/networkconnectivity/spoke.py +195 -0
- pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
- pulumi_gcp/networksecurity/__init__.py +2 -0
- pulumi_gcp/networksecurity/_inputs.py +78 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
- pulumi_gcp/networksecurity/outputs.py +48 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +149 -0
- pulumi_gcp/projects/usage_export_bucket.py +42 -110
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +4 -16
- pulumi_gcp/spanner/instance_iam_binding.py +14 -0
- pulumi_gcp/spanner/instance_iam_member.py +14 -0
- pulumi_gcp/sql/database_instance.py +7 -7
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +431 -0
- pulumi_gcp/storage/folder.py +483 -0
- pulumi_gcp/storage/outputs.py +363 -0
- pulumi_gcp/storage/transfer_job.py +84 -38
- pulumi_gcp/vertex/_inputs.py +26 -25
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +15 -14
- pulumi_gcp/workstations/workstation.py +55 -1
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/RECORD +90 -79
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/outputs.py
CHANGED
@@ -7676,7 +7676,7 @@ class InstanceBootDiskInitializeParams(dict):
|
|
7676
7676
|
for an update of throughput every 4 hours. To update your hyperdisk more
|
7677
7677
|
frequently, you'll need to manually delete and recreate it.
|
7678
7678
|
:param Mapping[str, str] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
7679
|
-
:param str resource_policies: A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
|
7679
|
+
:param str resource_policies: A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate, so any external values are not set until the user specifies this field. Currently a max of 1 resource policy is supported.
|
7680
7680
|
:param int size: The size of the image in gigabytes. If not specified, it
|
7681
7681
|
will inherit the size of its base image.
|
7682
7682
|
:param str storage_pool: The URL or the name of the storage pool in which the new disk is created.
|
@@ -7782,7 +7782,7 @@ class InstanceBootDiskInitializeParams(dict):
|
|
7782
7782
|
@pulumi.getter(name="resourcePolicies")
|
7783
7783
|
def resource_policies(self) -> Optional[str]:
|
7784
7784
|
"""
|
7785
|
-
A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
|
7785
|
+
A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate, so any external values are not set until the user specifies this field. Currently a max of 1 resource policy is supported.
|
7786
7786
|
"""
|
7787
7787
|
return pulumi.get(self, "resource_policies")
|
7788
7788
|
|
@@ -9083,6 +9083,8 @@ class InstanceFromMachineImageScheduling(dict):
|
|
9083
9083
|
suggest = None
|
9084
9084
|
if key == "automaticRestart":
|
9085
9085
|
suggest = "automatic_restart"
|
9086
|
+
elif key == "availabilityDomain":
|
9087
|
+
suggest = "availability_domain"
|
9086
9088
|
elif key == "hostErrorTimeoutSeconds":
|
9087
9089
|
suggest = "host_error_timeout_seconds"
|
9088
9090
|
elif key == "instanceTerminationAction":
|
@@ -9117,6 +9119,7 @@ class InstanceFromMachineImageScheduling(dict):
|
|
9117
9119
|
|
9118
9120
|
def __init__(__self__, *,
|
9119
9121
|
automatic_restart: Optional[bool] = None,
|
9122
|
+
availability_domain: Optional[int] = None,
|
9120
9123
|
host_error_timeout_seconds: Optional[int] = None,
|
9121
9124
|
instance_termination_action: Optional[str] = None,
|
9122
9125
|
local_ssd_recovery_timeout: Optional['outputs.InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout'] = None,
|
@@ -9130,6 +9133,7 @@ class InstanceFromMachineImageScheduling(dict):
|
|
9130
9133
|
provisioning_model: Optional[str] = None):
|
9131
9134
|
"""
|
9132
9135
|
:param bool automatic_restart: Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
|
9136
|
+
:param int availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
9133
9137
|
:param int host_error_timeout_seconds: Specify the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
|
9134
9138
|
:param str instance_termination_action: Specifies the action GCE should take when SPOT VM is preempted.
|
9135
9139
|
:param 'InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs' local_ssd_recovery_timeout: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -9146,6 +9150,8 @@ class InstanceFromMachineImageScheduling(dict):
|
|
9146
9150
|
"""
|
9147
9151
|
if automatic_restart is not None:
|
9148
9152
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
9153
|
+
if availability_domain is not None:
|
9154
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
9149
9155
|
if host_error_timeout_seconds is not None:
|
9150
9156
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
9151
9157
|
if instance_termination_action is not None:
|
@@ -9177,6 +9183,14 @@ class InstanceFromMachineImageScheduling(dict):
|
|
9177
9183
|
"""
|
9178
9184
|
return pulumi.get(self, "automatic_restart")
|
9179
9185
|
|
9186
|
+
@property
|
9187
|
+
@pulumi.getter(name="availabilityDomain")
|
9188
|
+
def availability_domain(self) -> Optional[int]:
|
9189
|
+
"""
|
9190
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
9191
|
+
"""
|
9192
|
+
return pulumi.get(self, "availability_domain")
|
9193
|
+
|
9180
9194
|
@property
|
9181
9195
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
9182
9196
|
def host_error_timeout_seconds(self) -> Optional[int]:
|
@@ -10773,6 +10787,8 @@ class InstanceFromTemplateScheduling(dict):
|
|
10773
10787
|
suggest = None
|
10774
10788
|
if key == "automaticRestart":
|
10775
10789
|
suggest = "automatic_restart"
|
10790
|
+
elif key == "availabilityDomain":
|
10791
|
+
suggest = "availability_domain"
|
10776
10792
|
elif key == "hostErrorTimeoutSeconds":
|
10777
10793
|
suggest = "host_error_timeout_seconds"
|
10778
10794
|
elif key == "instanceTerminationAction":
|
@@ -10807,6 +10823,7 @@ class InstanceFromTemplateScheduling(dict):
|
|
10807
10823
|
|
10808
10824
|
def __init__(__self__, *,
|
10809
10825
|
automatic_restart: Optional[bool] = None,
|
10826
|
+
availability_domain: Optional[int] = None,
|
10810
10827
|
host_error_timeout_seconds: Optional[int] = None,
|
10811
10828
|
instance_termination_action: Optional[str] = None,
|
10812
10829
|
local_ssd_recovery_timeout: Optional['outputs.InstanceFromTemplateSchedulingLocalSsdRecoveryTimeout'] = None,
|
@@ -10820,6 +10837,7 @@ class InstanceFromTemplateScheduling(dict):
|
|
10820
10837
|
provisioning_model: Optional[str] = None):
|
10821
10838
|
"""
|
10822
10839
|
:param bool automatic_restart: Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
|
10840
|
+
:param int availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
10823
10841
|
:param int host_error_timeout_seconds: Specify the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
|
10824
10842
|
:param str instance_termination_action: Specifies the action GCE should take when SPOT VM is preempted.
|
10825
10843
|
:param 'InstanceFromTemplateSchedulingLocalSsdRecoveryTimeoutArgs' local_ssd_recovery_timeout: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -10836,6 +10854,8 @@ class InstanceFromTemplateScheduling(dict):
|
|
10836
10854
|
"""
|
10837
10855
|
if automatic_restart is not None:
|
10838
10856
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
10857
|
+
if availability_domain is not None:
|
10858
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
10839
10859
|
if host_error_timeout_seconds is not None:
|
10840
10860
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
10841
10861
|
if instance_termination_action is not None:
|
@@ -10867,6 +10887,14 @@ class InstanceFromTemplateScheduling(dict):
|
|
10867
10887
|
"""
|
10868
10888
|
return pulumi.get(self, "automatic_restart")
|
10869
10889
|
|
10890
|
+
@property
|
10891
|
+
@pulumi.getter(name="availabilityDomain")
|
10892
|
+
def availability_domain(self) -> Optional[int]:
|
10893
|
+
"""
|
10894
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
10895
|
+
"""
|
10896
|
+
return pulumi.get(self, "availability_domain")
|
10897
|
+
|
10870
10898
|
@property
|
10871
10899
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
10872
10900
|
def host_error_timeout_seconds(self) -> Optional[int]:
|
@@ -12986,6 +13014,8 @@ class InstanceScheduling(dict):
|
|
12986
13014
|
suggest = None
|
12987
13015
|
if key == "automaticRestart":
|
12988
13016
|
suggest = "automatic_restart"
|
13017
|
+
elif key == "availabilityDomain":
|
13018
|
+
suggest = "availability_domain"
|
12989
13019
|
elif key == "hostErrorTimeoutSeconds":
|
12990
13020
|
suggest = "host_error_timeout_seconds"
|
12991
13021
|
elif key == "instanceTerminationAction":
|
@@ -13020,6 +13050,7 @@ class InstanceScheduling(dict):
|
|
13020
13050
|
|
13021
13051
|
def __init__(__self__, *,
|
13022
13052
|
automatic_restart: Optional[bool] = None,
|
13053
|
+
availability_domain: Optional[int] = None,
|
13023
13054
|
host_error_timeout_seconds: Optional[int] = None,
|
13024
13055
|
instance_termination_action: Optional[str] = None,
|
13025
13056
|
local_ssd_recovery_timeout: Optional['outputs.InstanceSchedulingLocalSsdRecoveryTimeout'] = None,
|
@@ -13035,6 +13066,7 @@ class InstanceScheduling(dict):
|
|
13035
13066
|
:param bool automatic_restart: Specifies if the instance should be
|
13036
13067
|
restarted if it was terminated by Compute Engine (not a user).
|
13037
13068
|
Defaults to true.
|
13069
|
+
:param int availability_domain: Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
|
13038
13070
|
:param int host_error_timeout_seconds: Specifies the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
|
13039
13071
|
:param str instance_termination_action: Describe the type of termination action for VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
|
13040
13072
|
:param 'InstanceSchedulingLocalSsdRecoveryTimeoutArgs' local_ssd_recovery_timeout: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -13063,6 +13095,8 @@ class InstanceScheduling(dict):
|
|
13063
13095
|
"""
|
13064
13096
|
if automatic_restart is not None:
|
13065
13097
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
13098
|
+
if availability_domain is not None:
|
13099
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
13066
13100
|
if host_error_timeout_seconds is not None:
|
13067
13101
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
13068
13102
|
if instance_termination_action is not None:
|
@@ -13096,6 +13130,14 @@ class InstanceScheduling(dict):
|
|
13096
13130
|
"""
|
13097
13131
|
return pulumi.get(self, "automatic_restart")
|
13098
13132
|
|
13133
|
+
@property
|
13134
|
+
@pulumi.getter(name="availabilityDomain")
|
13135
|
+
def availability_domain(self) -> Optional[int]:
|
13136
|
+
"""
|
13137
|
+
Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
|
13138
|
+
"""
|
13139
|
+
return pulumi.get(self, "availability_domain")
|
13140
|
+
|
13099
13141
|
@property
|
13100
13142
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
13101
13143
|
def host_error_timeout_seconds(self) -> Optional[int]:
|
@@ -14845,6 +14887,8 @@ class InstanceTemplateScheduling(dict):
|
|
14845
14887
|
suggest = None
|
14846
14888
|
if key == "automaticRestart":
|
14847
14889
|
suggest = "automatic_restart"
|
14890
|
+
elif key == "availabilityDomain":
|
14891
|
+
suggest = "availability_domain"
|
14848
14892
|
elif key == "hostErrorTimeoutSeconds":
|
14849
14893
|
suggest = "host_error_timeout_seconds"
|
14850
14894
|
elif key == "instanceTerminationAction":
|
@@ -14879,6 +14923,7 @@ class InstanceTemplateScheduling(dict):
|
|
14879
14923
|
|
14880
14924
|
def __init__(__self__, *,
|
14881
14925
|
automatic_restart: Optional[bool] = None,
|
14926
|
+
availability_domain: Optional[int] = None,
|
14882
14927
|
host_error_timeout_seconds: Optional[int] = None,
|
14883
14928
|
instance_termination_action: Optional[str] = None,
|
14884
14929
|
local_ssd_recovery_timeouts: Optional[Sequence['outputs.InstanceTemplateSchedulingLocalSsdRecoveryTimeout']] = None,
|
@@ -14894,6 +14939,7 @@ class InstanceTemplateScheduling(dict):
|
|
14894
14939
|
:param bool automatic_restart: Specifies whether the instance should be
|
14895
14940
|
automatically restarted if it is terminated by Compute Engine (not
|
14896
14941
|
terminated by a user). This defaults to true.
|
14942
|
+
:param int availability_domain: Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
|
14897
14943
|
:param int host_error_timeout_seconds: Specifies the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
|
14898
14944
|
:param str instance_termination_action: Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
|
14899
14945
|
:param Sequence['InstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -14921,6 +14967,8 @@ class InstanceTemplateScheduling(dict):
|
|
14921
14967
|
"""
|
14922
14968
|
if automatic_restart is not None:
|
14923
14969
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
14970
|
+
if availability_domain is not None:
|
14971
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
14924
14972
|
if host_error_timeout_seconds is not None:
|
14925
14973
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
14926
14974
|
if instance_termination_action is not None:
|
@@ -14954,6 +15002,14 @@ class InstanceTemplateScheduling(dict):
|
|
14954
15002
|
"""
|
14955
15003
|
return pulumi.get(self, "automatic_restart")
|
14956
15004
|
|
15005
|
+
@property
|
15006
|
+
@pulumi.getter(name="availabilityDomain")
|
15007
|
+
def availability_domain(self) -> Optional[int]:
|
15008
|
+
"""
|
15009
|
+
Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
|
15010
|
+
"""
|
15011
|
+
return pulumi.get(self, "availability_domain")
|
15012
|
+
|
14957
15013
|
@property
|
14958
15014
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
14959
15015
|
def host_error_timeout_seconds(self) -> Optional[int]:
|
@@ -24978,6 +25034,8 @@ class RegionInstanceTemplateScheduling(dict):
|
|
24978
25034
|
suggest = None
|
24979
25035
|
if key == "automaticRestart":
|
24980
25036
|
suggest = "automatic_restart"
|
25037
|
+
elif key == "availabilityDomain":
|
25038
|
+
suggest = "availability_domain"
|
24981
25039
|
elif key == "hostErrorTimeoutSeconds":
|
24982
25040
|
suggest = "host_error_timeout_seconds"
|
24983
25041
|
elif key == "instanceTerminationAction":
|
@@ -25012,6 +25070,7 @@ class RegionInstanceTemplateScheduling(dict):
|
|
25012
25070
|
|
25013
25071
|
def __init__(__self__, *,
|
25014
25072
|
automatic_restart: Optional[bool] = None,
|
25073
|
+
availability_domain: Optional[int] = None,
|
25015
25074
|
host_error_timeout_seconds: Optional[int] = None,
|
25016
25075
|
instance_termination_action: Optional[str] = None,
|
25017
25076
|
local_ssd_recovery_timeouts: Optional[Sequence['outputs.RegionInstanceTemplateSchedulingLocalSsdRecoveryTimeout']] = None,
|
@@ -25027,6 +25086,7 @@ class RegionInstanceTemplateScheduling(dict):
|
|
25027
25086
|
:param bool automatic_restart: Specifies whether the instance should be
|
25028
25087
|
automatically restarted if it is terminated by Compute Engine (not
|
25029
25088
|
terminated by a user). This defaults to true.
|
25089
|
+
:param int availability_domain: Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
|
25030
25090
|
:param int host_error_timeout_seconds: Specifies the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
|
25031
25091
|
:param str instance_termination_action: Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
|
25032
25092
|
:param Sequence['RegionInstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -25054,6 +25114,8 @@ class RegionInstanceTemplateScheduling(dict):
|
|
25054
25114
|
"""
|
25055
25115
|
if automatic_restart is not None:
|
25056
25116
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
25117
|
+
if availability_domain is not None:
|
25118
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
25057
25119
|
if host_error_timeout_seconds is not None:
|
25058
25120
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
25059
25121
|
if instance_termination_action is not None:
|
@@ -25087,6 +25149,14 @@ class RegionInstanceTemplateScheduling(dict):
|
|
25087
25149
|
"""
|
25088
25150
|
return pulumi.get(self, "automatic_restart")
|
25089
25151
|
|
25152
|
+
@property
|
25153
|
+
@pulumi.getter(name="availabilityDomain")
|
25154
|
+
def availability_domain(self) -> Optional[int]:
|
25155
|
+
"""
|
25156
|
+
Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
|
25157
|
+
"""
|
25158
|
+
return pulumi.get(self, "availability_domain")
|
25159
|
+
|
25090
25160
|
@property
|
25091
25161
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
25092
25162
|
def host_error_timeout_seconds(self) -> Optional[int]:
|
@@ -35396,7 +35466,7 @@ class ResizeRequestRequestedRunDuration(dict):
|
|
35396
35466
|
seconds: str,
|
35397
35467
|
nanos: Optional[int] = None):
|
35398
35468
|
"""
|
35399
|
-
:param str seconds: Span of time at a resolution of a second. Must be from
|
35469
|
+
:param str seconds: Span of time at a resolution of a second. Must be from 600 to 604800 inclusive. Note: minimum and maximum allowed range for requestedRunDuration is 10 minutes (600 seconds) and 7 days(604800 seconds) correspondingly.
|
35400
35470
|
:param int nanos: Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
|
35401
35471
|
"""
|
35402
35472
|
pulumi.set(__self__, "seconds", seconds)
|
@@ -35407,7 +35477,7 @@ class ResizeRequestRequestedRunDuration(dict):
|
|
35407
35477
|
@pulumi.getter
|
35408
35478
|
def seconds(self) -> str:
|
35409
35479
|
"""
|
35410
|
-
Span of time at a resolution of a second. Must be from
|
35480
|
+
Span of time at a resolution of a second. Must be from 600 to 604800 inclusive. Note: minimum and maximum allowed range for requestedRunDuration is 10 minutes (600 seconds) and 7 days(604800 seconds) correspondingly.
|
35411
35481
|
"""
|
35412
35482
|
return pulumi.get(self, "seconds")
|
35413
35483
|
|
@@ -35444,10 +35514,10 @@ class ResizeRequestStatus(dict):
|
|
35444
35514
|
last_attempts: Optional[Sequence['outputs.ResizeRequestStatusLastAttempt']] = None):
|
35445
35515
|
"""
|
35446
35516
|
:param Sequence['ResizeRequestStatusErrorArgs'] errors: (Output)
|
35447
|
-
|
35517
|
+
Fatal errors encountered during the queueing or provisioning phases of the ResizeRequest that caused the transition to the FAILED state. Contrary to the lastAttempt errors, this field is final and errors are never removed from here, as the ResizeRequest is not going to retry.
|
35448
35518
|
Structure is documented below.
|
35449
35519
|
:param Sequence['ResizeRequestStatusLastAttemptArgs'] last_attempts: (Output)
|
35450
|
-
|
35520
|
+
Information about the last attempt to fulfill the request. The value is temporary since the ResizeRequest can retry, as long as it's still active and the last attempt value can either be cleared or replaced with a different error. Since ResizeRequest retries infrequently, the value may be stale and no longer show an active problem. The value is cleared when ResizeRequest transitions to the final state (becomes inactive). If the final state is FAILED the error describing it will be storred in the "error" field only.
|
35451
35521
|
Structure is documented below.
|
35452
35522
|
"""
|
35453
35523
|
if errors is not None:
|
@@ -35460,7 +35530,7 @@ class ResizeRequestStatus(dict):
|
|
35460
35530
|
def errors(self) -> Optional[Sequence['outputs.ResizeRequestStatusError']]:
|
35461
35531
|
"""
|
35462
35532
|
(Output)
|
35463
|
-
|
35533
|
+
Fatal errors encountered during the queueing or provisioning phases of the ResizeRequest that caused the transition to the FAILED state. Contrary to the lastAttempt errors, this field is final and errors are never removed from here, as the ResizeRequest is not going to retry.
|
35464
35534
|
Structure is documented below.
|
35465
35535
|
"""
|
35466
35536
|
return pulumi.get(self, "errors")
|
@@ -35470,7 +35540,7 @@ class ResizeRequestStatus(dict):
|
|
35470
35540
|
def last_attempts(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttempt']]:
|
35471
35541
|
"""
|
35472
35542
|
(Output)
|
35473
|
-
|
35543
|
+
Information about the last attempt to fulfill the request. The value is temporary since the ResizeRequest can retry, as long as it's still active and the last attempt value can either be cleared or replaced with a different error. Since ResizeRequest retries infrequently, the value may be stale and no longer show an active problem. The value is cleared when ResizeRequest transitions to the final state (becomes inactive). If the final state is FAILED the error describing it will be storred in the "error" field only.
|
35474
35544
|
Structure is documented below.
|
35475
35545
|
"""
|
35476
35546
|
return pulumi.get(self, "last_attempts")
|
@@ -35482,7 +35552,7 @@ class ResizeRequestStatusError(dict):
|
|
35482
35552
|
errors: Optional[Sequence['outputs.ResizeRequestStatusErrorError']] = None):
|
35483
35553
|
"""
|
35484
35554
|
:param Sequence['ResizeRequestStatusErrorErrorArgs'] errors: (Output)
|
35485
|
-
|
35555
|
+
The array of errors encountered while processing this operation.
|
35486
35556
|
Structure is documented below.
|
35487
35557
|
"""
|
35488
35558
|
if errors is not None:
|
@@ -35493,7 +35563,7 @@ class ResizeRequestStatusError(dict):
|
|
35493
35563
|
def errors(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorError']]:
|
35494
35564
|
"""
|
35495
35565
|
(Output)
|
35496
|
-
|
35566
|
+
The array of errors encountered while processing this operation.
|
35497
35567
|
Structure is documented below.
|
35498
35568
|
"""
|
35499
35569
|
return pulumi.get(self, "errors")
|
@@ -35525,12 +35595,12 @@ class ResizeRequestStatusErrorError(dict):
|
|
35525
35595
|
message: Optional[str] = None):
|
35526
35596
|
"""
|
35527
35597
|
:param str code: (Output)
|
35528
|
-
|
35598
|
+
The error type identifier for this error.
|
35529
35599
|
:param Sequence['ResizeRequestStatusErrorErrorErrorDetailArgs'] error_details: (Output)
|
35530
|
-
|
35600
|
+
An array of messages that contain the error details. There is a set of defined message types to use for providing details.The syntax depends on the error code. For example, QuotaExceededInfo will have details when the error code is QUOTA_EXCEEDED.
|
35531
35601
|
Structure is documented below.
|
35532
35602
|
:param str location: (Output)
|
35533
|
-
|
35603
|
+
Indicates the field in the request that caused the error. This property is optional.
|
35534
35604
|
:param str message: (Output)
|
35535
35605
|
The localized error message in the above locale.
|
35536
35606
|
"""
|
@@ -35548,7 +35618,7 @@ class ResizeRequestStatusErrorError(dict):
|
|
35548
35618
|
def code(self) -> Optional[str]:
|
35549
35619
|
"""
|
35550
35620
|
(Output)
|
35551
|
-
|
35621
|
+
The error type identifier for this error.
|
35552
35622
|
"""
|
35553
35623
|
return pulumi.get(self, "code")
|
35554
35624
|
|
@@ -35557,7 +35627,7 @@ class ResizeRequestStatusErrorError(dict):
|
|
35557
35627
|
def error_details(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetail']]:
|
35558
35628
|
"""
|
35559
35629
|
(Output)
|
35560
|
-
|
35630
|
+
An array of messages that contain the error details. There is a set of defined message types to use for providing details.The syntax depends on the error code. For example, QuotaExceededInfo will have details when the error code is QUOTA_EXCEEDED.
|
35561
35631
|
Structure is documented below.
|
35562
35632
|
"""
|
35563
35633
|
return pulumi.get(self, "error_details")
|
@@ -35567,7 +35637,7 @@ class ResizeRequestStatusErrorError(dict):
|
|
35567
35637
|
def location(self) -> Optional[str]:
|
35568
35638
|
"""
|
35569
35639
|
(Output)
|
35570
|
-
|
35640
|
+
Indicates the field in the request that caused the error. This property is optional.
|
35571
35641
|
"""
|
35572
35642
|
return pulumi.get(self, "location")
|
35573
35643
|
|
@@ -35611,16 +35681,16 @@ class ResizeRequestStatusErrorErrorErrorDetail(dict):
|
|
35611
35681
|
quota_infos: Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailQuotaInfo']] = None):
|
35612
35682
|
"""
|
35613
35683
|
:param Sequence['ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs'] error_infos: (Output)
|
35614
|
-
|
35684
|
+
A nested object resource.
|
35615
35685
|
Structure is documented below.
|
35616
35686
|
:param Sequence['ResizeRequestStatusErrorErrorErrorDetailHelpArgs'] helps: (Output)
|
35617
|
-
|
35687
|
+
A nested object resource.
|
35618
35688
|
Structure is documented below.
|
35619
35689
|
:param Sequence['ResizeRequestStatusErrorErrorErrorDetailLocalizedMessageArgs'] localized_messages: (Output)
|
35620
|
-
|
35690
|
+
A nested object resource.
|
35621
35691
|
Structure is documented below.
|
35622
35692
|
:param Sequence['ResizeRequestStatusErrorErrorErrorDetailQuotaInfoArgs'] quota_infos: (Output)
|
35623
|
-
|
35693
|
+
A nested object resource.
|
35624
35694
|
Structure is documented below.
|
35625
35695
|
"""
|
35626
35696
|
if error_infos is not None:
|
@@ -35637,7 +35707,7 @@ class ResizeRequestStatusErrorErrorErrorDetail(dict):
|
|
35637
35707
|
def error_infos(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailErrorInfo']]:
|
35638
35708
|
"""
|
35639
35709
|
(Output)
|
35640
|
-
|
35710
|
+
A nested object resource.
|
35641
35711
|
Structure is documented below.
|
35642
35712
|
"""
|
35643
35713
|
return pulumi.get(self, "error_infos")
|
@@ -35647,7 +35717,7 @@ class ResizeRequestStatusErrorErrorErrorDetail(dict):
|
|
35647
35717
|
def helps(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailHelp']]:
|
35648
35718
|
"""
|
35649
35719
|
(Output)
|
35650
|
-
|
35720
|
+
A nested object resource.
|
35651
35721
|
Structure is documented below.
|
35652
35722
|
"""
|
35653
35723
|
return pulumi.get(self, "helps")
|
@@ -35657,7 +35727,7 @@ class ResizeRequestStatusErrorErrorErrorDetail(dict):
|
|
35657
35727
|
def localized_messages(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailLocalizedMessage']]:
|
35658
35728
|
"""
|
35659
35729
|
(Output)
|
35660
|
-
|
35730
|
+
A nested object resource.
|
35661
35731
|
Structure is documented below.
|
35662
35732
|
"""
|
35663
35733
|
return pulumi.get(self, "localized_messages")
|
@@ -35667,7 +35737,7 @@ class ResizeRequestStatusErrorErrorErrorDetail(dict):
|
|
35667
35737
|
def quota_infos(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailQuotaInfo']]:
|
35668
35738
|
"""
|
35669
35739
|
(Output)
|
35670
|
-
|
35740
|
+
A nested object resource.
|
35671
35741
|
Structure is documented below.
|
35672
35742
|
"""
|
35673
35743
|
return pulumi.get(self, "quota_infos")
|
@@ -35681,12 +35751,11 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfo(dict):
|
|
35681
35751
|
reason: Optional[str] = None):
|
35682
35752
|
"""
|
35683
35753
|
:param str domain: (Output)
|
35684
|
-
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
35754
|
+
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
35685
35755
|
:param Mapping[str, str] metadatas: (Output)
|
35686
35756
|
Additional structured details about this error.
|
35687
|
-
Keys must match /[a-z][a-zA-Z0-9-_]+/ but should ideally be lowerCamelCase. Also they must be limited to 64 characters in length. When identifying the current value of an exceeded limit, the units should be contained in the key, not the value. For example, rather than {"instanceLimit": "100/request"}, should be returned as, {"instanceLimitPerRequest": "100"}, if the client exceeds the number of instances that can be created in a single (batch) request.
|
35688
35757
|
:param str reason: (Output)
|
35689
|
-
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
35758
|
+
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
35690
35759
|
"""
|
35691
35760
|
if domain is not None:
|
35692
35761
|
pulumi.set(__self__, "domain", domain)
|
@@ -35700,7 +35769,7 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfo(dict):
|
|
35700
35769
|
def domain(self) -> Optional[str]:
|
35701
35770
|
"""
|
35702
35771
|
(Output)
|
35703
|
-
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
35772
|
+
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
35704
35773
|
"""
|
35705
35774
|
return pulumi.get(self, "domain")
|
35706
35775
|
|
@@ -35710,7 +35779,6 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfo(dict):
|
|
35710
35779
|
"""
|
35711
35780
|
(Output)
|
35712
35781
|
Additional structured details about this error.
|
35713
|
-
Keys must match /[a-z][a-zA-Z0-9-_]+/ but should ideally be lowerCamelCase. Also they must be limited to 64 characters in length. When identifying the current value of an exceeded limit, the units should be contained in the key, not the value. For example, rather than {"instanceLimit": "100/request"}, should be returned as, {"instanceLimitPerRequest": "100"}, if the client exceeds the number of instances that can be created in a single (batch) request.
|
35714
35782
|
"""
|
35715
35783
|
return pulumi.get(self, "metadatas")
|
35716
35784
|
|
@@ -35719,7 +35787,7 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfo(dict):
|
|
35719
35787
|
def reason(self) -> Optional[str]:
|
35720
35788
|
"""
|
35721
35789
|
(Output)
|
35722
|
-
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
35790
|
+
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
35723
35791
|
"""
|
35724
35792
|
return pulumi.get(self, "reason")
|
35725
35793
|
|
@@ -35730,7 +35798,7 @@ class ResizeRequestStatusErrorErrorErrorDetailHelp(dict):
|
|
35730
35798
|
links: Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailHelpLink']] = None):
|
35731
35799
|
"""
|
35732
35800
|
:param Sequence['ResizeRequestStatusErrorErrorErrorDetailHelpLinkArgs'] links: (Output)
|
35733
|
-
|
35801
|
+
A nested object resource.
|
35734
35802
|
Structure is documented below.
|
35735
35803
|
"""
|
35736
35804
|
if links is not None:
|
@@ -35741,7 +35809,7 @@ class ResizeRequestStatusErrorErrorErrorDetailHelp(dict):
|
|
35741
35809
|
def links(self) -> Optional[Sequence['outputs.ResizeRequestStatusErrorErrorErrorDetailHelpLink']]:
|
35742
35810
|
"""
|
35743
35811
|
(Output)
|
35744
|
-
|
35812
|
+
A nested object resource.
|
35745
35813
|
Structure is documented below.
|
35746
35814
|
"""
|
35747
35815
|
return pulumi.get(self, "links")
|
@@ -35935,7 +36003,7 @@ class ResizeRequestStatusLastAttempt(dict):
|
|
35935
36003
|
errors: Optional[Sequence['outputs.ResizeRequestStatusLastAttemptError']] = None):
|
35936
36004
|
"""
|
35937
36005
|
:param Sequence['ResizeRequestStatusLastAttemptErrorArgs'] errors: (Output)
|
35938
|
-
|
36006
|
+
Fatal errors encountered during the queueing or provisioning phases of the ResizeRequest that caused the transition to the FAILED state. Contrary to the lastAttempt errors, this field is final and errors are never removed from here, as the ResizeRequest is not going to retry.
|
35939
36007
|
Structure is documented below.
|
35940
36008
|
"""
|
35941
36009
|
if errors is not None:
|
@@ -35946,7 +36014,7 @@ class ResizeRequestStatusLastAttempt(dict):
|
|
35946
36014
|
def errors(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptError']]:
|
35947
36015
|
"""
|
35948
36016
|
(Output)
|
35949
|
-
|
36017
|
+
Fatal errors encountered during the queueing or provisioning phases of the ResizeRequest that caused the transition to the FAILED state. Contrary to the lastAttempt errors, this field is final and errors are never removed from here, as the ResizeRequest is not going to retry.
|
35950
36018
|
Structure is documented below.
|
35951
36019
|
"""
|
35952
36020
|
return pulumi.get(self, "errors")
|
@@ -35958,7 +36026,7 @@ class ResizeRequestStatusLastAttemptError(dict):
|
|
35958
36026
|
errors: Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorError']] = None):
|
35959
36027
|
"""
|
35960
36028
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorArgs'] errors: (Output)
|
35961
|
-
|
36029
|
+
The array of errors encountered while processing this operation.
|
35962
36030
|
Structure is documented below.
|
35963
36031
|
"""
|
35964
36032
|
if errors is not None:
|
@@ -35969,7 +36037,7 @@ class ResizeRequestStatusLastAttemptError(dict):
|
|
35969
36037
|
def errors(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorError']]:
|
35970
36038
|
"""
|
35971
36039
|
(Output)
|
35972
|
-
|
36040
|
+
The array of errors encountered while processing this operation.
|
35973
36041
|
Structure is documented below.
|
35974
36042
|
"""
|
35975
36043
|
return pulumi.get(self, "errors")
|
@@ -36001,12 +36069,12 @@ class ResizeRequestStatusLastAttemptErrorError(dict):
|
|
36001
36069
|
message: Optional[str] = None):
|
36002
36070
|
"""
|
36003
36071
|
:param str code: (Output)
|
36004
|
-
|
36072
|
+
The error type identifier for this error.
|
36005
36073
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs'] error_details: (Output)
|
36006
|
-
|
36074
|
+
An array of messages that contain the error details. There is a set of defined message types to use for providing details.The syntax depends on the error code. For example, QuotaExceededInfo will have details when the error code is QUOTA_EXCEEDED.
|
36007
36075
|
Structure is documented below.
|
36008
36076
|
:param str location: (Output)
|
36009
|
-
|
36077
|
+
Indicates the field in the request that caused the error. This property is optional.
|
36010
36078
|
:param str message: (Output)
|
36011
36079
|
The localized error message in the above locale.
|
36012
36080
|
"""
|
@@ -36024,7 +36092,7 @@ class ResizeRequestStatusLastAttemptErrorError(dict):
|
|
36024
36092
|
def code(self) -> Optional[str]:
|
36025
36093
|
"""
|
36026
36094
|
(Output)
|
36027
|
-
|
36095
|
+
The error type identifier for this error.
|
36028
36096
|
"""
|
36029
36097
|
return pulumi.get(self, "code")
|
36030
36098
|
|
@@ -36033,7 +36101,7 @@ class ResizeRequestStatusLastAttemptErrorError(dict):
|
|
36033
36101
|
def error_details(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetail']]:
|
36034
36102
|
"""
|
36035
36103
|
(Output)
|
36036
|
-
|
36104
|
+
An array of messages that contain the error details. There is a set of defined message types to use for providing details.The syntax depends on the error code. For example, QuotaExceededInfo will have details when the error code is QUOTA_EXCEEDED.
|
36037
36105
|
Structure is documented below.
|
36038
36106
|
"""
|
36039
36107
|
return pulumi.get(self, "error_details")
|
@@ -36043,7 +36111,7 @@ class ResizeRequestStatusLastAttemptErrorError(dict):
|
|
36043
36111
|
def location(self) -> Optional[str]:
|
36044
36112
|
"""
|
36045
36113
|
(Output)
|
36046
|
-
|
36114
|
+
Indicates the field in the request that caused the error. This property is optional.
|
36047
36115
|
"""
|
36048
36116
|
return pulumi.get(self, "location")
|
36049
36117
|
|
@@ -36087,16 +36155,16 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetail(dict):
|
|
36087
36155
|
quota_infos: Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfo']] = None):
|
36088
36156
|
"""
|
36089
36157
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs'] error_infos: (Output)
|
36090
|
-
|
36158
|
+
A nested object resource.
|
36091
36159
|
Structure is documented below.
|
36092
36160
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpArgs'] helps: (Output)
|
36093
|
-
|
36161
|
+
A nested object resource.
|
36094
36162
|
Structure is documented below.
|
36095
36163
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessageArgs'] localized_messages: (Output)
|
36096
|
-
|
36164
|
+
A nested object resource.
|
36097
36165
|
Structure is documented below.
|
36098
36166
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgs'] quota_infos: (Output)
|
36099
|
-
|
36167
|
+
A nested object resource.
|
36100
36168
|
Structure is documented below.
|
36101
36169
|
"""
|
36102
36170
|
if error_infos is not None:
|
@@ -36113,7 +36181,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetail(dict):
|
|
36113
36181
|
def error_infos(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfo']]:
|
36114
36182
|
"""
|
36115
36183
|
(Output)
|
36116
|
-
|
36184
|
+
A nested object resource.
|
36117
36185
|
Structure is documented below.
|
36118
36186
|
"""
|
36119
36187
|
return pulumi.get(self, "error_infos")
|
@@ -36123,7 +36191,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetail(dict):
|
|
36123
36191
|
def helps(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelp']]:
|
36124
36192
|
"""
|
36125
36193
|
(Output)
|
36126
|
-
|
36194
|
+
A nested object resource.
|
36127
36195
|
Structure is documented below.
|
36128
36196
|
"""
|
36129
36197
|
return pulumi.get(self, "helps")
|
@@ -36133,7 +36201,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetail(dict):
|
|
36133
36201
|
def localized_messages(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessage']]:
|
36134
36202
|
"""
|
36135
36203
|
(Output)
|
36136
|
-
|
36204
|
+
A nested object resource.
|
36137
36205
|
Structure is documented below.
|
36138
36206
|
"""
|
36139
36207
|
return pulumi.get(self, "localized_messages")
|
@@ -36143,7 +36211,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetail(dict):
|
|
36143
36211
|
def quota_infos(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfo']]:
|
36144
36212
|
"""
|
36145
36213
|
(Output)
|
36146
|
-
|
36214
|
+
A nested object resource.
|
36147
36215
|
Structure is documented below.
|
36148
36216
|
"""
|
36149
36217
|
return pulumi.get(self, "quota_infos")
|
@@ -36157,12 +36225,11 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfo(dict):
|
|
36157
36225
|
reason: Optional[str] = None):
|
36158
36226
|
"""
|
36159
36227
|
:param str domain: (Output)
|
36160
|
-
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
36228
|
+
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
36161
36229
|
:param Mapping[str, str] metadatas: (Output)
|
36162
36230
|
Additional structured details about this error.
|
36163
|
-
Keys must match /[a-z][a-zA-Z0-9-_]+/ but should ideally be lowerCamelCase. Also they must be limited to 64 characters in length. When identifying the current value of an exceeded limit, the units should be contained in the key, not the value. For example, rather than {"instanceLimit": "100/request"}, should be returned as, {"instanceLimitPerRequest": "100"}, if the client exceeds the number of instances that can be created in a single (batch) request.
|
36164
36231
|
:param str reason: (Output)
|
36165
|
-
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
36232
|
+
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
36166
36233
|
"""
|
36167
36234
|
if domain is not None:
|
36168
36235
|
pulumi.set(__self__, "domain", domain)
|
@@ -36176,7 +36243,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfo(dict):
|
|
36176
36243
|
def domain(self) -> Optional[str]:
|
36177
36244
|
"""
|
36178
36245
|
(Output)
|
36179
|
-
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
36246
|
+
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com".
|
36180
36247
|
"""
|
36181
36248
|
return pulumi.get(self, "domain")
|
36182
36249
|
|
@@ -36186,7 +36253,6 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfo(dict):
|
|
36186
36253
|
"""
|
36187
36254
|
(Output)
|
36188
36255
|
Additional structured details about this error.
|
36189
|
-
Keys must match /[a-z][a-zA-Z0-9-_]+/ but should ideally be lowerCamelCase. Also they must be limited to 64 characters in length. When identifying the current value of an exceeded limit, the units should be contained in the key, not the value. For example, rather than {"instanceLimit": "100/request"}, should be returned as, {"instanceLimitPerRequest": "100"}, if the client exceeds the number of instances that can be created in a single (batch) request.
|
36190
36256
|
"""
|
36191
36257
|
return pulumi.get(self, "metadatas")
|
36192
36258
|
|
@@ -36195,7 +36261,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfo(dict):
|
|
36195
36261
|
def reason(self) -> Optional[str]:
|
36196
36262
|
"""
|
36197
36263
|
(Output)
|
36198
|
-
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
36264
|
+
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors.
|
36199
36265
|
"""
|
36200
36266
|
return pulumi.get(self, "reason")
|
36201
36267
|
|
@@ -36206,7 +36272,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelp(dict):
|
|
36206
36272
|
links: Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLink']] = None):
|
36207
36273
|
"""
|
36208
36274
|
:param Sequence['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLinkArgs'] links: (Output)
|
36209
|
-
|
36275
|
+
A nested object resource.
|
36210
36276
|
Structure is documented below.
|
36211
36277
|
"""
|
36212
36278
|
if links is not None:
|
@@ -36217,7 +36283,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelp(dict):
|
|
36217
36283
|
def links(self) -> Optional[Sequence['outputs.ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLink']]:
|
36218
36284
|
"""
|
36219
36285
|
(Output)
|
36220
|
-
|
36286
|
+
A nested object resource.
|
36221
36287
|
Structure is documented below.
|
36222
36288
|
"""
|
36223
36289
|
return pulumi.get(self, "links")
|
@@ -53433,6 +53499,7 @@ class GetInstanceReservationAffinitySpecificReservationResult(dict):
|
|
53433
53499
|
class GetInstanceSchedulingResult(dict):
|
53434
53500
|
def __init__(__self__, *,
|
53435
53501
|
automatic_restart: bool,
|
53502
|
+
availability_domain: int,
|
53436
53503
|
host_error_timeout_seconds: int,
|
53437
53504
|
instance_termination_action: str,
|
53438
53505
|
local_ssd_recovery_timeouts: Sequence['outputs.GetInstanceSchedulingLocalSsdRecoveryTimeoutResult'],
|
@@ -53447,6 +53514,7 @@ class GetInstanceSchedulingResult(dict):
|
|
53447
53514
|
"""
|
53448
53515
|
:param bool automatic_restart: Specifies if the instance should be
|
53449
53516
|
restarted if it was terminated by Compute Engine (not a user).
|
53517
|
+
:param int availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
53450
53518
|
:param int host_error_timeout_seconds: Beta Time in seconds for host error detection.
|
53451
53519
|
:param str instance_termination_action: Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
|
53452
53520
|
:param Sequence['GetInstanceSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -53464,6 +53532,7 @@ class GetInstanceSchedulingResult(dict):
|
|
53464
53532
|
:param str provisioning_model: Describe the type of preemptible VM.
|
53465
53533
|
"""
|
53466
53534
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
53535
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
53467
53536
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
53468
53537
|
pulumi.set(__self__, "instance_termination_action", instance_termination_action)
|
53469
53538
|
pulumi.set(__self__, "local_ssd_recovery_timeouts", local_ssd_recovery_timeouts)
|
@@ -53485,6 +53554,14 @@ class GetInstanceSchedulingResult(dict):
|
|
53485
53554
|
"""
|
53486
53555
|
return pulumi.get(self, "automatic_restart")
|
53487
53556
|
|
53557
|
+
@property
|
53558
|
+
@pulumi.getter(name="availabilityDomain")
|
53559
|
+
def availability_domain(self) -> int:
|
53560
|
+
"""
|
53561
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
53562
|
+
"""
|
53563
|
+
return pulumi.get(self, "availability_domain")
|
53564
|
+
|
53488
53565
|
@property
|
53489
53566
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
53490
53567
|
def host_error_timeout_seconds(self) -> int:
|
@@ -54752,6 +54829,7 @@ class GetInstanceTemplateReservationAffinitySpecificReservationResult(dict):
|
|
54752
54829
|
class GetInstanceTemplateSchedulingResult(dict):
|
54753
54830
|
def __init__(__self__, *,
|
54754
54831
|
automatic_restart: bool,
|
54832
|
+
availability_domain: int,
|
54755
54833
|
host_error_timeout_seconds: int,
|
54756
54834
|
instance_termination_action: str,
|
54757
54835
|
local_ssd_recovery_timeouts: Sequence['outputs.GetInstanceTemplateSchedulingLocalSsdRecoveryTimeoutResult'],
|
@@ -54767,6 +54845,7 @@ class GetInstanceTemplateSchedulingResult(dict):
|
|
54767
54845
|
:param bool automatic_restart: Specifies whether the instance should be
|
54768
54846
|
automatically restarted if it is terminated by Compute Engine (not
|
54769
54847
|
terminated by a user). This defaults to true.
|
54848
|
+
:param int availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
54770
54849
|
:param int host_error_timeout_seconds: Beta Time in seconds for host error detection.
|
54771
54850
|
:param str instance_termination_action: Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
|
54772
54851
|
:param Sequence['GetInstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -54790,6 +54869,7 @@ class GetInstanceTemplateSchedulingResult(dict):
|
|
54790
54869
|
:param str provisioning_model: Describe the type of preemptible VM.
|
54791
54870
|
"""
|
54792
54871
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
54872
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
54793
54873
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
54794
54874
|
pulumi.set(__self__, "instance_termination_action", instance_termination_action)
|
54795
54875
|
pulumi.set(__self__, "local_ssd_recovery_timeouts", local_ssd_recovery_timeouts)
|
@@ -54812,6 +54892,14 @@ class GetInstanceTemplateSchedulingResult(dict):
|
|
54812
54892
|
"""
|
54813
54893
|
return pulumi.get(self, "automatic_restart")
|
54814
54894
|
|
54895
|
+
@property
|
54896
|
+
@pulumi.getter(name="availabilityDomain")
|
54897
|
+
def availability_domain(self) -> int:
|
54898
|
+
"""
|
54899
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
54900
|
+
"""
|
54901
|
+
return pulumi.get(self, "availability_domain")
|
54902
|
+
|
54815
54903
|
@property
|
54816
54904
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
54817
54905
|
def host_error_timeout_seconds(self) -> int:
|
@@ -57085,6 +57173,7 @@ class GetRegionInstanceTemplateReservationAffinitySpecificReservationResult(dict
|
|
57085
57173
|
class GetRegionInstanceTemplateSchedulingResult(dict):
|
57086
57174
|
def __init__(__self__, *,
|
57087
57175
|
automatic_restart: bool,
|
57176
|
+
availability_domain: int,
|
57088
57177
|
host_error_timeout_seconds: int,
|
57089
57178
|
instance_termination_action: str,
|
57090
57179
|
local_ssd_recovery_timeouts: Sequence['outputs.GetRegionInstanceTemplateSchedulingLocalSsdRecoveryTimeoutResult'],
|
@@ -57100,6 +57189,7 @@ class GetRegionInstanceTemplateSchedulingResult(dict):
|
|
57100
57189
|
:param bool automatic_restart: Specifies whether the instance should be
|
57101
57190
|
automatically restarted if it is terminated by Compute Engine (not
|
57102
57191
|
terminated by a user). This defaults to true.
|
57192
|
+
:param int availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
57103
57193
|
:param int host_error_timeout_seconds: Beta Time in seconds for host error detection.
|
57104
57194
|
:param str instance_termination_action: Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
|
57105
57195
|
:param Sequence['GetRegionInstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -57123,6 +57213,7 @@ class GetRegionInstanceTemplateSchedulingResult(dict):
|
|
57123
57213
|
:param str provisioning_model: Describe the type of preemptible VM.
|
57124
57214
|
"""
|
57125
57215
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
57216
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
57126
57217
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
57127
57218
|
pulumi.set(__self__, "instance_termination_action", instance_termination_action)
|
57128
57219
|
pulumi.set(__self__, "local_ssd_recovery_timeouts", local_ssd_recovery_timeouts)
|
@@ -57145,6 +57236,14 @@ class GetRegionInstanceTemplateSchedulingResult(dict):
|
|
57145
57236
|
"""
|
57146
57237
|
return pulumi.get(self, "automatic_restart")
|
57147
57238
|
|
57239
|
+
@property
|
57240
|
+
@pulumi.getter(name="availabilityDomain")
|
57241
|
+
def availability_domain(self) -> int:
|
57242
|
+
"""
|
57243
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
57244
|
+
"""
|
57245
|
+
return pulumi.get(self, "availability_domain")
|
57246
|
+
|
57148
57247
|
@property
|
57149
57248
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
57150
57249
|
def host_error_timeout_seconds(self) -> int:
|