pulumi-vsphere 4.13.1__py3-none-any.whl → 4.13.2__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-vsphere might be problematic. Click here for more details.
- pulumi_vsphere/__init__.py +1 -0
- pulumi_vsphere/_inputs.py +969 -968
- pulumi_vsphere/_utilities.py +8 -4
- pulumi_vsphere/compute_cluster.py +918 -917
- pulumi_vsphere/compute_cluster_host_group.py +43 -42
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +71 -70
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +71 -70
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py +85 -84
- pulumi_vsphere/compute_cluster_vm_group.py +43 -42
- pulumi_vsphere/compute_cluster_vm_host_rule.py +99 -98
- pulumi_vsphere/config/__init__.py +1 -0
- pulumi_vsphere/config/__init__.pyi +1 -0
- pulumi_vsphere/config/vars.py +1 -0
- pulumi_vsphere/content_library.py +43 -42
- pulumi_vsphere/content_library_item.py +85 -84
- pulumi_vsphere/custom_attribute.py +29 -28
- pulumi_vsphere/datacenter.py +64 -63
- pulumi_vsphere/datastore_cluster.py +351 -350
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +71 -70
- pulumi_vsphere/distributed_port_group.py +645 -644
- pulumi_vsphere/distributed_virtual_switch.py +1282 -1281
- pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +57 -56
- pulumi_vsphere/dpm_host_override.py +57 -56
- pulumi_vsphere/drs_vm_override.py +57 -56
- pulumi_vsphere/entity_permissions.py +29 -28
- pulumi_vsphere/file.py +95 -94
- pulumi_vsphere/folder.py +71 -70
- pulumi_vsphere/get_compute_cluster.py +13 -12
- pulumi_vsphere/get_compute_cluster_host_group.py +13 -12
- pulumi_vsphere/get_content_library.py +7 -6
- pulumi_vsphere/get_content_library_item.py +17 -16
- pulumi_vsphere/get_custom_attribute.py +8 -7
- pulumi_vsphere/get_datacenter.py +8 -7
- pulumi_vsphere/get_datastore.py +17 -16
- pulumi_vsphere/get_datastore_cluster.py +13 -12
- pulumi_vsphere/get_datastore_stats.py +17 -16
- pulumi_vsphere/get_distributed_virtual_switch.py +13 -12
- pulumi_vsphere/get_dynamic.py +17 -16
- pulumi_vsphere/get_folder.py +7 -6
- pulumi_vsphere/get_guest_os_customization.py +11 -10
- pulumi_vsphere/get_host.py +13 -12
- pulumi_vsphere/get_host_base_images.py +3 -2
- pulumi_vsphere/get_host_pci_device.py +23 -22
- pulumi_vsphere/get_host_thumbprint.py +17 -16
- pulumi_vsphere/get_host_vgpu_profile.py +12 -11
- pulumi_vsphere/get_license.py +12 -11
- pulumi_vsphere/get_network.py +18 -17
- pulumi_vsphere/get_ovf_vm_template.py +89 -88
- pulumi_vsphere/get_policy.py +7 -6
- pulumi_vsphere/get_resource_pool.py +12 -11
- pulumi_vsphere/get_role.py +20 -19
- pulumi_vsphere/get_tag.py +13 -12
- pulumi_vsphere/get_tag_category.py +10 -9
- pulumi_vsphere/get_vapp_container.py +12 -11
- pulumi_vsphere/get_virtual_machine.py +204 -203
- pulumi_vsphere/get_vmfs_disks.py +18 -17
- pulumi_vsphere/guest_os_customization.py +57 -56
- pulumi_vsphere/ha_vm_override.py +211 -210
- pulumi_vsphere/host.py +197 -196
- pulumi_vsphere/host_port_group.py +253 -252
- pulumi_vsphere/host_virtual_switch.py +295 -294
- pulumi_vsphere/license.py +57 -56
- pulumi_vsphere/nas_datastore.py +211 -210
- pulumi_vsphere/offline_software_depot.py +15 -14
- pulumi_vsphere/outputs.py +721 -720
- pulumi_vsphere/provider.py +98 -97
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/resource_pool.py +211 -210
- pulumi_vsphere/role.py +36 -35
- pulumi_vsphere/storage_drs_vm_override.py +71 -70
- pulumi_vsphere/supervisor.py +155 -154
- pulumi_vsphere/tag.py +43 -42
- pulumi_vsphere/tag_category.py +57 -56
- pulumi_vsphere/vapp_container.py +211 -210
- pulumi_vsphere/vapp_entity.py +141 -140
- pulumi_vsphere/virtual_disk.py +99 -98
- pulumi_vsphere/virtual_machine.py +1040 -1039
- pulumi_vsphere/virtual_machine_class.py +85 -84
- pulumi_vsphere/virtual_machine_snapshot.py +99 -98
- pulumi_vsphere/vm_storage_policy.py +29 -28
- pulumi_vsphere/vmfs_datastore.py +148 -147
- pulumi_vsphere/vnic.py +113 -112
- {pulumi_vsphere-4.13.1.dist-info → pulumi_vsphere-4.13.2.dist-info}/METADATA +2 -2
- pulumi_vsphere-4.13.2.dist-info/RECORD +87 -0
- {pulumi_vsphere-4.13.1.dist-info → pulumi_vsphere-4.13.2.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.13.1.dist-info/RECORD +0 -87
- {pulumi_vsphere-4.13.1.dist-info → pulumi_vsphere-4.13.2.dist-info}/top_level.txt +0 -0
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -21,23 +22,23 @@ __all__ = ['OfflineSoftwareDepotArgs', 'OfflineSoftwareDepot']
|
|
|
21
22
|
@pulumi.input_type
|
|
22
23
|
class OfflineSoftwareDepotArgs:
|
|
23
24
|
def __init__(__self__, *,
|
|
24
|
-
location: pulumi.Input[str]):
|
|
25
|
+
location: pulumi.Input[builtins.str]):
|
|
25
26
|
"""
|
|
26
27
|
The set of arguments for constructing a OfflineSoftwareDepot resource.
|
|
27
|
-
:param pulumi.Input[str] location: The URL where the depot source is hosted.
|
|
28
|
+
:param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
|
|
28
29
|
"""
|
|
29
30
|
pulumi.set(__self__, "location", location)
|
|
30
31
|
|
|
31
32
|
@property
|
|
32
33
|
@pulumi.getter
|
|
33
|
-
def location(self) -> pulumi.Input[str]:
|
|
34
|
+
def location(self) -> pulumi.Input[builtins.str]:
|
|
34
35
|
"""
|
|
35
36
|
The URL where the depot source is hosted.
|
|
36
37
|
"""
|
|
37
38
|
return pulumi.get(self, "location")
|
|
38
39
|
|
|
39
40
|
@location.setter
|
|
40
|
-
def location(self, value: pulumi.Input[str]):
|
|
41
|
+
def location(self, value: pulumi.Input[builtins.str]):
|
|
41
42
|
pulumi.set(self, "location", value)
|
|
42
43
|
|
|
43
44
|
|
|
@@ -45,11 +46,11 @@ class OfflineSoftwareDepotArgs:
|
|
|
45
46
|
class _OfflineSoftwareDepotState:
|
|
46
47
|
def __init__(__self__, *,
|
|
47
48
|
components: Optional[pulumi.Input[Sequence[pulumi.Input['OfflineSoftwareDepotComponentArgs']]]] = None,
|
|
48
|
-
location: Optional[pulumi.Input[str]] = None):
|
|
49
|
+
location: Optional[pulumi.Input[builtins.str]] = None):
|
|
49
50
|
"""
|
|
50
51
|
Input properties used for looking up and filtering OfflineSoftwareDepot resources.
|
|
51
52
|
:param pulumi.Input[Sequence[pulumi.Input['OfflineSoftwareDepotComponentArgs']]] components: The list of custom components in the depot.
|
|
52
|
-
:param pulumi.Input[str] location: The URL where the depot source is hosted.
|
|
53
|
+
:param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
|
|
53
54
|
"""
|
|
54
55
|
if components is not None:
|
|
55
56
|
pulumi.set(__self__, "components", components)
|
|
@@ -70,14 +71,14 @@ class _OfflineSoftwareDepotState:
|
|
|
70
71
|
|
|
71
72
|
@property
|
|
72
73
|
@pulumi.getter
|
|
73
|
-
def location(self) -> Optional[pulumi.Input[str]]:
|
|
74
|
+
def location(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
74
75
|
"""
|
|
75
76
|
The URL where the depot source is hosted.
|
|
76
77
|
"""
|
|
77
78
|
return pulumi.get(self, "location")
|
|
78
79
|
|
|
79
80
|
@location.setter
|
|
80
|
-
def location(self, value: Optional[pulumi.Input[str]]):
|
|
81
|
+
def location(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
81
82
|
pulumi.set(self, "location", value)
|
|
82
83
|
|
|
83
84
|
|
|
@@ -86,7 +87,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
|
|
|
86
87
|
def __init__(__self__,
|
|
87
88
|
resource_name: str,
|
|
88
89
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
89
|
-
location: Optional[pulumi.Input[str]] = None,
|
|
90
|
+
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
90
91
|
__props__=None):
|
|
91
92
|
"""
|
|
92
93
|
Provides a VMware vSphere offline software depot resource.
|
|
@@ -95,7 +96,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
|
|
|
95
96
|
|
|
96
97
|
:param str resource_name: The name of the resource.
|
|
97
98
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
98
|
-
:param pulumi.Input[str] location: The URL where the depot source is hosted.
|
|
99
|
+
:param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
|
|
99
100
|
"""
|
|
100
101
|
...
|
|
101
102
|
@overload
|
|
@@ -123,7 +124,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
|
|
|
123
124
|
def _internal_init(__self__,
|
|
124
125
|
resource_name: str,
|
|
125
126
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
126
|
-
location: Optional[pulumi.Input[str]] = None,
|
|
127
|
+
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
127
128
|
__props__=None):
|
|
128
129
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
129
130
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -148,7 +149,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
|
|
|
148
149
|
id: pulumi.Input[str],
|
|
149
150
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
150
151
|
components: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OfflineSoftwareDepotComponentArgs', 'OfflineSoftwareDepotComponentArgsDict']]]]] = None,
|
|
151
|
-
location: Optional[pulumi.Input[str]] = None) -> 'OfflineSoftwareDepot':
|
|
152
|
+
location: Optional[pulumi.Input[builtins.str]] = None) -> 'OfflineSoftwareDepot':
|
|
152
153
|
"""
|
|
153
154
|
Get an existing OfflineSoftwareDepot resource's state with the given name, id, and optional extra
|
|
154
155
|
properties used to qualify the lookup.
|
|
@@ -157,7 +158,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
|
|
|
157
158
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
158
159
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
159
160
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OfflineSoftwareDepotComponentArgs', 'OfflineSoftwareDepotComponentArgsDict']]]] components: The list of custom components in the depot.
|
|
160
|
-
:param pulumi.Input[str] location: The URL where the depot source is hosted.
|
|
161
|
+
:param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
|
|
161
162
|
"""
|
|
162
163
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
163
164
|
|
|
@@ -177,7 +178,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
|
|
|
177
178
|
|
|
178
179
|
@property
|
|
179
180
|
@pulumi.getter
|
|
180
|
-
def location(self) -> pulumi.Output[str]:
|
|
181
|
+
def location(self) -> pulumi.Output[builtins.str]:
|
|
181
182
|
"""
|
|
182
183
|
The URL where the depot source is hosted.
|
|
183
184
|
"""
|