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/_inputs.py
CHANGED
@@ -10570,7 +10570,7 @@ if not MYPY:
|
|
10570
10570
|
"""
|
10571
10571
|
resource_policies: NotRequired[pulumi.Input[str]]
|
10572
10572
|
"""
|
10573
|
-
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.
|
10573
|
+
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.
|
10574
10574
|
"""
|
10575
10575
|
size: NotRequired[pulumi.Input[int]]
|
10576
10576
|
"""
|
@@ -10635,7 +10635,7 @@ class InstanceBootDiskInitializeParamsArgs:
|
|
10635
10635
|
for an update of throughput every 4 hours. To update your hyperdisk more
|
10636
10636
|
frequently, you'll need to manually delete and recreate it.
|
10637
10637
|
:param pulumi.Input[Mapping[str, pulumi.Input[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.
|
10638
|
-
:param pulumi.Input[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.
|
10638
|
+
:param pulumi.Input[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.
|
10639
10639
|
:param pulumi.Input[int] size: The size of the image in gigabytes. If not specified, it
|
10640
10640
|
will inherit the size of its base image.
|
10641
10641
|
:param pulumi.Input[str] storage_pool: The URL or the name of the storage pool in which the new disk is created.
|
@@ -10765,7 +10765,7 @@ class InstanceBootDiskInitializeParamsArgs:
|
|
10765
10765
|
@pulumi.getter(name="resourcePolicies")
|
10766
10766
|
def resource_policies(self) -> Optional[pulumi.Input[str]]:
|
10767
10767
|
"""
|
10768
|
-
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.
|
10768
|
+
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.
|
10769
10769
|
"""
|
10770
10770
|
return pulumi.get(self, "resource_policies")
|
10771
10771
|
|
@@ -12428,6 +12428,10 @@ if not MYPY:
|
|
12428
12428
|
"""
|
12429
12429
|
Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
|
12430
12430
|
"""
|
12431
|
+
availability_domain: NotRequired[pulumi.Input[int]]
|
12432
|
+
"""
|
12433
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
12434
|
+
"""
|
12431
12435
|
host_error_timeout_seconds: NotRequired[pulumi.Input[int]]
|
12432
12436
|
"""
|
12433
12437
|
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.
|
@@ -12479,6 +12483,7 @@ elif False:
|
|
12479
12483
|
class InstanceFromMachineImageSchedulingArgs:
|
12480
12484
|
def __init__(__self__, *,
|
12481
12485
|
automatic_restart: Optional[pulumi.Input[bool]] = None,
|
12486
|
+
availability_domain: Optional[pulumi.Input[int]] = None,
|
12482
12487
|
host_error_timeout_seconds: Optional[pulumi.Input[int]] = None,
|
12483
12488
|
instance_termination_action: Optional[pulumi.Input[str]] = None,
|
12484
12489
|
local_ssd_recovery_timeout: Optional[pulumi.Input['InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs']] = None,
|
@@ -12492,6 +12497,7 @@ class InstanceFromMachineImageSchedulingArgs:
|
|
12492
12497
|
provisioning_model: Optional[pulumi.Input[str]] = None):
|
12493
12498
|
"""
|
12494
12499
|
:param pulumi.Input[bool] automatic_restart: Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
|
12500
|
+
:param pulumi.Input[int] availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
12495
12501
|
:param pulumi.Input[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.
|
12496
12502
|
:param pulumi.Input[str] instance_termination_action: Specifies the action GCE should take when SPOT VM is preempted.
|
12497
12503
|
:param pulumi.Input['InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeout: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -12508,6 +12514,8 @@ class InstanceFromMachineImageSchedulingArgs:
|
|
12508
12514
|
"""
|
12509
12515
|
if automatic_restart is not None:
|
12510
12516
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
12517
|
+
if availability_domain is not None:
|
12518
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
12511
12519
|
if host_error_timeout_seconds is not None:
|
12512
12520
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
12513
12521
|
if instance_termination_action is not None:
|
@@ -12543,6 +12551,18 @@ class InstanceFromMachineImageSchedulingArgs:
|
|
12543
12551
|
def automatic_restart(self, value: Optional[pulumi.Input[bool]]):
|
12544
12552
|
pulumi.set(self, "automatic_restart", value)
|
12545
12553
|
|
12554
|
+
@property
|
12555
|
+
@pulumi.getter(name="availabilityDomain")
|
12556
|
+
def availability_domain(self) -> Optional[pulumi.Input[int]]:
|
12557
|
+
"""
|
12558
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
12559
|
+
"""
|
12560
|
+
return pulumi.get(self, "availability_domain")
|
12561
|
+
|
12562
|
+
@availability_domain.setter
|
12563
|
+
def availability_domain(self, value: Optional[pulumi.Input[int]]):
|
12564
|
+
pulumi.set(self, "availability_domain", value)
|
12565
|
+
|
12546
12566
|
@property
|
12547
12567
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
12548
12568
|
def host_error_timeout_seconds(self) -> Optional[pulumi.Input[int]]:
|
@@ -14634,6 +14654,10 @@ if not MYPY:
|
|
14634
14654
|
"""
|
14635
14655
|
Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
|
14636
14656
|
"""
|
14657
|
+
availability_domain: NotRequired[pulumi.Input[int]]
|
14658
|
+
"""
|
14659
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
14660
|
+
"""
|
14637
14661
|
host_error_timeout_seconds: NotRequired[pulumi.Input[int]]
|
14638
14662
|
"""
|
14639
14663
|
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.
|
@@ -14685,6 +14709,7 @@ elif False:
|
|
14685
14709
|
class InstanceFromTemplateSchedulingArgs:
|
14686
14710
|
def __init__(__self__, *,
|
14687
14711
|
automatic_restart: Optional[pulumi.Input[bool]] = None,
|
14712
|
+
availability_domain: Optional[pulumi.Input[int]] = None,
|
14688
14713
|
host_error_timeout_seconds: Optional[pulumi.Input[int]] = None,
|
14689
14714
|
instance_termination_action: Optional[pulumi.Input[str]] = None,
|
14690
14715
|
local_ssd_recovery_timeout: Optional[pulumi.Input['InstanceFromTemplateSchedulingLocalSsdRecoveryTimeoutArgs']] = None,
|
@@ -14698,6 +14723,7 @@ class InstanceFromTemplateSchedulingArgs:
|
|
14698
14723
|
provisioning_model: Optional[pulumi.Input[str]] = None):
|
14699
14724
|
"""
|
14700
14725
|
:param pulumi.Input[bool] automatic_restart: Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
|
14726
|
+
:param pulumi.Input[int] availability_domain: Specifies the availability domain, which this instance should be scheduled on.
|
14701
14727
|
:param pulumi.Input[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.
|
14702
14728
|
:param pulumi.Input[str] instance_termination_action: Specifies the action GCE should take when SPOT VM is preempted.
|
14703
14729
|
:param pulumi.Input['InstanceFromTemplateSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeout: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -14714,6 +14740,8 @@ class InstanceFromTemplateSchedulingArgs:
|
|
14714
14740
|
"""
|
14715
14741
|
if automatic_restart is not None:
|
14716
14742
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
14743
|
+
if availability_domain is not None:
|
14744
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
14717
14745
|
if host_error_timeout_seconds is not None:
|
14718
14746
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
14719
14747
|
if instance_termination_action is not None:
|
@@ -14749,6 +14777,18 @@ class InstanceFromTemplateSchedulingArgs:
|
|
14749
14777
|
def automatic_restart(self, value: Optional[pulumi.Input[bool]]):
|
14750
14778
|
pulumi.set(self, "automatic_restart", value)
|
14751
14779
|
|
14780
|
+
@property
|
14781
|
+
@pulumi.getter(name="availabilityDomain")
|
14782
|
+
def availability_domain(self) -> Optional[pulumi.Input[int]]:
|
14783
|
+
"""
|
14784
|
+
Specifies the availability domain, which this instance should be scheduled on.
|
14785
|
+
"""
|
14786
|
+
return pulumi.get(self, "availability_domain")
|
14787
|
+
|
14788
|
+
@availability_domain.setter
|
14789
|
+
def availability_domain(self, value: Optional[pulumi.Input[int]]):
|
14790
|
+
pulumi.set(self, "availability_domain", value)
|
14791
|
+
|
14752
14792
|
@property
|
14753
14793
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
14754
14794
|
def host_error_timeout_seconds(self) -> Optional[pulumi.Input[int]]:
|
@@ -17467,6 +17507,10 @@ if not MYPY:
|
|
17467
17507
|
restarted if it was terminated by Compute Engine (not a user).
|
17468
17508
|
Defaults to true.
|
17469
17509
|
"""
|
17510
|
+
availability_domain: NotRequired[pulumi.Input[int]]
|
17511
|
+
"""
|
17512
|
+
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.
|
17513
|
+
"""
|
17470
17514
|
host_error_timeout_seconds: NotRequired[pulumi.Input[int]]
|
17471
17515
|
"""
|
17472
17516
|
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.
|
@@ -17532,6 +17576,7 @@ elif False:
|
|
17532
17576
|
class InstanceSchedulingArgs:
|
17533
17577
|
def __init__(__self__, *,
|
17534
17578
|
automatic_restart: Optional[pulumi.Input[bool]] = None,
|
17579
|
+
availability_domain: Optional[pulumi.Input[int]] = None,
|
17535
17580
|
host_error_timeout_seconds: Optional[pulumi.Input[int]] = None,
|
17536
17581
|
instance_termination_action: Optional[pulumi.Input[str]] = None,
|
17537
17582
|
local_ssd_recovery_timeout: Optional[pulumi.Input['InstanceSchedulingLocalSsdRecoveryTimeoutArgs']] = None,
|
@@ -17547,6 +17592,7 @@ class InstanceSchedulingArgs:
|
|
17547
17592
|
:param pulumi.Input[bool] automatic_restart: Specifies if the instance should be
|
17548
17593
|
restarted if it was terminated by Compute Engine (not a user).
|
17549
17594
|
Defaults to true.
|
17595
|
+
:param pulumi.Input[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.
|
17550
17596
|
:param pulumi.Input[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.
|
17551
17597
|
:param pulumi.Input[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)
|
17552
17598
|
:param pulumi.Input['InstanceSchedulingLocalSsdRecoveryTimeoutArgs'] local_ssd_recovery_timeout: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -17575,6 +17621,8 @@ class InstanceSchedulingArgs:
|
|
17575
17621
|
"""
|
17576
17622
|
if automatic_restart is not None:
|
17577
17623
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
17624
|
+
if availability_domain is not None:
|
17625
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
17578
17626
|
if host_error_timeout_seconds is not None:
|
17579
17627
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
17580
17628
|
if instance_termination_action is not None:
|
@@ -17612,6 +17660,18 @@ class InstanceSchedulingArgs:
|
|
17612
17660
|
def automatic_restart(self, value: Optional[pulumi.Input[bool]]):
|
17613
17661
|
pulumi.set(self, "automatic_restart", value)
|
17614
17662
|
|
17663
|
+
@property
|
17664
|
+
@pulumi.getter(name="availabilityDomain")
|
17665
|
+
def availability_domain(self) -> Optional[pulumi.Input[int]]:
|
17666
|
+
"""
|
17667
|
+
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.
|
17668
|
+
"""
|
17669
|
+
return pulumi.get(self, "availability_domain")
|
17670
|
+
|
17671
|
+
@availability_domain.setter
|
17672
|
+
def availability_domain(self, value: Optional[pulumi.Input[int]]):
|
17673
|
+
pulumi.set(self, "availability_domain", value)
|
17674
|
+
|
17615
17675
|
@property
|
17616
17676
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
17617
17677
|
def host_error_timeout_seconds(self) -> Optional[pulumi.Input[int]]:
|
@@ -19929,6 +19989,10 @@ if not MYPY:
|
|
19929
19989
|
automatically restarted if it is terminated by Compute Engine (not
|
19930
19990
|
terminated by a user). This defaults to true.
|
19931
19991
|
"""
|
19992
|
+
availability_domain: NotRequired[pulumi.Input[int]]
|
19993
|
+
"""
|
19994
|
+
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.
|
19995
|
+
"""
|
19932
19996
|
host_error_timeout_seconds: NotRequired[pulumi.Input[int]]
|
19933
19997
|
"""
|
19934
19998
|
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.
|
@@ -19993,6 +20057,7 @@ elif False:
|
|
19993
20057
|
class InstanceTemplateSchedulingArgs:
|
19994
20058
|
def __init__(__self__, *,
|
19995
20059
|
automatic_restart: Optional[pulumi.Input[bool]] = None,
|
20060
|
+
availability_domain: Optional[pulumi.Input[int]] = None,
|
19996
20061
|
host_error_timeout_seconds: Optional[pulumi.Input[int]] = None,
|
19997
20062
|
instance_termination_action: Optional[pulumi.Input[str]] = None,
|
19998
20063
|
local_ssd_recovery_timeouts: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs']]]] = None,
|
@@ -20008,6 +20073,7 @@ class InstanceTemplateSchedulingArgs:
|
|
20008
20073
|
:param pulumi.Input[bool] automatic_restart: Specifies whether the instance should be
|
20009
20074
|
automatically restarted if it is terminated by Compute Engine (not
|
20010
20075
|
terminated by a user). This defaults to true.
|
20076
|
+
:param pulumi.Input[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.
|
20011
20077
|
:param pulumi.Input[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.
|
20012
20078
|
:param pulumi.Input[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)
|
20013
20079
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs']]] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -20035,6 +20101,8 @@ class InstanceTemplateSchedulingArgs:
|
|
20035
20101
|
"""
|
20036
20102
|
if automatic_restart is not None:
|
20037
20103
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
20104
|
+
if availability_domain is not None:
|
20105
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
20038
20106
|
if host_error_timeout_seconds is not None:
|
20039
20107
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
20040
20108
|
if instance_termination_action is not None:
|
@@ -20072,6 +20140,18 @@ class InstanceTemplateSchedulingArgs:
|
|
20072
20140
|
def automatic_restart(self, value: Optional[pulumi.Input[bool]]):
|
20073
20141
|
pulumi.set(self, "automatic_restart", value)
|
20074
20142
|
|
20143
|
+
@property
|
20144
|
+
@pulumi.getter(name="availabilityDomain")
|
20145
|
+
def availability_domain(self) -> Optional[pulumi.Input[int]]:
|
20146
|
+
"""
|
20147
|
+
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.
|
20148
|
+
"""
|
20149
|
+
return pulumi.get(self, "availability_domain")
|
20150
|
+
|
20151
|
+
@availability_domain.setter
|
20152
|
+
def availability_domain(self, value: Optional[pulumi.Input[int]]):
|
20153
|
+
pulumi.set(self, "availability_domain", value)
|
20154
|
+
|
20075
20155
|
@property
|
20076
20156
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
20077
20157
|
def host_error_timeout_seconds(self) -> Optional[pulumi.Input[int]]:
|
@@ -33486,6 +33566,10 @@ if not MYPY:
|
|
33486
33566
|
automatically restarted if it is terminated by Compute Engine (not
|
33487
33567
|
terminated by a user). This defaults to true.
|
33488
33568
|
"""
|
33569
|
+
availability_domain: NotRequired[pulumi.Input[int]]
|
33570
|
+
"""
|
33571
|
+
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.
|
33572
|
+
"""
|
33489
33573
|
host_error_timeout_seconds: NotRequired[pulumi.Input[int]]
|
33490
33574
|
"""
|
33491
33575
|
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.
|
@@ -33550,6 +33634,7 @@ elif False:
|
|
33550
33634
|
class RegionInstanceTemplateSchedulingArgs:
|
33551
33635
|
def __init__(__self__, *,
|
33552
33636
|
automatic_restart: Optional[pulumi.Input[bool]] = None,
|
33637
|
+
availability_domain: Optional[pulumi.Input[int]] = None,
|
33553
33638
|
host_error_timeout_seconds: Optional[pulumi.Input[int]] = None,
|
33554
33639
|
instance_termination_action: Optional[pulumi.Input[str]] = None,
|
33555
33640
|
local_ssd_recovery_timeouts: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs']]]] = None,
|
@@ -33565,6 +33650,7 @@ class RegionInstanceTemplateSchedulingArgs:
|
|
33565
33650
|
:param pulumi.Input[bool] automatic_restart: Specifies whether the instance should be
|
33566
33651
|
automatically restarted if it is terminated by Compute Engine (not
|
33567
33652
|
terminated by a user). This defaults to true.
|
33653
|
+
:param pulumi.Input[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.
|
33568
33654
|
:param pulumi.Input[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.
|
33569
33655
|
:param pulumi.Input[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)
|
33570
33656
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateSchedulingLocalSsdRecoveryTimeoutArgs']]] local_ssd_recovery_timeouts: Specifies the maximum amount of time a Local Ssd Vm should wait while
|
@@ -33592,6 +33678,8 @@ class RegionInstanceTemplateSchedulingArgs:
|
|
33592
33678
|
"""
|
33593
33679
|
if automatic_restart is not None:
|
33594
33680
|
pulumi.set(__self__, "automatic_restart", automatic_restart)
|
33681
|
+
if availability_domain is not None:
|
33682
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
33595
33683
|
if host_error_timeout_seconds is not None:
|
33596
33684
|
pulumi.set(__self__, "host_error_timeout_seconds", host_error_timeout_seconds)
|
33597
33685
|
if instance_termination_action is not None:
|
@@ -33629,6 +33717,18 @@ class RegionInstanceTemplateSchedulingArgs:
|
|
33629
33717
|
def automatic_restart(self, value: Optional[pulumi.Input[bool]]):
|
33630
33718
|
pulumi.set(self, "automatic_restart", value)
|
33631
33719
|
|
33720
|
+
@property
|
33721
|
+
@pulumi.getter(name="availabilityDomain")
|
33722
|
+
def availability_domain(self) -> Optional[pulumi.Input[int]]:
|
33723
|
+
"""
|
33724
|
+
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.
|
33725
|
+
"""
|
33726
|
+
return pulumi.get(self, "availability_domain")
|
33727
|
+
|
33728
|
+
@availability_domain.setter
|
33729
|
+
def availability_domain(self, value: Optional[pulumi.Input[int]]):
|
33730
|
+
pulumi.set(self, "availability_domain", value)
|
33731
|
+
|
33632
33732
|
@property
|
33633
33733
|
@pulumi.getter(name="hostErrorTimeoutSeconds")
|
33634
33734
|
def host_error_timeout_seconds(self) -> Optional[pulumi.Input[int]]:
|
@@ -47343,7 +47443,7 @@ if not MYPY:
|
|
47343
47443
|
class ResizeRequestRequestedRunDurationArgsDict(TypedDict):
|
47344
47444
|
seconds: pulumi.Input[str]
|
47345
47445
|
"""
|
47346
|
-
Span of time at a resolution of a second. Must be from
|
47446
|
+
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.
|
47347
47447
|
"""
|
47348
47448
|
nanos: NotRequired[pulumi.Input[int]]
|
47349
47449
|
"""
|
@@ -47358,7 +47458,7 @@ class ResizeRequestRequestedRunDurationArgs:
|
|
47358
47458
|
seconds: pulumi.Input[str],
|
47359
47459
|
nanos: Optional[pulumi.Input[int]] = None):
|
47360
47460
|
"""
|
47361
|
-
:param pulumi.Input[str] seconds: Span of time at a resolution of a second. Must be from
|
47461
|
+
:param pulumi.Input[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.
|
47362
47462
|
:param pulumi.Input[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.
|
47363
47463
|
"""
|
47364
47464
|
pulumi.set(__self__, "seconds", seconds)
|
@@ -47369,7 +47469,7 @@ class ResizeRequestRequestedRunDurationArgs:
|
|
47369
47469
|
@pulumi.getter
|
47370
47470
|
def seconds(self) -> pulumi.Input[str]:
|
47371
47471
|
"""
|
47372
|
-
Span of time at a resolution of a second. Must be from
|
47472
|
+
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.
|
47373
47473
|
"""
|
47374
47474
|
return pulumi.get(self, "seconds")
|
47375
47475
|
|
@@ -47395,13 +47495,13 @@ if not MYPY:
|
|
47395
47495
|
errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorArgsDict']]]]
|
47396
47496
|
"""
|
47397
47497
|
(Output)
|
47398
|
-
|
47498
|
+
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.
|
47399
47499
|
Structure is documented below.
|
47400
47500
|
"""
|
47401
47501
|
last_attempts: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptArgsDict']]]]
|
47402
47502
|
"""
|
47403
47503
|
(Output)
|
47404
|
-
|
47504
|
+
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.
|
47405
47505
|
Structure is documented below.
|
47406
47506
|
"""
|
47407
47507
|
elif False:
|
@@ -47414,10 +47514,10 @@ class ResizeRequestStatusArgs:
|
|
47414
47514
|
last_attempts: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptArgs']]]] = None):
|
47415
47515
|
"""
|
47416
47516
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorArgs']]] errors: (Output)
|
47417
|
-
|
47517
|
+
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.
|
47418
47518
|
Structure is documented below.
|
47419
47519
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptArgs']]] last_attempts: (Output)
|
47420
|
-
|
47520
|
+
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.
|
47421
47521
|
Structure is documented below.
|
47422
47522
|
"""
|
47423
47523
|
if errors is not None:
|
@@ -47430,7 +47530,7 @@ class ResizeRequestStatusArgs:
|
|
47430
47530
|
def errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorArgs']]]]:
|
47431
47531
|
"""
|
47432
47532
|
(Output)
|
47433
|
-
|
47533
|
+
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.
|
47434
47534
|
Structure is documented below.
|
47435
47535
|
"""
|
47436
47536
|
return pulumi.get(self, "errors")
|
@@ -47444,7 +47544,7 @@ class ResizeRequestStatusArgs:
|
|
47444
47544
|
def last_attempts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptArgs']]]]:
|
47445
47545
|
"""
|
47446
47546
|
(Output)
|
47447
|
-
|
47547
|
+
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.
|
47448
47548
|
Structure is documented below.
|
47449
47549
|
"""
|
47450
47550
|
return pulumi.get(self, "last_attempts")
|
@@ -47459,7 +47559,7 @@ if not MYPY:
|
|
47459
47559
|
errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorArgsDict']]]]
|
47460
47560
|
"""
|
47461
47561
|
(Output)
|
47462
|
-
|
47562
|
+
The array of errors encountered while processing this operation.
|
47463
47563
|
Structure is documented below.
|
47464
47564
|
"""
|
47465
47565
|
elif False:
|
@@ -47471,7 +47571,7 @@ class ResizeRequestStatusErrorArgs:
|
|
47471
47571
|
errors: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorArgs']]]] = None):
|
47472
47572
|
"""
|
47473
47573
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorArgs']]] errors: (Output)
|
47474
|
-
|
47574
|
+
The array of errors encountered while processing this operation.
|
47475
47575
|
Structure is documented below.
|
47476
47576
|
"""
|
47477
47577
|
if errors is not None:
|
@@ -47482,7 +47582,7 @@ class ResizeRequestStatusErrorArgs:
|
|
47482
47582
|
def errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorArgs']]]]:
|
47483
47583
|
"""
|
47484
47584
|
(Output)
|
47485
|
-
|
47585
|
+
The array of errors encountered while processing this operation.
|
47486
47586
|
Structure is documented below.
|
47487
47587
|
"""
|
47488
47588
|
return pulumi.get(self, "errors")
|
@@ -47497,18 +47597,18 @@ if not MYPY:
|
|
47497
47597
|
code: NotRequired[pulumi.Input[str]]
|
47498
47598
|
"""
|
47499
47599
|
(Output)
|
47500
|
-
|
47600
|
+
The error type identifier for this error.
|
47501
47601
|
"""
|
47502
47602
|
error_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailArgsDict']]]]
|
47503
47603
|
"""
|
47504
47604
|
(Output)
|
47505
|
-
|
47605
|
+
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.
|
47506
47606
|
Structure is documented below.
|
47507
47607
|
"""
|
47508
47608
|
location: NotRequired[pulumi.Input[str]]
|
47509
47609
|
"""
|
47510
47610
|
(Output)
|
47511
|
-
|
47611
|
+
Indicates the field in the request that caused the error. This property is optional.
|
47512
47612
|
"""
|
47513
47613
|
message: NotRequired[pulumi.Input[str]]
|
47514
47614
|
"""
|
@@ -47527,12 +47627,12 @@ class ResizeRequestStatusErrorErrorArgs:
|
|
47527
47627
|
message: Optional[pulumi.Input[str]] = None):
|
47528
47628
|
"""
|
47529
47629
|
:param pulumi.Input[str] code: (Output)
|
47530
|
-
|
47630
|
+
The error type identifier for this error.
|
47531
47631
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailArgs']]] error_details: (Output)
|
47532
|
-
|
47632
|
+
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.
|
47533
47633
|
Structure is documented below.
|
47534
47634
|
:param pulumi.Input[str] location: (Output)
|
47535
|
-
|
47635
|
+
Indicates the field in the request that caused the error. This property is optional.
|
47536
47636
|
:param pulumi.Input[str] message: (Output)
|
47537
47637
|
The localized error message in the above locale.
|
47538
47638
|
"""
|
@@ -47550,7 +47650,7 @@ class ResizeRequestStatusErrorErrorArgs:
|
|
47550
47650
|
def code(self) -> Optional[pulumi.Input[str]]:
|
47551
47651
|
"""
|
47552
47652
|
(Output)
|
47553
|
-
|
47653
|
+
The error type identifier for this error.
|
47554
47654
|
"""
|
47555
47655
|
return pulumi.get(self, "code")
|
47556
47656
|
|
@@ -47563,7 +47663,7 @@ class ResizeRequestStatusErrorErrorArgs:
|
|
47563
47663
|
def error_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailArgs']]]]:
|
47564
47664
|
"""
|
47565
47665
|
(Output)
|
47566
|
-
|
47666
|
+
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.
|
47567
47667
|
Structure is documented below.
|
47568
47668
|
"""
|
47569
47669
|
return pulumi.get(self, "error_details")
|
@@ -47577,7 +47677,7 @@ class ResizeRequestStatusErrorErrorArgs:
|
|
47577
47677
|
def location(self) -> Optional[pulumi.Input[str]]:
|
47578
47678
|
"""
|
47579
47679
|
(Output)
|
47580
|
-
|
47680
|
+
Indicates the field in the request that caused the error. This property is optional.
|
47581
47681
|
"""
|
47582
47682
|
return pulumi.get(self, "location")
|
47583
47683
|
|
@@ -47604,25 +47704,25 @@ if not MYPY:
|
|
47604
47704
|
error_infos: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgsDict']]]]
|
47605
47705
|
"""
|
47606
47706
|
(Output)
|
47607
|
-
|
47707
|
+
A nested object resource.
|
47608
47708
|
Structure is documented below.
|
47609
47709
|
"""
|
47610
47710
|
helps: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpArgsDict']]]]
|
47611
47711
|
"""
|
47612
47712
|
(Output)
|
47613
|
-
|
47713
|
+
A nested object resource.
|
47614
47714
|
Structure is documented below.
|
47615
47715
|
"""
|
47616
47716
|
localized_messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailLocalizedMessageArgsDict']]]]
|
47617
47717
|
"""
|
47618
47718
|
(Output)
|
47619
|
-
|
47719
|
+
A nested object resource.
|
47620
47720
|
Structure is documented below.
|
47621
47721
|
"""
|
47622
47722
|
quota_infos: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailQuotaInfoArgsDict']]]]
|
47623
47723
|
"""
|
47624
47724
|
(Output)
|
47625
|
-
|
47725
|
+
A nested object resource.
|
47626
47726
|
Structure is documented below.
|
47627
47727
|
"""
|
47628
47728
|
elif False:
|
@@ -47637,16 +47737,16 @@ class ResizeRequestStatusErrorErrorErrorDetailArgs:
|
|
47637
47737
|
quota_infos: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailQuotaInfoArgs']]]] = None):
|
47638
47738
|
"""
|
47639
47739
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs']]] error_infos: (Output)
|
47640
|
-
|
47740
|
+
A nested object resource.
|
47641
47741
|
Structure is documented below.
|
47642
47742
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpArgs']]] helps: (Output)
|
47643
|
-
|
47743
|
+
A nested object resource.
|
47644
47744
|
Structure is documented below.
|
47645
47745
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailLocalizedMessageArgs']]] localized_messages: (Output)
|
47646
|
-
|
47746
|
+
A nested object resource.
|
47647
47747
|
Structure is documented below.
|
47648
47748
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailQuotaInfoArgs']]] quota_infos: (Output)
|
47649
|
-
|
47749
|
+
A nested object resource.
|
47650
47750
|
Structure is documented below.
|
47651
47751
|
"""
|
47652
47752
|
if error_infos is not None:
|
@@ -47663,7 +47763,7 @@ class ResizeRequestStatusErrorErrorErrorDetailArgs:
|
|
47663
47763
|
def error_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs']]]]:
|
47664
47764
|
"""
|
47665
47765
|
(Output)
|
47666
|
-
|
47766
|
+
A nested object resource.
|
47667
47767
|
Structure is documented below.
|
47668
47768
|
"""
|
47669
47769
|
return pulumi.get(self, "error_infos")
|
@@ -47677,7 +47777,7 @@ class ResizeRequestStatusErrorErrorErrorDetailArgs:
|
|
47677
47777
|
def helps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpArgs']]]]:
|
47678
47778
|
"""
|
47679
47779
|
(Output)
|
47680
|
-
|
47780
|
+
A nested object resource.
|
47681
47781
|
Structure is documented below.
|
47682
47782
|
"""
|
47683
47783
|
return pulumi.get(self, "helps")
|
@@ -47691,7 +47791,7 @@ class ResizeRequestStatusErrorErrorErrorDetailArgs:
|
|
47691
47791
|
def localized_messages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailLocalizedMessageArgs']]]]:
|
47692
47792
|
"""
|
47693
47793
|
(Output)
|
47694
|
-
|
47794
|
+
A nested object resource.
|
47695
47795
|
Structure is documented below.
|
47696
47796
|
"""
|
47697
47797
|
return pulumi.get(self, "localized_messages")
|
@@ -47705,7 +47805,7 @@ class ResizeRequestStatusErrorErrorErrorDetailArgs:
|
|
47705
47805
|
def quota_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailQuotaInfoArgs']]]]:
|
47706
47806
|
"""
|
47707
47807
|
(Output)
|
47708
|
-
|
47808
|
+
A nested object resource.
|
47709
47809
|
Structure is documented below.
|
47710
47810
|
"""
|
47711
47811
|
return pulumi.get(self, "quota_infos")
|
@@ -47720,18 +47820,17 @@ if not MYPY:
|
|
47720
47820
|
domain: NotRequired[pulumi.Input[str]]
|
47721
47821
|
"""
|
47722
47822
|
(Output)
|
47723
|
-
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".
|
47823
|
+
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".
|
47724
47824
|
"""
|
47725
47825
|
metadatas: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
47726
47826
|
"""
|
47727
47827
|
(Output)
|
47728
47828
|
Additional structured details about this error.
|
47729
|
-
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.
|
47730
47829
|
"""
|
47731
47830
|
reason: NotRequired[pulumi.Input[str]]
|
47732
47831
|
"""
|
47733
47832
|
(Output)
|
47734
|
-
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.
|
47833
|
+
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.
|
47735
47834
|
"""
|
47736
47835
|
elif False:
|
47737
47836
|
ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -47744,12 +47843,11 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs:
|
|
47744
47843
|
reason: Optional[pulumi.Input[str]] = None):
|
47745
47844
|
"""
|
47746
47845
|
:param pulumi.Input[str] domain: (Output)
|
47747
|
-
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".
|
47846
|
+
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".
|
47748
47847
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadatas: (Output)
|
47749
47848
|
Additional structured details about this error.
|
47750
|
-
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.
|
47751
47849
|
:param pulumi.Input[str] reason: (Output)
|
47752
|
-
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.
|
47850
|
+
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.
|
47753
47851
|
"""
|
47754
47852
|
if domain is not None:
|
47755
47853
|
pulumi.set(__self__, "domain", domain)
|
@@ -47763,7 +47861,7 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs:
|
|
47763
47861
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
47764
47862
|
"""
|
47765
47863
|
(Output)
|
47766
|
-
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".
|
47864
|
+
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".
|
47767
47865
|
"""
|
47768
47866
|
return pulumi.get(self, "domain")
|
47769
47867
|
|
@@ -47777,7 +47875,6 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs:
|
|
47777
47875
|
"""
|
47778
47876
|
(Output)
|
47779
47877
|
Additional structured details about this error.
|
47780
|
-
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.
|
47781
47878
|
"""
|
47782
47879
|
return pulumi.get(self, "metadatas")
|
47783
47880
|
|
@@ -47790,7 +47887,7 @@ class ResizeRequestStatusErrorErrorErrorDetailErrorInfoArgs:
|
|
47790
47887
|
def reason(self) -> Optional[pulumi.Input[str]]:
|
47791
47888
|
"""
|
47792
47889
|
(Output)
|
47793
|
-
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.
|
47890
|
+
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.
|
47794
47891
|
"""
|
47795
47892
|
return pulumi.get(self, "reason")
|
47796
47893
|
|
@@ -47804,7 +47901,7 @@ if not MYPY:
|
|
47804
47901
|
links: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpLinkArgsDict']]]]
|
47805
47902
|
"""
|
47806
47903
|
(Output)
|
47807
|
-
|
47904
|
+
A nested object resource.
|
47808
47905
|
Structure is documented below.
|
47809
47906
|
"""
|
47810
47907
|
elif False:
|
@@ -47816,7 +47913,7 @@ class ResizeRequestStatusErrorErrorErrorDetailHelpArgs:
|
|
47816
47913
|
links: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpLinkArgs']]]] = None):
|
47817
47914
|
"""
|
47818
47915
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpLinkArgs']]] links: (Output)
|
47819
|
-
|
47916
|
+
A nested object resource.
|
47820
47917
|
Structure is documented below.
|
47821
47918
|
"""
|
47822
47919
|
if links is not None:
|
@@ -47827,7 +47924,7 @@ class ResizeRequestStatusErrorErrorErrorDetailHelpArgs:
|
|
47827
47924
|
def links(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusErrorErrorErrorDetailHelpLinkArgs']]]]:
|
47828
47925
|
"""
|
47829
47926
|
(Output)
|
47830
|
-
|
47927
|
+
A nested object resource.
|
47831
47928
|
Structure is documented below.
|
47832
47929
|
"""
|
47833
47930
|
return pulumi.get(self, "links")
|
@@ -48105,7 +48202,7 @@ if not MYPY:
|
|
48105
48202
|
errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorArgsDict']]]]
|
48106
48203
|
"""
|
48107
48204
|
(Output)
|
48108
|
-
|
48205
|
+
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.
|
48109
48206
|
Structure is documented below.
|
48110
48207
|
"""
|
48111
48208
|
elif False:
|
@@ -48117,7 +48214,7 @@ class ResizeRequestStatusLastAttemptArgs:
|
|
48117
48214
|
errors: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorArgs']]]] = None):
|
48118
48215
|
"""
|
48119
48216
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorArgs']]] errors: (Output)
|
48120
|
-
|
48217
|
+
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.
|
48121
48218
|
Structure is documented below.
|
48122
48219
|
"""
|
48123
48220
|
if errors is not None:
|
@@ -48128,7 +48225,7 @@ class ResizeRequestStatusLastAttemptArgs:
|
|
48128
48225
|
def errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorArgs']]]]:
|
48129
48226
|
"""
|
48130
48227
|
(Output)
|
48131
|
-
|
48228
|
+
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.
|
48132
48229
|
Structure is documented below.
|
48133
48230
|
"""
|
48134
48231
|
return pulumi.get(self, "errors")
|
@@ -48143,7 +48240,7 @@ if not MYPY:
|
|
48143
48240
|
errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorArgsDict']]]]
|
48144
48241
|
"""
|
48145
48242
|
(Output)
|
48146
|
-
|
48243
|
+
The array of errors encountered while processing this operation.
|
48147
48244
|
Structure is documented below.
|
48148
48245
|
"""
|
48149
48246
|
elif False:
|
@@ -48155,7 +48252,7 @@ class ResizeRequestStatusLastAttemptErrorArgs:
|
|
48155
48252
|
errors: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorArgs']]]] = None):
|
48156
48253
|
"""
|
48157
48254
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorArgs']]] errors: (Output)
|
48158
|
-
|
48255
|
+
The array of errors encountered while processing this operation.
|
48159
48256
|
Structure is documented below.
|
48160
48257
|
"""
|
48161
48258
|
if errors is not None:
|
@@ -48166,7 +48263,7 @@ class ResizeRequestStatusLastAttemptErrorArgs:
|
|
48166
48263
|
def errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorArgs']]]]:
|
48167
48264
|
"""
|
48168
48265
|
(Output)
|
48169
|
-
|
48266
|
+
The array of errors encountered while processing this operation.
|
48170
48267
|
Structure is documented below.
|
48171
48268
|
"""
|
48172
48269
|
return pulumi.get(self, "errors")
|
@@ -48181,18 +48278,18 @@ if not MYPY:
|
|
48181
48278
|
code: NotRequired[pulumi.Input[str]]
|
48182
48279
|
"""
|
48183
48280
|
(Output)
|
48184
|
-
|
48281
|
+
The error type identifier for this error.
|
48185
48282
|
"""
|
48186
48283
|
error_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgsDict']]]]
|
48187
48284
|
"""
|
48188
48285
|
(Output)
|
48189
|
-
|
48286
|
+
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.
|
48190
48287
|
Structure is documented below.
|
48191
48288
|
"""
|
48192
48289
|
location: NotRequired[pulumi.Input[str]]
|
48193
48290
|
"""
|
48194
48291
|
(Output)
|
48195
|
-
|
48292
|
+
Indicates the field in the request that caused the error. This property is optional.
|
48196
48293
|
"""
|
48197
48294
|
message: NotRequired[pulumi.Input[str]]
|
48198
48295
|
"""
|
@@ -48211,12 +48308,12 @@ class ResizeRequestStatusLastAttemptErrorErrorArgs:
|
|
48211
48308
|
message: Optional[pulumi.Input[str]] = None):
|
48212
48309
|
"""
|
48213
48310
|
:param pulumi.Input[str] code: (Output)
|
48214
|
-
|
48311
|
+
The error type identifier for this error.
|
48215
48312
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs']]] error_details: (Output)
|
48216
|
-
|
48313
|
+
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.
|
48217
48314
|
Structure is documented below.
|
48218
48315
|
:param pulumi.Input[str] location: (Output)
|
48219
|
-
|
48316
|
+
Indicates the field in the request that caused the error. This property is optional.
|
48220
48317
|
:param pulumi.Input[str] message: (Output)
|
48221
48318
|
The localized error message in the above locale.
|
48222
48319
|
"""
|
@@ -48234,7 +48331,7 @@ class ResizeRequestStatusLastAttemptErrorErrorArgs:
|
|
48234
48331
|
def code(self) -> Optional[pulumi.Input[str]]:
|
48235
48332
|
"""
|
48236
48333
|
(Output)
|
48237
|
-
|
48334
|
+
The error type identifier for this error.
|
48238
48335
|
"""
|
48239
48336
|
return pulumi.get(self, "code")
|
48240
48337
|
|
@@ -48247,7 +48344,7 @@ class ResizeRequestStatusLastAttemptErrorErrorArgs:
|
|
48247
48344
|
def error_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs']]]]:
|
48248
48345
|
"""
|
48249
48346
|
(Output)
|
48250
|
-
|
48347
|
+
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.
|
48251
48348
|
Structure is documented below.
|
48252
48349
|
"""
|
48253
48350
|
return pulumi.get(self, "error_details")
|
@@ -48261,7 +48358,7 @@ class ResizeRequestStatusLastAttemptErrorErrorArgs:
|
|
48261
48358
|
def location(self) -> Optional[pulumi.Input[str]]:
|
48262
48359
|
"""
|
48263
48360
|
(Output)
|
48264
|
-
|
48361
|
+
Indicates the field in the request that caused the error. This property is optional.
|
48265
48362
|
"""
|
48266
48363
|
return pulumi.get(self, "location")
|
48267
48364
|
|
@@ -48288,25 +48385,25 @@ if not MYPY:
|
|
48288
48385
|
error_infos: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgsDict']]]]
|
48289
48386
|
"""
|
48290
48387
|
(Output)
|
48291
|
-
|
48388
|
+
A nested object resource.
|
48292
48389
|
Structure is documented below.
|
48293
48390
|
"""
|
48294
48391
|
helps: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpArgsDict']]]]
|
48295
48392
|
"""
|
48296
48393
|
(Output)
|
48297
|
-
|
48394
|
+
A nested object resource.
|
48298
48395
|
Structure is documented below.
|
48299
48396
|
"""
|
48300
48397
|
localized_messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessageArgsDict']]]]
|
48301
48398
|
"""
|
48302
48399
|
(Output)
|
48303
|
-
|
48400
|
+
A nested object resource.
|
48304
48401
|
Structure is documented below.
|
48305
48402
|
"""
|
48306
48403
|
quota_infos: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgsDict']]]]
|
48307
48404
|
"""
|
48308
48405
|
(Output)
|
48309
|
-
|
48406
|
+
A nested object resource.
|
48310
48407
|
Structure is documented below.
|
48311
48408
|
"""
|
48312
48409
|
elif False:
|
@@ -48321,16 +48418,16 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs:
|
|
48321
48418
|
quota_infos: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgs']]]] = None):
|
48322
48419
|
"""
|
48323
48420
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs']]] error_infos: (Output)
|
48324
|
-
|
48421
|
+
A nested object resource.
|
48325
48422
|
Structure is documented below.
|
48326
48423
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpArgs']]] helps: (Output)
|
48327
|
-
|
48424
|
+
A nested object resource.
|
48328
48425
|
Structure is documented below.
|
48329
48426
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessageArgs']]] localized_messages: (Output)
|
48330
|
-
|
48427
|
+
A nested object resource.
|
48331
48428
|
Structure is documented below.
|
48332
48429
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgs']]] quota_infos: (Output)
|
48333
|
-
|
48430
|
+
A nested object resource.
|
48334
48431
|
Structure is documented below.
|
48335
48432
|
"""
|
48336
48433
|
if error_infos is not None:
|
@@ -48347,7 +48444,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs:
|
|
48347
48444
|
def error_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs']]]]:
|
48348
48445
|
"""
|
48349
48446
|
(Output)
|
48350
|
-
|
48447
|
+
A nested object resource.
|
48351
48448
|
Structure is documented below.
|
48352
48449
|
"""
|
48353
48450
|
return pulumi.get(self, "error_infos")
|
@@ -48361,7 +48458,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs:
|
|
48361
48458
|
def helps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpArgs']]]]:
|
48362
48459
|
"""
|
48363
48460
|
(Output)
|
48364
|
-
|
48461
|
+
A nested object resource.
|
48365
48462
|
Structure is documented below.
|
48366
48463
|
"""
|
48367
48464
|
return pulumi.get(self, "helps")
|
@@ -48375,7 +48472,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs:
|
|
48375
48472
|
def localized_messages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessageArgs']]]]:
|
48376
48473
|
"""
|
48377
48474
|
(Output)
|
48378
|
-
|
48475
|
+
A nested object resource.
|
48379
48476
|
Structure is documented below.
|
48380
48477
|
"""
|
48381
48478
|
return pulumi.get(self, "localized_messages")
|
@@ -48389,7 +48486,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailArgs:
|
|
48389
48486
|
def quota_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgs']]]]:
|
48390
48487
|
"""
|
48391
48488
|
(Output)
|
48392
|
-
|
48489
|
+
A nested object resource.
|
48393
48490
|
Structure is documented below.
|
48394
48491
|
"""
|
48395
48492
|
return pulumi.get(self, "quota_infos")
|
@@ -48404,18 +48501,17 @@ if not MYPY:
|
|
48404
48501
|
domain: NotRequired[pulumi.Input[str]]
|
48405
48502
|
"""
|
48406
48503
|
(Output)
|
48407
|
-
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".
|
48504
|
+
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".
|
48408
48505
|
"""
|
48409
48506
|
metadatas: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
48410
48507
|
"""
|
48411
48508
|
(Output)
|
48412
48509
|
Additional structured details about this error.
|
48413
|
-
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.
|
48414
48510
|
"""
|
48415
48511
|
reason: NotRequired[pulumi.Input[str]]
|
48416
48512
|
"""
|
48417
48513
|
(Output)
|
48418
|
-
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.
|
48514
|
+
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.
|
48419
48515
|
"""
|
48420
48516
|
elif False:
|
48421
48517
|
ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -48428,12 +48524,11 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs:
|
|
48428
48524
|
reason: Optional[pulumi.Input[str]] = None):
|
48429
48525
|
"""
|
48430
48526
|
:param pulumi.Input[str] domain: (Output)
|
48431
|
-
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".
|
48527
|
+
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".
|
48432
48528
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadatas: (Output)
|
48433
48529
|
Additional structured details about this error.
|
48434
|
-
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.
|
48435
48530
|
:param pulumi.Input[str] reason: (Output)
|
48436
|
-
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.
|
48531
|
+
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.
|
48437
48532
|
"""
|
48438
48533
|
if domain is not None:
|
48439
48534
|
pulumi.set(__self__, "domain", domain)
|
@@ -48447,7 +48542,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs:
|
|
48447
48542
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
48448
48543
|
"""
|
48449
48544
|
(Output)
|
48450
|
-
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".
|
48545
|
+
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".
|
48451
48546
|
"""
|
48452
48547
|
return pulumi.get(self, "domain")
|
48453
48548
|
|
@@ -48461,7 +48556,6 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs:
|
|
48461
48556
|
"""
|
48462
48557
|
(Output)
|
48463
48558
|
Additional structured details about this error.
|
48464
|
-
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.
|
48465
48559
|
"""
|
48466
48560
|
return pulumi.get(self, "metadatas")
|
48467
48561
|
|
@@ -48474,7 +48568,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailErrorInfoArgs:
|
|
48474
48568
|
def reason(self) -> Optional[pulumi.Input[str]]:
|
48475
48569
|
"""
|
48476
48570
|
(Output)
|
48477
|
-
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.
|
48571
|
+
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.
|
48478
48572
|
"""
|
48479
48573
|
return pulumi.get(self, "reason")
|
48480
48574
|
|
@@ -48488,7 +48582,7 @@ if not MYPY:
|
|
48488
48582
|
links: NotRequired[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLinkArgsDict']]]]
|
48489
48583
|
"""
|
48490
48584
|
(Output)
|
48491
|
-
|
48585
|
+
A nested object resource.
|
48492
48586
|
Structure is documented below.
|
48493
48587
|
"""
|
48494
48588
|
elif False:
|
@@ -48500,7 +48594,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpArgs:
|
|
48500
48594
|
links: Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLinkArgs']]]] = None):
|
48501
48595
|
"""
|
48502
48596
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLinkArgs']]] links: (Output)
|
48503
|
-
|
48597
|
+
A nested object resource.
|
48504
48598
|
Structure is documented below.
|
48505
48599
|
"""
|
48506
48600
|
if links is not None:
|
@@ -48511,7 +48605,7 @@ class ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpArgs:
|
|
48511
48605
|
def links(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLinkArgs']]]]:
|
48512
48606
|
"""
|
48513
48607
|
(Output)
|
48514
|
-
|
48608
|
+
A nested object resource.
|
48515
48609
|
Structure is documented below.
|
48516
48610
|
"""
|
48517
48611
|
return pulumi.get(self, "links")
|