pulumi-gcp 7.35.0__py3-none-any.whl → 7.35.0a1722924350__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/accesscontextmanager/_inputs.py +3 -12
- pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
- pulumi_gcp/accesscontextmanager/outputs.py +2 -8
- pulumi_gcp/bigquery/data_transfer_config.py +0 -52
- pulumi_gcp/compute/_inputs.py +24 -24
- pulumi_gcp/compute/disk.py +0 -75
- pulumi_gcp/compute/get_disk.py +1 -11
- pulumi_gcp/compute/get_hc_vpn_gateway.py +1 -11
- 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 +7 -68
- 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 +2 -10
- pulumi_gcp/kms/key_handle.py +7 -7
- pulumi_gcp/migrationcenter/_inputs.py +129 -21
- pulumi_gcp/migrationcenter/outputs.py +86 -14
- pulumi_gcp/networkconnectivity/hub.py +0 -69
- pulumi_gcp/organizations/project.py +7 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +15 -35
- pulumi_gcp/sql/outputs.py +14 -50
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/RECORD +28 -28
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.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 OR compute.googleapis.com/*`
|
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 OR compute.googleapis.com/*`
|
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 OR compute.googleapis.com/*`
|
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 OR compute.googleapis.com/*`
|
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 OR compute.googleapis.com/*`
|
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 OR compute.googleapis.com/*`
|
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 OR compute.googleapis.com/*`
|
551
551
|
"""
|
552
552
|
return pulumi.get(self, "resource_type_selector")
|
553
553
|
|
@@ -39,7 +39,12 @@ 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.
|
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
|
43
48
|
"""
|
44
49
|
compute_engine_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgsDict']]
|
45
50
|
"""
|
@@ -53,7 +58,12 @@ if not MYPY:
|
|
53
58
|
"""
|
54
59
|
sizing_optimization_strategy: NotRequired[pulumi.Input[str]]
|
55
60
|
"""
|
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.
|
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
|
57
67
|
"""
|
58
68
|
sole_tenancy_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgsDict']]
|
59
69
|
"""
|
@@ -62,7 +72,12 @@ if not MYPY:
|
|
62
72
|
"""
|
63
73
|
target_product: NotRequired[pulumi.Input[str]]
|
64
74
|
"""
|
65
|
-
Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
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
|
66
81
|
"""
|
67
82
|
vmware_engine_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgsDict']]
|
68
83
|
"""
|
@@ -83,15 +98,30 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
83
98
|
target_product: Optional[pulumi.Input[str]] = None,
|
84
99
|
vmware_engine_preferences: Optional[pulumi.Input['PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs']] = None):
|
85
100
|
"""
|
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.
|
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
|
87
107
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs'] compute_engine_preferences: The user preferences relating to Compute Engine target platform.
|
88
108
|
Structure is documented below.
|
89
109
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesRegionPreferencesArgs'] region_preferences: The user preferences relating to target regions.
|
90
110
|
Structure is documented below.
|
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.
|
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
|
92
117
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs'] sole_tenancy_preferences: Preferences concerning Sole Tenancy nodes and VMs.
|
93
118
|
Structure is documented below.
|
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.
|
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
|
95
125
|
:param pulumi.Input['PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs'] vmware_engine_preferences: The user preferences relating to Google Cloud VMware Engine target platform.
|
96
126
|
Structure is documented below.
|
97
127
|
"""
|
@@ -114,7 +144,12 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
114
144
|
@pulumi.getter(name="commitmentPlan")
|
115
145
|
def commitment_plan(self) -> Optional[pulumi.Input[str]]:
|
116
146
|
"""
|
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.
|
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
|
118
153
|
"""
|
119
154
|
return pulumi.get(self, "commitment_plan")
|
120
155
|
|
@@ -152,7 +187,12 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
152
187
|
@pulumi.getter(name="sizingOptimizationStrategy")
|
153
188
|
def sizing_optimization_strategy(self) -> Optional[pulumi.Input[str]]:
|
154
189
|
"""
|
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.
|
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
|
156
196
|
"""
|
157
197
|
return pulumi.get(self, "sizing_optimization_strategy")
|
158
198
|
|
@@ -177,7 +217,12 @@ class PreferenceSetVirtualMachinePreferencesArgs:
|
|
177
217
|
@pulumi.getter(name="targetProduct")
|
178
218
|
def target_product(self) -> Optional[pulumi.Input[str]]:
|
179
219
|
"""
|
180
|
-
Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
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
|
181
226
|
"""
|
182
227
|
return pulumi.get(self, "target_product")
|
183
228
|
|
@@ -203,7 +248,11 @@ if not MYPY:
|
|
203
248
|
class PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgsDict(TypedDict):
|
204
249
|
license_type: NotRequired[pulumi.Input[str]]
|
205
250
|
"""
|
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.
|
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
|
207
256
|
"""
|
208
257
|
machine_preferences: NotRequired[pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferencesArgsDict']]
|
209
258
|
"""
|
@@ -219,7 +268,11 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs:
|
|
219
268
|
license_type: Optional[pulumi.Input[str]] = None,
|
220
269
|
machine_preferences: Optional[pulumi.Input['PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferencesArgs']] = None):
|
221
270
|
"""
|
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.
|
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
|
223
276
|
: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.
|
224
277
|
Structure is documented below.
|
225
278
|
"""
|
@@ -232,7 +285,11 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs:
|
|
232
285
|
@pulumi.getter(name="licenseType")
|
233
286
|
def license_type(self) -> Optional[pulumi.Input[str]]:
|
234
287
|
"""
|
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.
|
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
|
236
293
|
"""
|
237
294
|
return pulumi.get(self, "license_type")
|
238
295
|
|
@@ -357,7 +414,12 @@ if not MYPY:
|
|
357
414
|
class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgsDict(TypedDict):
|
358
415
|
commitment_plan: NotRequired[pulumi.Input[str]]
|
359
416
|
"""
|
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.
|
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
|
361
423
|
"""
|
362
424
|
cpu_overcommit_ratio: NotRequired[pulumi.Input[float]]
|
363
425
|
"""
|
@@ -365,7 +427,12 @@ if not MYPY:
|
|
365
427
|
"""
|
366
428
|
host_maintenance_policy: NotRequired[pulumi.Input[str]]
|
367
429
|
"""
|
368
|
-
Sole Tenancy nodes maintenance policy.
|
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
|
369
436
|
"""
|
370
437
|
node_types: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgsDict']]]]
|
371
438
|
"""
|
@@ -383,9 +450,19 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs:
|
|
383
450
|
host_maintenance_policy: Optional[pulumi.Input[str]] = None,
|
384
451
|
node_types: Optional[pulumi.Input[Sequence[pulumi.Input['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgs']]]] = None):
|
385
452
|
"""
|
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.
|
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
|
387
459
|
:param pulumi.Input[float] cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 2.0 inclusive.
|
388
|
-
:param pulumi.Input[str] host_maintenance_policy: Sole Tenancy nodes maintenance policy.
|
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
|
389
466
|
: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.
|
390
467
|
Structure is documented below.
|
391
468
|
"""
|
@@ -402,7 +479,12 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs:
|
|
402
479
|
@pulumi.getter(name="commitmentPlan")
|
403
480
|
def commitment_plan(self) -> Optional[pulumi.Input[str]]:
|
404
481
|
"""
|
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.
|
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
|
406
488
|
"""
|
407
489
|
return pulumi.get(self, "commitment_plan")
|
408
490
|
|
@@ -426,7 +508,12 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs:
|
|
426
508
|
@pulumi.getter(name="hostMaintenancePolicy")
|
427
509
|
def host_maintenance_policy(self) -> Optional[pulumi.Input[str]]:
|
428
510
|
"""
|
429
|
-
Sole Tenancy nodes maintenance policy.
|
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
|
430
517
|
"""
|
431
518
|
return pulumi.get(self, "host_maintenance_policy")
|
432
519
|
|
@@ -484,7 +571,14 @@ if not MYPY:
|
|
484
571
|
class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgsDict(TypedDict):
|
485
572
|
commitment_plan: NotRequired[pulumi.Input[str]]
|
486
573
|
"""
|
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.
|
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
|
488
582
|
"""
|
489
583
|
cpu_overcommit_ratio: NotRequired[pulumi.Input[float]]
|
490
584
|
"""
|
@@ -509,7 +603,14 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs:
|
|
509
603
|
memory_overcommit_ratio: Optional[pulumi.Input[float]] = None,
|
510
604
|
storage_deduplication_compression_ratio: Optional[pulumi.Input[float]] = None):
|
511
605
|
"""
|
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.
|
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
|
513
614
|
:param pulumi.Input[float] cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 8.0, with 0.1 increment.
|
514
615
|
:param pulumi.Input[float] memory_overcommit_ratio: Memory overcommit ratio. Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
515
616
|
: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.
|
@@ -527,7 +628,14 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs:
|
|
527
628
|
@pulumi.getter(name="commitmentPlan")
|
528
629
|
def commitment_plan(self) -> Optional[pulumi.Input[str]]:
|
529
630
|
"""
|
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.
|
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
|
531
639
|
"""
|
532
640
|
return pulumi.get(self, "commitment_plan")
|
533
641
|
|
@@ -66,15 +66,30 @@ 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.
|
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
|
70
75
|
:param 'PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesArgs' compute_engine_preferences: The user preferences relating to Compute Engine target platform.
|
71
76
|
Structure is documented below.
|
72
77
|
:param 'PreferenceSetVirtualMachinePreferencesRegionPreferencesArgs' region_preferences: The user preferences relating to target regions.
|
73
78
|
Structure is documented below.
|
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.
|
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
|
75
85
|
:param 'PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesArgs' sole_tenancy_preferences: Preferences concerning Sole Tenancy nodes and VMs.
|
76
86
|
Structure is documented below.
|
77
|
-
:param str target_product: Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
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
|
78
93
|
:param 'PreferenceSetVirtualMachinePreferencesVmwareEnginePreferencesArgs' vmware_engine_preferences: The user preferences relating to Google Cloud VMware Engine target platform.
|
79
94
|
Structure is documented below.
|
80
95
|
"""
|
@@ -97,7 +112,12 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
97
112
|
@pulumi.getter(name="commitmentPlan")
|
98
113
|
def commitment_plan(self) -> Optional[str]:
|
99
114
|
"""
|
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.
|
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
|
101
121
|
"""
|
102
122
|
return pulumi.get(self, "commitment_plan")
|
103
123
|
|
@@ -123,7 +143,12 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
123
143
|
@pulumi.getter(name="sizingOptimizationStrategy")
|
124
144
|
def sizing_optimization_strategy(self) -> Optional[str]:
|
125
145
|
"""
|
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.
|
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
|
127
152
|
"""
|
128
153
|
return pulumi.get(self, "sizing_optimization_strategy")
|
129
154
|
|
@@ -140,7 +165,12 @@ class PreferenceSetVirtualMachinePreferences(dict):
|
|
140
165
|
@pulumi.getter(name="targetProduct")
|
141
166
|
def target_product(self) -> Optional[str]:
|
142
167
|
"""
|
143
|
-
Target product for assets using this preference set. Specify either target product or business goal, but not both.
|
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
|
144
174
|
"""
|
145
175
|
return pulumi.get(self, "target_product")
|
146
176
|
|
@@ -179,7 +209,11 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferences(dict):
|
|
179
209
|
license_type: Optional[str] = None,
|
180
210
|
machine_preferences: Optional['outputs.PreferenceSetVirtualMachinePreferencesComputeEnginePreferencesMachinePreferences'] = None):
|
181
211
|
"""
|
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.
|
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
|
183
217
|
: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.
|
184
218
|
Structure is documented below.
|
185
219
|
"""
|
@@ -192,7 +226,11 @@ class PreferenceSetVirtualMachinePreferencesComputeEnginePreferences(dict):
|
|
192
226
|
@pulumi.getter(name="licenseType")
|
193
227
|
def license_type(self) -> Optional[str]:
|
194
228
|
"""
|
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.
|
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
|
196
234
|
"""
|
197
235
|
return pulumi.get(self, "license_type")
|
198
236
|
|
@@ -330,9 +368,19 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferences(dict):
|
|
330
368
|
host_maintenance_policy: Optional[str] = None,
|
331
369
|
node_types: Optional[Sequence['outputs.PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeType']] = None):
|
332
370
|
"""
|
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.
|
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
|
334
377
|
:param float cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 2.0 inclusive.
|
335
|
-
:param str host_maintenance_policy: Sole Tenancy nodes maintenance policy.
|
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
|
336
384
|
:param Sequence['PreferenceSetVirtualMachinePreferencesSoleTenancyPreferencesNodeTypeArgs'] node_types: A list of sole tenant node types. An empty list means that all possible node types will be considered.
|
337
385
|
Structure is documented below.
|
338
386
|
"""
|
@@ -349,7 +397,12 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferences(dict):
|
|
349
397
|
@pulumi.getter(name="commitmentPlan")
|
350
398
|
def commitment_plan(self) -> Optional[str]:
|
351
399
|
"""
|
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.
|
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
|
353
406
|
"""
|
354
407
|
return pulumi.get(self, "commitment_plan")
|
355
408
|
|
@@ -365,7 +418,12 @@ class PreferenceSetVirtualMachinePreferencesSoleTenancyPreferences(dict):
|
|
365
418
|
@pulumi.getter(name="hostMaintenancePolicy")
|
366
419
|
def host_maintenance_policy(self) -> Optional[str]:
|
367
420
|
"""
|
368
|
-
Sole Tenancy nodes maintenance policy.
|
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
|
369
427
|
"""
|
370
428
|
return pulumi.get(self, "host_maintenance_policy")
|
371
429
|
|
@@ -446,7 +504,14 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferences(dict):
|
|
446
504
|
memory_overcommit_ratio: Optional[float] = None,
|
447
505
|
storage_deduplication_compression_ratio: Optional[float] = None):
|
448
506
|
"""
|
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.
|
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
|
450
515
|
:param float cpu_overcommit_ratio: CPU overcommit ratio. Acceptable values are between 1.0 and 8.0, with 0.1 increment.
|
451
516
|
:param float memory_overcommit_ratio: Memory overcommit ratio. Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
452
517
|
: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.
|
@@ -464,7 +529,14 @@ class PreferenceSetVirtualMachinePreferencesVmwareEnginePreferences(dict):
|
|
464
529
|
@pulumi.getter(name="commitmentPlan")
|
465
530
|
def commitment_plan(self) -> Optional[str]:
|
466
531
|
"""
|
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.
|
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
|
468
540
|
"""
|
469
541
|
return pulumi.get(self, "commitment_plan")
|
470
542
|
|