pulumi-gcp 7.35.0a1722924350__py3-none-any.whl → 7.35.0a1722940030__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.
Potentially problematic release.
This version of pulumi-gcp might be problematic. Click here for more details.
- pulumi_gcp/accesscontextmanager/_inputs.py +12 -3
- pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
- pulumi_gcp/accesscontextmanager/outputs.py +8 -2
- pulumi_gcp/bigquery/data_transfer_config.py +52 -0
- pulumi_gcp/compute/_inputs.py +24 -24
- pulumi_gcp/compute/disk.py +75 -0
- pulumi_gcp/compute/get_disk.py +11 -1
- pulumi_gcp/compute/get_hc_vpn_gateway.py +11 -1
- pulumi_gcp/compute/get_instance_template.py +2 -2
- pulumi_gcp/compute/get_region_instance_template.py +2 -2
- pulumi_gcp/compute/get_snapshot.py +2 -2
- pulumi_gcp/compute/ha_vpn_gateway.py +68 -7
- pulumi_gcp/compute/outputs.py +24 -24
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/firebase/project.py +10 -2
- pulumi_gcp/kms/key_handle.py +7 -7
- pulumi_gcp/migrationcenter/_inputs.py +21 -129
- pulumi_gcp/migrationcenter/outputs.py +14 -86
- pulumi_gcp/networkconnectivity/hub.py +69 -0
- pulumi_gcp/organizations/project.py +16 -7
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +35 -15
- pulumi_gcp/sql/outputs.py +50 -14
- {pulumi_gcp-7.35.0a1722924350.dist-info → pulumi_gcp-7.35.0a1722940030.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.35.0a1722924350.dist-info → pulumi_gcp-7.35.0a1722940030.dist-info}/RECORD +28 -28
- {pulumi_gcp-7.35.0a1722924350.dist-info → pulumi_gcp-7.35.0a1722940030.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.35.0a1722924350.dist-info → pulumi_gcp-7.35.0a1722940030.dist-info}/top_level.txt +0 -0
pulumi_gcp/kms/key_handle.py
CHANGED
@@ -31,7 +31,7 @@ class KeyHandleArgs:
|
|
31
31
|
|
32
32
|
- - -
|
33
33
|
:param pulumi.Input[str] resource_type_selector: Selector of the resource type where we want to protect resources.
|
34
|
-
For example, `storage.googleapis.com/Bucket
|
34
|
+
For example, `storage.googleapis.com/Bucket`.
|
35
35
|
:param pulumi.Input[str] name: The resource name for the KeyHandle.
|
36
36
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
37
37
|
If it is not provided, the provider project is used.
|
@@ -64,7 +64,7 @@ class KeyHandleArgs:
|
|
64
64
|
def resource_type_selector(self) -> pulumi.Input[str]:
|
65
65
|
"""
|
66
66
|
Selector of the resource type where we want to protect resources.
|
67
|
-
For example, `storage.googleapis.com/Bucket
|
67
|
+
For example, `storage.googleapis.com/Bucket`.
|
68
68
|
"""
|
69
69
|
return pulumi.get(self, "resource_type_selector")
|
70
70
|
|
@@ -120,7 +120,7 @@ class _KeyHandleState:
|
|
120
120
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
121
121
|
If it is not provided, the provider project is used.
|
122
122
|
:param pulumi.Input[str] resource_type_selector: Selector of the resource type where we want to protect resources.
|
123
|
-
For example, `storage.googleapis.com/Bucket
|
123
|
+
For example, `storage.googleapis.com/Bucket`.
|
124
124
|
"""
|
125
125
|
if kms_key is not None:
|
126
126
|
pulumi.set(__self__, "kms_key", kms_key)
|
@@ -193,7 +193,7 @@ class _KeyHandleState:
|
|
193
193
|
def resource_type_selector(self) -> Optional[pulumi.Input[str]]:
|
194
194
|
"""
|
195
195
|
Selector of the resource type where we want to protect resources.
|
196
|
-
For example, `storage.googleapis.com/Bucket
|
196
|
+
For example, `storage.googleapis.com/Bucket`.
|
197
197
|
"""
|
198
198
|
return pulumi.get(self, "resource_type_selector")
|
199
199
|
|
@@ -317,7 +317,7 @@ class KeyHandle(pulumi.CustomResource):
|
|
317
317
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
318
318
|
If it is not provided, the provider project is used.
|
319
319
|
:param pulumi.Input[str] resource_type_selector: Selector of the resource type where we want to protect resources.
|
320
|
-
For example, `storage.googleapis.com/Bucket
|
320
|
+
For example, `storage.googleapis.com/Bucket`.
|
321
321
|
"""
|
322
322
|
...
|
323
323
|
@overload
|
@@ -490,7 +490,7 @@ class KeyHandle(pulumi.CustomResource):
|
|
490
490
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
491
491
|
If it is not provided, the provider project is used.
|
492
492
|
:param pulumi.Input[str] resource_type_selector: Selector of the resource type where we want to protect resources.
|
493
|
-
For example, `storage.googleapis.com/Bucket
|
493
|
+
For example, `storage.googleapis.com/Bucket`.
|
494
494
|
"""
|
495
495
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
496
496
|
|
@@ -547,7 +547,7 @@ class KeyHandle(pulumi.CustomResource):
|
|
547
547
|
def resource_type_selector(self) -> pulumi.Output[str]:
|
548
548
|
"""
|
549
549
|
Selector of the resource type where we want to protect resources.
|
550
|
-
For example, `storage.googleapis.com/Bucket
|
550
|
+
For example, `storage.googleapis.com/Bucket`.
|
551
551
|
"""
|
552
552
|
return pulumi.get(self, "resource_type_selector")
|
553
553
|
|
@@ -39,12 +39,7 @@ if not MYPY:
|
|
39
39
|
class PreferenceSetVirtualMachinePreferencesArgsDict(TypedDict):
|
40
40
|
commitment_plan: NotRequired[pulumi.Input[str]]
|
41
41
|
"""
|
42
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
43
|
-
Possible values:
|
44
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
45
|
-
COMMITMENT_PLAN_NONE
|
46
|
-
COMMITMENT_PLAN_ONE_YEAR
|
47
|
-
COMMITMENT_PLAN_THREE_YEARS
|
42
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `COMMITMENT_PLAN_NONE`, `COMMITMENT_PLAN_ONE_YEAR`, `COMMITMENT_PLAN_THREE_YEARS`
|
48
43
|
"""
|
49
44
|
compute_engine_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgsDict']]
|
50
45
|
"""
|
@@ -58,12 +53,7 @@ if not MYPY:
|
|
58
53
|
"""
|
59
54
|
sizing_optimization_strategy: NotRequired[pulumi.Input[str]]
|
60
55
|
"""
|
61
|
-
Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with.
|
62
|
-
Possible values:
|
63
|
-
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED
|
64
|
-
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE
|
65
|
-
SIZING_OPTIMIZATION_STRATEGY_MODERATE
|
66
|
-
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE
|
56
|
+
Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. Possible values: `SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED`, `SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE`, `SIZING_OPTIMIZATION_STRATEGY_MODERATE`, `SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE`
|
67
57
|
"""
|
68
58
|
sole_tenancy_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgsDict']]
|
69
59
|
"""
|
@@ -72,12 +62,7 @@ if not MYPY:
|
|
72
62
|
"""
|
73
63
|
target_product: NotRequired[pulumi.Input[str]]
|
74
64
|
"""
|
75
|
-
Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
76
|
-
Possible values:
|
77
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED
|
78
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE
|
79
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE
|
80
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY
|
65
|
+
Target product for assets using this preference set. Specify either target product or business goal, but not both. Possible values: `COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED`, `COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY`
|
81
66
|
"""
|
82
67
|
vmware_engine_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgsDict']]
|
83
68
|
"""
|
@@ -98,30 +83,15 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
98
83
|
target_product: Optional[pulumi.Input[str]] = None,
|
99
84
|
vmware_engine_preferences: Optional[pulumi.Input['PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs']] = None):
|
100
85
|
"""
|
101
|
-
:param pulumi.Input[str] commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
102
|
-
Possible values:
|
103
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
104
|
-
COMMITMENT_PLAN_NONE
|
105
|
-
COMMITMENT_PLAN_ONE_YEAR
|
106
|
-
COMMITMENT_PLAN_THREE_YEARS
|
86
|
+
:param pulumi.Input[str] commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `COMMITMENT_PLAN_NONE`, `COMMITMENT_PLAN_ONE_YEAR`, `COMMITMENT_PLAN_THREE_YEARS`
|
107
87
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs'] compute_engine_preferences: The user preferences relating to Compute Engine target platform.
|
108
88
|
Structure is documented below.
|
109
89
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesRegionPreferencesArgs'] region_preferences: The user preferences relating to target regions.
|
110
90
|
Structure is documented below.
|
111
|
-
:param pulumi.Input[str] sizing_optimization_strategy: Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with.
|
112
|
-
Possible values:
|
113
|
-
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED
|
114
|
-
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE
|
115
|
-
SIZING_OPTIMIZATION_STRATEGY_MODERATE
|
116
|
-
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE
|
91
|
+
:param pulumi.Input[str] sizing_optimization_strategy: Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. Possible values: `SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED`, `SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE`, `SIZING_OPTIMIZATION_STRATEGY_MODERATE`, `SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE`
|
117
92
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs'] sole_tenancy_preferences: Preferences concerning Sole Tenancy nodes and VMs.
|
118
93
|
Structure is documented below.
|
119
|
-
:param pulumi.Input[str] target_product: Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
120
|
-
Possible values:
|
121
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED
|
122
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE
|
123
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE
|
124
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY
|
94
|
+
:param pulumi.Input[str] target_product: Target product for assets using this preference set. Specify either target product or business goal, but not both. Possible values: `COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED`, `COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY`
|
125
95
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs'] vmware_engine_preferences: The user preferences relating to Google Cloud VMware Engine target platform.
|
126
96
|
Structure is documented below.
|
127
97
|
"""
|
@@ -144,12 +114,7 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
144
114
|
@pulumi.getter(name="commitmentPlan")
|
145
115
|
def commitment_plan(self) -> Optional[pulumi.Input[str]]:
|
146
116
|
"""
|
147
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
148
|
-
Possible values:
|
149
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
150
|
-
COMMITMENT_PLAN_NONE
|
151
|
-
COMMITMENT_PLAN_ONE_YEAR
|
152
|
-
COMMITMENT_PLAN_THREE_YEARS
|
117
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `COMMITMENT_PLAN_NONE`, `COMMITMENT_PLAN_ONE_YEAR`, `COMMITMENT_PLAN_THREE_YEARS`
|
153
118
|
"""
|
154
119
|
return pulumi.get(self, "commitment_plan")
|
155
120
|
|
@@ -187,12 +152,7 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
187
152
|
@pulumi.getter(name="sizingOptimizationStrategy")
|
188
153
|
def sizing_optimization_strategy(self) -> Optional[pulumi.Input[str]]:
|
189
154
|
"""
|
190
|
-
Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with.
|
191
|
-
Possible values:
|
192
|
-
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED
|
193
|
-
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE
|
194
|
-
SIZING_OPTIMIZATION_STRATEGY_MODERATE
|
195
|
-
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE
|
155
|
+
Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. Possible values: `SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED`, `SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE`, `SIZING_OPTIMIZATION_STRATEGY_MODERATE`, `SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE`
|
196
156
|
"""
|
197
157
|
return pulumi.get(self, "sizing_optimization_strategy")
|
198
158
|
|
@@ -217,12 +177,7 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
217
177
|
@pulumi.getter(name="targetProduct")
|
218
178
|
def target_product(self) -> Optional[pulumi.Input[str]]:
|
219
179
|
"""
|
220
|
-
Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
221
|
-
Possible values:
|
222
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED
|
223
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE
|
224
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE
|
225
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY
|
180
|
+
Target product for assets using this preference set. Specify either target product or business goal, but not both. Possible values: `COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED`, `COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY`
|
226
181
|
"""
|
227
182
|
return pulumi.get(self, "target_product")
|
228
183
|
|
@@ -248,11 +203,7 @@ if not MYPY:
|
|
248
203
|
class PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgsDict(TypedDict):
|
249
204
|
license_type: NotRequired[pulumi.Input[str]]
|
250
205
|
"""
|
251
|
-
License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan.
|
252
|
-
Possible values:
|
253
|
-
LICENSE_TYPE_UNSPECIFIED
|
254
|
-
LICENSE_TYPE_DEFAULT
|
255
|
-
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE
|
206
|
+
License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. Possible values: `LICENSE_TYPE_UNSPECIFIED`, `LICENSE_TYPE_DEFAULT`, `LICENSE_TYPE_BRING_YOUR_OWN_LICENSE`
|
256
207
|
"""
|
257
208
|
machine_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferencesArgsDict']]
|
258
209
|
"""
|
@@ -268,11 +219,7 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs:
|
|
268
219
|
license_type: Optional[pulumi.Input[str]] = None,
|
269
220
|
machine_preferences: Optional[pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferencesArgs']] = None):
|
270
221
|
"""
|
271
|
-
:param pulumi.Input[str] license_type: License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan.
|
272
|
-
Possible values:
|
273
|
-
LICENSE_TYPE_UNSPECIFIED
|
274
|
-
LICENSE_TYPE_DEFAULT
|
275
|
-
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE
|
222
|
+
:param pulumi.Input[str] license_type: License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. Possible values: `LICENSE_TYPE_UNSPECIFIED`, `LICENSE_TYPE_DEFAULT`, `LICENSE_TYPE_BRING_YOUR_OWN_LICENSE`
|
276
223
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferencesArgs'] machine_preferences: The type of machines to consider when calculating virtual machine migration insights and recommendations. Not all machine types are available in all zones and regions.
|
277
224
|
Structure is documented below.
|
278
225
|
"""
|
@@ -285,11 +232,7 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs:
|
|
285
232
|
@pulumi.getter(name="licenseType")
|
286
233
|
def license_type(self) -> Optional[pulumi.Input[str]]:
|
287
234
|
"""
|
288
|
-
License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan.
|
289
|
-
Possible values:
|
290
|
-
LICENSE_TYPE_UNSPECIFIED
|
291
|
-
LICENSE_TYPE_DEFAULT
|
292
|
-
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE
|
235
|
+
License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. Possible values: `LICENSE_TYPE_UNSPECIFIED`, `LICENSE_TYPE_DEFAULT`, `LICENSE_TYPE_BRING_YOUR_OWN_LICENSE`
|
293
236
|
"""
|
294
237
|
return pulumi.get(self, "license_type")
|
295
238
|
|
@@ -414,12 +357,7 @@ if not MYPY:
|
|
414
357
|
class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgsDict(TypedDict):
|
415
358
|
commitment_plan: NotRequired[pulumi.Input[str]]
|
416
359
|
"""
|
417
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
418
|
-
Possible values:
|
419
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
420
|
-
ON_DEMAND
|
421
|
-
COMMITMENT_1_YEAR
|
422
|
-
COMMITMENT_3_YEAR
|
360
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR`, `COMMITMENT_3_YEAR`
|
423
361
|
"""
|
424
362
|
cpu_overcommit_ratio: NotRequired[pulumi.Input[float]]
|
425
363
|
"""
|
@@ -427,12 +365,7 @@ if not MYPY:
|
|
427
365
|
"""
|
428
366
|
host_maintenance_policy: NotRequired[pulumi.Input[str]]
|
429
367
|
"""
|
430
|
-
Sole Tenancy nodes maintenance policy.
|
431
|
-
Possible values:
|
432
|
-
HOST_MAINTENANCE_POLICY_UNSPECIFIED
|
433
|
-
HOST_MAINTENANCE_POLICY_DEFAULT
|
434
|
-
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE
|
435
|
-
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP
|
368
|
+
Sole Tenancy nodes maintenance policy. Possible values: `HOST_MAINTENANCE_POLICY_UNSPECIFIED`, `HOST_MAINTENANCE_POLICY_DEFAULT`, `HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE`, `HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP`
|
436
369
|
"""
|
437
370
|
node_types: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgsDict']]]]
|
438
371
|
"""
|
@@ -450,19 +383,9 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs:
|
|
450
383
|
host_maintenance_policy: Optional[pulumi.Input[str]] = None,
|
451
384
|
node_types: Optional[pulumi.Input[Sequence[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgs']]]] = None):
|
452
385
|
"""
|
453
|
-
:param pulumi.Input[str] commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
454
|
-
Possible values:
|
455
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
456
|
-
ON_DEMAND
|
457
|
-
COMMITMENT_1_YEAR
|
458
|
-
COMMITMENT_3_YEAR
|
386
|
+
:param pulumi.Input[str] commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR`, `COMMITMENT_3_YEAR`
|
459
387
|
:param pulumi.Input[float] cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 2.0 inclusive.
|
460
|
-
:param pulumi.Input[str] host_maintenance_policy: Sole Tenancy nodes maintenance policy.
|
461
|
-
Possible values:
|
462
|
-
HOST_MAINTENANCE_POLICY_UNSPECIFIED
|
463
|
-
HOST_MAINTENANCE_POLICY_DEFAULT
|
464
|
-
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE
|
465
|
-
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP
|
388
|
+
:param pulumi.Input[str] host_maintenance_policy: Sole Tenancy nodes maintenance policy. Possible values: `HOST_MAINTENANCE_POLICY_UNSPECIFIED`, `HOST_MAINTENANCE_POLICY_DEFAULT`, `HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE`, `HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP`
|
466
389
|
:param pulumi.Input[Sequence[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgs']]] node_types: A list of sole tenant node types. An empty list means that all possible node types will be considered.
|
467
390
|
Structure is documented below.
|
468
391
|
"""
|
@@ -479,12 +402,7 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs:
|
|
479
402
|
@pulumi.getter(name="commitmentPlan")
|
480
403
|
def commitment_plan(self) -> Optional[pulumi.Input[str]]:
|
481
404
|
"""
|
482
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
483
|
-
Possible values:
|
484
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
485
|
-
ON_DEMAND
|
486
|
-
COMMITMENT_1_YEAR
|
487
|
-
COMMITMENT_3_YEAR
|
405
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR`, `COMMITMENT_3_YEAR`
|
488
406
|
"""
|
489
407
|
return pulumi.get(self, "commitment_plan")
|
490
408
|
|
@@ -508,12 +426,7 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs:
|
|
508
426
|
@pulumi.getter(name="hostMaintenancePolicy")
|
509
427
|
def host_maintenance_policy(self) -> Optional[pulumi.Input[str]]:
|
510
428
|
"""
|
511
|
-
Sole Tenancy nodes maintenance policy.
|
512
|
-
Possible values:
|
513
|
-
HOST_MAINTENANCE_POLICY_UNSPECIFIED
|
514
|
-
HOST_MAINTENANCE_POLICY_DEFAULT
|
515
|
-
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE
|
516
|
-
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP
|
429
|
+
Sole Tenancy nodes maintenance policy. Possible values: `HOST_MAINTENANCE_POLICY_UNSPECIFIED`, `HOST_MAINTENANCE_POLICY_DEFAULT`, `HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE`, `HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP`
|
517
430
|
"""
|
518
431
|
return pulumi.get(self, "host_maintenance_policy")
|
519
432
|
|
@@ -571,14 +484,7 @@ if not MYPY:
|
|
571
484
|
class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgsDict(TypedDict):
|
572
485
|
commitment_plan: NotRequired[pulumi.Input[str]]
|
573
486
|
"""
|
574
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
575
|
-
Possible values:
|
576
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
577
|
-
ON_DEMAND
|
578
|
-
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS
|
579
|
-
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS
|
580
|
-
COMMITMENT_1_YEAR_UPFRONT_PAYMENT
|
581
|
-
COMMITMENT_3_YEAR_UPFRONT_PAYMENT
|
487
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_3_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_1_YEAR_UPFRONT_PAYMENT`, `COMMITMENT_3_YEAR_UPFRONT_PAYMENT`,
|
582
488
|
"""
|
583
489
|
cpu_overcommit_ratio: NotRequired[pulumi.Input[float]]
|
584
490
|
"""
|
@@ -603,14 +509,7 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs:
|
|
603
509
|
memory_overcommit_ratio: Optional[pulumi.Input[float]] = None,
|
604
510
|
storage_deduplication_compression_ratio: Optional[pulumi.Input[float]] = None):
|
605
511
|
"""
|
606
|
-
:param pulumi.Input[str] commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
607
|
-
Possible values:
|
608
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
609
|
-
ON_DEMAND
|
610
|
-
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS
|
611
|
-
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS
|
612
|
-
COMMITMENT_1_YEAR_UPFRONT_PAYMENT
|
613
|
-
COMMITMENT_3_YEAR_UPFRONT_PAYMENT
|
512
|
+
:param pulumi.Input[str] commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_3_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_1_YEAR_UPFRONT_PAYMENT`, `COMMITMENT_3_YEAR_UPFRONT_PAYMENT`,
|
614
513
|
:param pulumi.Input[float] cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 8.0, with 0.1 increment.
|
615
514
|
:param pulumi.Input[float] memory_overcommit_ratio: Memory overcommit ratio. Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
616
515
|
:param pulumi.Input[float] storage_deduplication_compression_ratio: The Deduplication and Compression ratio is based on the logical (Used Before) space required to store data before applying deduplication and compression, in relation to the physical (Used After) space required after applying deduplication and compression. Specifically, the ratio is the Used Before space divided by the Used After space. For example, if the Used Before space is 3 GB, but the physical Used After space is 1 GB, the deduplication and compression ratio is 3x. Acceptable values are between 1.0 and 4.0.
|
@@ -628,14 +527,7 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs:
|
|
628
527
|
@pulumi.getter(name="commitmentPlan")
|
629
528
|
def commitment_plan(self) -> Optional[pulumi.Input[str]]:
|
630
529
|
"""
|
631
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
632
|
-
Possible values:
|
633
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
634
|
-
ON_DEMAND
|
635
|
-
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS
|
636
|
-
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS
|
637
|
-
COMMITMENT_1_YEAR_UPFRONT_PAYMENT
|
638
|
-
COMMITMENT_3_YEAR_UPFRONT_PAYMENT
|
530
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_3_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_1_YEAR_UPFRONT_PAYMENT`, `COMMITMENT_3_YEAR_UPFRONT_PAYMENT`,
|
639
531
|
"""
|
640
532
|
return pulumi.get(self, "commitment_plan")
|
641
533
|
|
@@ -66,30 +66,15 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
66
66
|
target_product: Optional[str] = None,
|
67
67
|
vmware_engine_preferences: Optional['outputs.PreferenceSetVirtualMachinePreferencesVmwareEnginePreferences'] = None):
|
68
68
|
"""
|
69
|
-
:param str commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
70
|
-
Possible values:
|
71
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
72
|
-
COMMITMENT_PLAN_NONE
|
73
|
-
COMMITMENT_PLAN_ONE_YEAR
|
74
|
-
COMMITMENT_PLAN_THREE_YEARS
|
69
|
+
:param str commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `COMMITMENT_PLAN_NONE`, `COMMITMENT_PLAN_ONE_YEAR`, `COMMITMENT_PLAN_THREE_YEARS`
|
75
70
|
:param 'PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs' compute_engine_preferences: The user preferences relating to Compute Engine target platform.
|
76
71
|
Structure is documented below.
|
77
72
|
:param 'PreferenceSetVirtualMachinePreferencesRegionPreferencesArgs' region_preferences: The user preferences relating to target regions.
|
78
73
|
Structure is documented below.
|
79
|
-
:param str sizing_optimization_strategy: Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with.
|
80
|
-
Possible values:
|
81
|
-
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED
|
82
|
-
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE
|
83
|
-
SIZING_OPTIMIZATION_STRATEGY_MODERATE
|
84
|
-
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE
|
74
|
+
:param str sizing_optimization_strategy: Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. Possible values: `SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED`, `SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE`, `SIZING_OPTIMIZATION_STRATEGY_MODERATE`, `SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE`
|
85
75
|
:param 'PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs' sole_tenancy_preferences: Preferences concerning Sole Tenancy nodes and VMs.
|
86
76
|
Structure is documented below.
|
87
|
-
:param str target_product: Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
88
|
-
Possible values:
|
89
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED
|
90
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE
|
91
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE
|
92
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY
|
77
|
+
:param str target_product: Target product for assets using this preference set. Specify either target product or business goal, but not both. Possible values: `COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED`, `COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY`
|
93
78
|
:param 'PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs' vmware_engine_preferences: The user preferences relating to Google Cloud VMware Engine target platform.
|
94
79
|
Structure is documented below.
|
95
80
|
"""
|
@@ -112,12 +97,7 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
112
97
|
@pulumi.getter(name="commitmentPlan")
|
113
98
|
def commitment_plan(self) -> Optional[str]:
|
114
99
|
"""
|
115
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
116
|
-
Possible values:
|
117
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
118
|
-
COMMITMENT_PLAN_NONE
|
119
|
-
COMMITMENT_PLAN_ONE_YEAR
|
120
|
-
COMMITMENT_PLAN_THREE_YEARS
|
100
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `COMMITMENT_PLAN_NONE`, `COMMITMENT_PLAN_ONE_YEAR`, `COMMITMENT_PLAN_THREE_YEARS`
|
121
101
|
"""
|
122
102
|
return pulumi.get(self, "commitment_plan")
|
123
103
|
|
@@ -143,12 +123,7 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
143
123
|
@pulumi.getter(name="sizingOptimizationStrategy")
|
144
124
|
def sizing_optimization_strategy(self) -> Optional[str]:
|
145
125
|
"""
|
146
|
-
Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with.
|
147
|
-
Possible values:
|
148
|
-
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED
|
149
|
-
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE
|
150
|
-
SIZING_OPTIMIZATION_STRATEGY_MODERATE
|
151
|
-
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE
|
126
|
+
Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. Possible values: `SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED`, `SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE`, `SIZING_OPTIMIZATION_STRATEGY_MODERATE`, `SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE`
|
152
127
|
"""
|
153
128
|
return pulumi.get(self, "sizing_optimization_strategy")
|
154
129
|
|
@@ -165,12 +140,7 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
165
140
|
@pulumi.getter(name="targetProduct")
|
166
141
|
def target_product(self) -> Optional[str]:
|
167
142
|
"""
|
168
|
-
Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
169
|
-
Possible values:
|
170
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED
|
171
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE
|
172
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE
|
173
|
-
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY
|
143
|
+
Target product for assets using this preference set. Specify either target product or business goal, but not both. Possible values: `COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED`, `COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE`, `COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY`
|
174
144
|
"""
|
175
145
|
return pulumi.get(self, "target_product")
|
176
146
|
|
@@ -209,11 +179,7 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferences(dict):
|
|
209
179
|
license_type: Optional[str] = None,
|
210
180
|
machine_preferences: Optional['outputs.PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferences'] = None):
|
211
181
|
"""
|
212
|
-
:param str license_type: License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan.
|
213
|
-
Possible values:
|
214
|
-
LICENSE_TYPE_UNSPECIFIED
|
215
|
-
LICENSE_TYPE_DEFAULT
|
216
|
-
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE
|
182
|
+
:param str license_type: License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. Possible values: `LICENSE_TYPE_UNSPECIFIED`, `LICENSE_TYPE_DEFAULT`, `LICENSE_TYPE_BRING_YOUR_OWN_LICENSE`
|
217
183
|
:param 'PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferencesArgs' machine_preferences: The type of machines to consider when calculating virtual machine migration insights and recommendations. Not all machine types are available in all zones and regions.
|
218
184
|
Structure is documented below.
|
219
185
|
"""
|
@@ -226,11 +192,7 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferences(dict):
|
|
226
192
|
@pulumi.getter(name="licenseType")
|
227
193
|
def license_type(self) -> Optional[str]:
|
228
194
|
"""
|
229
|
-
License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan.
|
230
|
-
Possible values:
|
231
|
-
LICENSE_TYPE_UNSPECIFIED
|
232
|
-
LICENSE_TYPE_DEFAULT
|
233
|
-
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE
|
195
|
+
License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. Possible values: `LICENSE_TYPE_UNSPECIFIED`, `LICENSE_TYPE_DEFAULT`, `LICENSE_TYPE_BRING_YOUR_OWN_LICENSE`
|
234
196
|
"""
|
235
197
|
return pulumi.get(self, "license_type")
|
236
198
|
|
@@ -368,19 +330,9 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferences(dict):
|
|
368
330
|
host_maintenance_policy: Optional[str] = None,
|
369
331
|
node_types: Optional[Sequence['outputs.PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeType']] = None):
|
370
332
|
"""
|
371
|
-
:param str commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
372
|
-
Possible values:
|
373
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
374
|
-
ON_DEMAND
|
375
|
-
COMMITMENT_1_YEAR
|
376
|
-
COMMITMENT_3_YEAR
|
333
|
+
:param str commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR`, `COMMITMENT_3_YEAR`
|
377
334
|
:param float cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 2.0 inclusive.
|
378
|
-
:param str host_maintenance_policy: Sole Tenancy nodes maintenance policy.
|
379
|
-
Possible values:
|
380
|
-
HOST_MAINTENANCE_POLICY_UNSPECIFIED
|
381
|
-
HOST_MAINTENANCE_POLICY_DEFAULT
|
382
|
-
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE
|
383
|
-
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP
|
335
|
+
:param str host_maintenance_policy: Sole Tenancy nodes maintenance policy. Possible values: `HOST_MAINTENANCE_POLICY_UNSPECIFIED`, `HOST_MAINTENANCE_POLICY_DEFAULT`, `HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE`, `HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP`
|
384
336
|
:param Sequence['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgs'] node_types: A list of sole tenant node types. An empty list means that all possible node types will be considered.
|
385
337
|
Structure is documented below.
|
386
338
|
"""
|
@@ -397,12 +349,7 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferences(dict):
|
|
397
349
|
@pulumi.getter(name="commitmentPlan")
|
398
350
|
def commitment_plan(self) -> Optional[str]:
|
399
351
|
"""
|
400
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
401
|
-
Possible values:
|
402
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
403
|
-
ON_DEMAND
|
404
|
-
COMMITMENT_1_YEAR
|
405
|
-
COMMITMENT_3_YEAR
|
352
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR`, `COMMITMENT_3_YEAR`
|
406
353
|
"""
|
407
354
|
return pulumi.get(self, "commitment_plan")
|
408
355
|
|
@@ -418,12 +365,7 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferences(dict):
|
|
418
365
|
@pulumi.getter(name="hostMaintenancePolicy")
|
419
366
|
def host_maintenance_policy(self) -> Optional[str]:
|
420
367
|
"""
|
421
|
-
Sole Tenancy nodes maintenance policy.
|
422
|
-
Possible values:
|
423
|
-
HOST_MAINTENANCE_POLICY_UNSPECIFIED
|
424
|
-
HOST_MAINTENANCE_POLICY_DEFAULT
|
425
|
-
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE
|
426
|
-
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP
|
368
|
+
Sole Tenancy nodes maintenance policy. Possible values: `HOST_MAINTENANCE_POLICY_UNSPECIFIED`, `HOST_MAINTENANCE_POLICY_DEFAULT`, `HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE`, `HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP`
|
427
369
|
"""
|
428
370
|
return pulumi.get(self, "host_maintenance_policy")
|
429
371
|
|
@@ -504,14 +446,7 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferences(dict):
|
|
504
446
|
memory_overcommit_ratio: Optional[float] = None,
|
505
447
|
storage_deduplication_compression_ratio: Optional[float] = None):
|
506
448
|
"""
|
507
|
-
:param str commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
508
|
-
Possible values:
|
509
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
510
|
-
ON_DEMAND
|
511
|
-
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS
|
512
|
-
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS
|
513
|
-
COMMITMENT_1_YEAR_UPFRONT_PAYMENT
|
514
|
-
COMMITMENT_3_YEAR_UPFRONT_PAYMENT
|
449
|
+
:param str commitment_plan: Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_3_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_1_YEAR_UPFRONT_PAYMENT`, `COMMITMENT_3_YEAR_UPFRONT_PAYMENT`,
|
515
450
|
:param float cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 8.0, with 0.1 increment.
|
516
451
|
:param float memory_overcommit_ratio: Memory overcommit ratio. Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
517
452
|
:param float storage_deduplication_compression_ratio: The Deduplication and Compression ratio is based on the logical (Used Before) space required to store data before applying deduplication and compression, in relation to the physical (Used After) space required after applying deduplication and compression. Specifically, the ratio is the Used Before space divided by the Used After space. For example, if the Used Before space is 3 GB, but the physical Used After space is 1 GB, the deduplication and compression ratio is 3x. Acceptable values are between 1.0 and 4.0.
|
@@ -529,14 +464,7 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferences(dict):
|
|
529
464
|
@pulumi.getter(name="commitmentPlan")
|
530
465
|
def commitment_plan(self) -> Optional[str]:
|
531
466
|
"""
|
532
|
-
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with.
|
533
|
-
Possible values:
|
534
|
-
COMMITMENT_PLAN_UNSPECIFIED
|
535
|
-
ON_DEMAND
|
536
|
-
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS
|
537
|
-
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS
|
538
|
-
COMMITMENT_1_YEAR_UPFRONT_PAYMENT
|
539
|
-
COMMITMENT_3_YEAR_UPFRONT_PAYMENT
|
467
|
+
Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. Possible values: `COMMITMENT_PLAN_UNSPECIFIED`, `ON_DEMAND`, `COMMITMENT_1_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_3_YEAR_MONTHLY_PAYMENTS`, `COMMITMENT_1_YEAR_UPFRONT_PAYMENT`, `COMMITMENT_3_YEAR_UPFRONT_PAYMENT`,
|
540
468
|
"""
|
541
469
|
return pulumi.get(self, "commitment_plan")
|
542
470
|
|