pulumi-vsphere 4.16.0a1755712679__py3-none-any.whl → 4.16.0a1755919665__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_vsphere/__init__.py +10 -0
- pulumi_vsphere/configuration_profile.py +286 -0
- pulumi_vsphere/distributed_virtual_switch.py +7 -7
- pulumi_vsphere/get_configuration_profile.py +145 -0
- pulumi_vsphere/get_ovf_vm_template.py +2 -2
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/virtual_disk.py +4 -4
- pulumi_vsphere/virtual_machine.py +7 -7
- {pulumi_vsphere-4.16.0a1755712679.dist-info → pulumi_vsphere-4.16.0a1755919665.dist-info}/METADATA +1 -1
- {pulumi_vsphere-4.16.0a1755712679.dist-info → pulumi_vsphere-4.16.0a1755919665.dist-info}/RECORD +12 -10
- {pulumi_vsphere-4.16.0a1755712679.dist-info → pulumi_vsphere-4.16.0a1755919665.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.16.0a1755712679.dist-info → pulumi_vsphere-4.16.0a1755919665.dist-info}/top_level.txt +0 -0
pulumi_vsphere/__init__.py
CHANGED
|
@@ -13,6 +13,7 @@ from .compute_cluster_vm_anti_affinity_rule import *
|
|
|
13
13
|
from .compute_cluster_vm_dependency_rule import *
|
|
14
14
|
from .compute_cluster_vm_group import *
|
|
15
15
|
from .compute_cluster_vm_host_rule import *
|
|
16
|
+
from .configuration_profile import *
|
|
16
17
|
from .content_library import *
|
|
17
18
|
from .content_library_item import *
|
|
18
19
|
from .custom_attribute import *
|
|
@@ -29,6 +30,7 @@ from .file import *
|
|
|
29
30
|
from .folder import *
|
|
30
31
|
from .get_compute_cluster import *
|
|
31
32
|
from .get_compute_cluster_host_group import *
|
|
33
|
+
from .get_configuration_profile import *
|
|
32
34
|
from .get_content_library import *
|
|
33
35
|
from .get_content_library_item import *
|
|
34
36
|
from .get_custom_attribute import *
|
|
@@ -149,6 +151,14 @@ _utilities.register(
|
|
|
149
151
|
"vsphere:index/computeClusterVmHostRule:ComputeClusterVmHostRule": "ComputeClusterVmHostRule"
|
|
150
152
|
}
|
|
151
153
|
},
|
|
154
|
+
{
|
|
155
|
+
"pkg": "vsphere",
|
|
156
|
+
"mod": "index/configurationProfile",
|
|
157
|
+
"fqn": "pulumi_vsphere",
|
|
158
|
+
"classes": {
|
|
159
|
+
"vsphere:index/configurationProfile:ConfigurationProfile": "ConfigurationProfile"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
152
162
|
{
|
|
153
163
|
"pkg": "vsphere",
|
|
154
164
|
"mod": "index/contentLibrary",
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = ['ConfigurationProfileArgs', 'ConfigurationProfile']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class ConfigurationProfileArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
cluster_id: pulumi.Input[_builtins.str],
|
|
23
|
+
configuration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24
|
+
reference_host_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a ConfigurationProfile resource.
|
|
27
|
+
:param pulumi.Input[_builtins.str] cluster_id: The identifier of the cluster.
|
|
28
|
+
:param pulumi.Input[_builtins.str] configuration: The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
29
|
+
:param pulumi.Input[_builtins.str] reference_host_id: The identifier of the host to use as a configuration source.
|
|
30
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
31
|
+
`configuration` is not set.
|
|
32
|
+
"""
|
|
33
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
|
34
|
+
if configuration is not None:
|
|
35
|
+
pulumi.set(__self__, "configuration", configuration)
|
|
36
|
+
if reference_host_id is not None:
|
|
37
|
+
pulumi.set(__self__, "reference_host_id", reference_host_id)
|
|
38
|
+
|
|
39
|
+
@_builtins.property
|
|
40
|
+
@pulumi.getter(name="clusterId")
|
|
41
|
+
def cluster_id(self) -> pulumi.Input[_builtins.str]:
|
|
42
|
+
"""
|
|
43
|
+
The identifier of the cluster.
|
|
44
|
+
"""
|
|
45
|
+
return pulumi.get(self, "cluster_id")
|
|
46
|
+
|
|
47
|
+
@cluster_id.setter
|
|
48
|
+
def cluster_id(self, value: pulumi.Input[_builtins.str]):
|
|
49
|
+
pulumi.set(self, "cluster_id", value)
|
|
50
|
+
|
|
51
|
+
@_builtins.property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def configuration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
54
|
+
"""
|
|
55
|
+
The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "configuration")
|
|
58
|
+
|
|
59
|
+
@configuration.setter
|
|
60
|
+
def configuration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
61
|
+
pulumi.set(self, "configuration", value)
|
|
62
|
+
|
|
63
|
+
@_builtins.property
|
|
64
|
+
@pulumi.getter(name="referenceHostId")
|
|
65
|
+
def reference_host_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
66
|
+
"""
|
|
67
|
+
The identifier of the host to use as a configuration source.
|
|
68
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
69
|
+
`configuration` is not set.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "reference_host_id")
|
|
72
|
+
|
|
73
|
+
@reference_host_id.setter
|
|
74
|
+
def reference_host_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
75
|
+
pulumi.set(self, "reference_host_id", value)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
@pulumi.input_type
|
|
79
|
+
class _ConfigurationProfileState:
|
|
80
|
+
def __init__(__self__, *,
|
|
81
|
+
cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
82
|
+
configuration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
83
|
+
reference_host_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
84
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None):
|
|
85
|
+
"""
|
|
86
|
+
Input properties used for looking up and filtering ConfigurationProfile resources.
|
|
87
|
+
:param pulumi.Input[_builtins.str] cluster_id: The identifier of the cluster.
|
|
88
|
+
:param pulumi.Input[_builtins.str] configuration: The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
89
|
+
:param pulumi.Input[_builtins.str] reference_host_id: The identifier of the host to use as a configuration source.
|
|
90
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
91
|
+
`configuration` is not set.
|
|
92
|
+
:param pulumi.Input[_builtins.str] schema: The JSON schema for the profile.
|
|
93
|
+
"""
|
|
94
|
+
if cluster_id is not None:
|
|
95
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
|
96
|
+
if configuration is not None:
|
|
97
|
+
pulumi.set(__self__, "configuration", configuration)
|
|
98
|
+
if reference_host_id is not None:
|
|
99
|
+
pulumi.set(__self__, "reference_host_id", reference_host_id)
|
|
100
|
+
if schema is not None:
|
|
101
|
+
pulumi.set(__self__, "schema", schema)
|
|
102
|
+
|
|
103
|
+
@_builtins.property
|
|
104
|
+
@pulumi.getter(name="clusterId")
|
|
105
|
+
def cluster_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
106
|
+
"""
|
|
107
|
+
The identifier of the cluster.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "cluster_id")
|
|
110
|
+
|
|
111
|
+
@cluster_id.setter
|
|
112
|
+
def cluster_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
113
|
+
pulumi.set(self, "cluster_id", value)
|
|
114
|
+
|
|
115
|
+
@_builtins.property
|
|
116
|
+
@pulumi.getter
|
|
117
|
+
def configuration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
118
|
+
"""
|
|
119
|
+
The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "configuration")
|
|
122
|
+
|
|
123
|
+
@configuration.setter
|
|
124
|
+
def configuration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
125
|
+
pulumi.set(self, "configuration", value)
|
|
126
|
+
|
|
127
|
+
@_builtins.property
|
|
128
|
+
@pulumi.getter(name="referenceHostId")
|
|
129
|
+
def reference_host_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
130
|
+
"""
|
|
131
|
+
The identifier of the host to use as a configuration source.
|
|
132
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
133
|
+
`configuration` is not set.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "reference_host_id")
|
|
136
|
+
|
|
137
|
+
@reference_host_id.setter
|
|
138
|
+
def reference_host_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
139
|
+
pulumi.set(self, "reference_host_id", value)
|
|
140
|
+
|
|
141
|
+
@_builtins.property
|
|
142
|
+
@pulumi.getter
|
|
143
|
+
def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
144
|
+
"""
|
|
145
|
+
The JSON schema for the profile.
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "schema")
|
|
148
|
+
|
|
149
|
+
@schema.setter
|
|
150
|
+
def schema(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
151
|
+
pulumi.set(self, "schema", value)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
@pulumi.type_token("vsphere:index/configurationProfile:ConfigurationProfile")
|
|
155
|
+
class ConfigurationProfile(pulumi.CustomResource):
|
|
156
|
+
@overload
|
|
157
|
+
def __init__(__self__,
|
|
158
|
+
resource_name: str,
|
|
159
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
160
|
+
cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
161
|
+
configuration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
162
|
+
reference_host_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
163
|
+
__props__=None):
|
|
164
|
+
"""
|
|
165
|
+
Create a ConfigurationProfile resource with the given unique name, props, and options.
|
|
166
|
+
:param str resource_name: The name of the resource.
|
|
167
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
168
|
+
:param pulumi.Input[_builtins.str] cluster_id: The identifier of the cluster.
|
|
169
|
+
:param pulumi.Input[_builtins.str] configuration: The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
170
|
+
:param pulumi.Input[_builtins.str] reference_host_id: The identifier of the host to use as a configuration source.
|
|
171
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
172
|
+
`configuration` is not set.
|
|
173
|
+
"""
|
|
174
|
+
...
|
|
175
|
+
@overload
|
|
176
|
+
def __init__(__self__,
|
|
177
|
+
resource_name: str,
|
|
178
|
+
args: ConfigurationProfileArgs,
|
|
179
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
180
|
+
"""
|
|
181
|
+
Create a ConfigurationProfile resource with the given unique name, props, and options.
|
|
182
|
+
:param str resource_name: The name of the resource.
|
|
183
|
+
:param ConfigurationProfileArgs args: The arguments to use to populate this resource's properties.
|
|
184
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
185
|
+
"""
|
|
186
|
+
...
|
|
187
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
188
|
+
resource_args, opts = _utilities.get_resource_args_opts(ConfigurationProfileArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
189
|
+
if resource_args is not None:
|
|
190
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
191
|
+
else:
|
|
192
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
193
|
+
|
|
194
|
+
def _internal_init(__self__,
|
|
195
|
+
resource_name: str,
|
|
196
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
197
|
+
cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
198
|
+
configuration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
199
|
+
reference_host_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
200
|
+
__props__=None):
|
|
201
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
202
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
203
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
204
|
+
if opts.id is None:
|
|
205
|
+
if __props__ is not None:
|
|
206
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
207
|
+
__props__ = ConfigurationProfileArgs.__new__(ConfigurationProfileArgs)
|
|
208
|
+
|
|
209
|
+
if cluster_id is None and not opts.urn:
|
|
210
|
+
raise TypeError("Missing required property 'cluster_id'")
|
|
211
|
+
__props__.__dict__["cluster_id"] = cluster_id
|
|
212
|
+
__props__.__dict__["configuration"] = configuration
|
|
213
|
+
__props__.__dict__["reference_host_id"] = reference_host_id
|
|
214
|
+
__props__.__dict__["schema"] = None
|
|
215
|
+
super(ConfigurationProfile, __self__).__init__(
|
|
216
|
+
'vsphere:index/configurationProfile:ConfigurationProfile',
|
|
217
|
+
resource_name,
|
|
218
|
+
__props__,
|
|
219
|
+
opts)
|
|
220
|
+
|
|
221
|
+
@staticmethod
|
|
222
|
+
def get(resource_name: str,
|
|
223
|
+
id: pulumi.Input[str],
|
|
224
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
225
|
+
cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
226
|
+
configuration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
227
|
+
reference_host_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
228
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None) -> 'ConfigurationProfile':
|
|
229
|
+
"""
|
|
230
|
+
Get an existing ConfigurationProfile resource's state with the given name, id, and optional extra
|
|
231
|
+
properties used to qualify the lookup.
|
|
232
|
+
|
|
233
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
234
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
235
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
236
|
+
:param pulumi.Input[_builtins.str] cluster_id: The identifier of the cluster.
|
|
237
|
+
:param pulumi.Input[_builtins.str] configuration: The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
238
|
+
:param pulumi.Input[_builtins.str] reference_host_id: The identifier of the host to use as a configuration source.
|
|
239
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
240
|
+
`configuration` is not set.
|
|
241
|
+
:param pulumi.Input[_builtins.str] schema: The JSON schema for the profile.
|
|
242
|
+
"""
|
|
243
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
244
|
+
|
|
245
|
+
__props__ = _ConfigurationProfileState.__new__(_ConfigurationProfileState)
|
|
246
|
+
|
|
247
|
+
__props__.__dict__["cluster_id"] = cluster_id
|
|
248
|
+
__props__.__dict__["configuration"] = configuration
|
|
249
|
+
__props__.__dict__["reference_host_id"] = reference_host_id
|
|
250
|
+
__props__.__dict__["schema"] = schema
|
|
251
|
+
return ConfigurationProfile(resource_name, opts=opts, __props__=__props__)
|
|
252
|
+
|
|
253
|
+
@_builtins.property
|
|
254
|
+
@pulumi.getter(name="clusterId")
|
|
255
|
+
def cluster_id(self) -> pulumi.Output[_builtins.str]:
|
|
256
|
+
"""
|
|
257
|
+
The identifier of the cluster.
|
|
258
|
+
"""
|
|
259
|
+
return pulumi.get(self, "cluster_id")
|
|
260
|
+
|
|
261
|
+
@_builtins.property
|
|
262
|
+
@pulumi.getter
|
|
263
|
+
def configuration(self) -> pulumi.Output[_builtins.str]:
|
|
264
|
+
"""
|
|
265
|
+
The configuration JSON provided as a plain string. This argument can only be specified if `reference_host_id` is not set.
|
|
266
|
+
"""
|
|
267
|
+
return pulumi.get(self, "configuration")
|
|
268
|
+
|
|
269
|
+
@_builtins.property
|
|
270
|
+
@pulumi.getter(name="referenceHostId")
|
|
271
|
+
def reference_host_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
272
|
+
"""
|
|
273
|
+
The identifier of the host to use as a configuration source.
|
|
274
|
+
The host needs to be a member of the cluster identified by `cluster_id`. This argument can only be specified if
|
|
275
|
+
`configuration` is not set.
|
|
276
|
+
"""
|
|
277
|
+
return pulumi.get(self, "reference_host_id")
|
|
278
|
+
|
|
279
|
+
@_builtins.property
|
|
280
|
+
@pulumi.getter
|
|
281
|
+
def schema(self) -> pulumi.Output[_builtins.str]:
|
|
282
|
+
"""
|
|
283
|
+
The JSON schema for the profile.
|
|
284
|
+
"""
|
|
285
|
+
return pulumi.get(self, "schema")
|
|
286
|
+
|
|
@@ -215,7 +215,7 @@ class DistributedVirtualSwitchArgs:
|
|
|
215
215
|
:param pulumi.Input[_builtins.int] vdp_reservation_mbit: The amount of guaranteed bandwidth for the vdp traffic class, in Mbits/sec.
|
|
216
216
|
:param pulumi.Input[_builtins.int] vdp_share_count: The amount of shares to allocate to the vdp traffic class for a custom share level.
|
|
217
217
|
:param pulumi.Input[_builtins.str] vdp_share_level: The allocation level for the vdp traffic class. Can be one of high, low, normal, or custom.
|
|
218
|
-
:param pulumi.Input[_builtins.str] version: The version of the VDS.
|
|
218
|
+
:param pulumi.Input[_builtins.str] version: The version of the VDS. By default, a VDS is created
|
|
219
219
|
at the latest version supported by the vSphere version if not specified.
|
|
220
220
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
221
221
|
:param pulumi.Input[_builtins.int] virtualmachine_maximum_mbit: The maximum allowed usage for the virtualMachine traffic class, in Mbits/sec.
|
|
@@ -1392,7 +1392,7 @@ class DistributedVirtualSwitchArgs:
|
|
|
1392
1392
|
@pulumi.getter
|
|
1393
1393
|
def version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1394
1394
|
"""
|
|
1395
|
-
The version of the VDS.
|
|
1395
|
+
The version of the VDS. By default, a VDS is created
|
|
1396
1396
|
at the latest version supported by the vSphere version if not specified.
|
|
1397
1397
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
1398
1398
|
"""
|
|
@@ -1771,7 +1771,7 @@ class _DistributedVirtualSwitchState:
|
|
|
1771
1771
|
:param pulumi.Input[_builtins.int] vdp_reservation_mbit: The amount of guaranteed bandwidth for the vdp traffic class, in Mbits/sec.
|
|
1772
1772
|
:param pulumi.Input[_builtins.int] vdp_share_count: The amount of shares to allocate to the vdp traffic class for a custom share level.
|
|
1773
1773
|
:param pulumi.Input[_builtins.str] vdp_share_level: The allocation level for the vdp traffic class. Can be one of high, low, normal, or custom.
|
|
1774
|
-
:param pulumi.Input[_builtins.str] version: The version of the VDS.
|
|
1774
|
+
:param pulumi.Input[_builtins.str] version: The version of the VDS. By default, a VDS is created
|
|
1775
1775
|
at the latest version supported by the vSphere version if not specified.
|
|
1776
1776
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
1777
1777
|
:param pulumi.Input[_builtins.int] virtualmachine_maximum_mbit: The maximum allowed usage for the virtualMachine traffic class, in Mbits/sec.
|
|
@@ -2964,7 +2964,7 @@ class _DistributedVirtualSwitchState:
|
|
|
2964
2964
|
@pulumi.getter
|
|
2965
2965
|
def version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2966
2966
|
"""
|
|
2967
|
-
The version of the VDS.
|
|
2967
|
+
The version of the VDS. By default, a VDS is created
|
|
2968
2968
|
at the latest version supported by the vSphere version if not specified.
|
|
2969
2969
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
2970
2970
|
"""
|
|
@@ -3475,7 +3475,7 @@ class DistributedVirtualSwitch(pulumi.CustomResource):
|
|
|
3475
3475
|
:param pulumi.Input[_builtins.int] vdp_reservation_mbit: The amount of guaranteed bandwidth for the vdp traffic class, in Mbits/sec.
|
|
3476
3476
|
:param pulumi.Input[_builtins.int] vdp_share_count: The amount of shares to allocate to the vdp traffic class for a custom share level.
|
|
3477
3477
|
:param pulumi.Input[_builtins.str] vdp_share_level: The allocation level for the vdp traffic class. Can be one of high, low, normal, or custom.
|
|
3478
|
-
:param pulumi.Input[_builtins.str] version: The version of the VDS.
|
|
3478
|
+
:param pulumi.Input[_builtins.str] version: The version of the VDS. By default, a VDS is created
|
|
3479
3479
|
at the latest version supported by the vSphere version if not specified.
|
|
3480
3480
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
3481
3481
|
:param pulumi.Input[_builtins.int] virtualmachine_maximum_mbit: The maximum allowed usage for the virtualMachine traffic class, in Mbits/sec.
|
|
@@ -4057,7 +4057,7 @@ class DistributedVirtualSwitch(pulumi.CustomResource):
|
|
|
4057
4057
|
:param pulumi.Input[_builtins.int] vdp_reservation_mbit: The amount of guaranteed bandwidth for the vdp traffic class, in Mbits/sec.
|
|
4058
4058
|
:param pulumi.Input[_builtins.int] vdp_share_count: The amount of shares to allocate to the vdp traffic class for a custom share level.
|
|
4059
4059
|
:param pulumi.Input[_builtins.str] vdp_share_level: The allocation level for the vdp traffic class. Can be one of high, low, normal, or custom.
|
|
4060
|
-
:param pulumi.Input[_builtins.str] version: The version of the VDS.
|
|
4060
|
+
:param pulumi.Input[_builtins.str] version: The version of the VDS. By default, a VDS is created
|
|
4061
4061
|
at the latest version supported by the vSphere version if not specified.
|
|
4062
4062
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
4063
4063
|
:param pulumi.Input[_builtins.int] virtualmachine_maximum_mbit: The maximum allowed usage for the virtualMachine traffic class, in Mbits/sec.
|
|
@@ -4840,7 +4840,7 @@ class DistributedVirtualSwitch(pulumi.CustomResource):
|
|
|
4840
4840
|
@pulumi.getter
|
|
4841
4841
|
def version(self) -> pulumi.Output[_builtins.str]:
|
|
4842
4842
|
"""
|
|
4843
|
-
The version of the VDS.
|
|
4843
|
+
The version of the VDS. By default, a VDS is created
|
|
4844
4844
|
at the latest version supported by the vSphere version if not specified.
|
|
4845
4845
|
A VDS can be upgraded to a newer version, but can not be downgraded.
|
|
4846
4846
|
"""
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'GetConfigurationProfileResult',
|
|
19
|
+
'AwaitableGetConfigurationProfileResult',
|
|
20
|
+
'get_configuration_profile',
|
|
21
|
+
'get_configuration_profile_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetConfigurationProfileResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getConfigurationProfile.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, cluster_id=None, configuration=None, id=None, schema=None):
|
|
30
|
+
if cluster_id and not isinstance(cluster_id, str):
|
|
31
|
+
raise TypeError("Expected argument 'cluster_id' to be a str")
|
|
32
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
|
33
|
+
if configuration and not isinstance(configuration, str):
|
|
34
|
+
raise TypeError("Expected argument 'configuration' to be a str")
|
|
35
|
+
pulumi.set(__self__, "configuration", configuration)
|
|
36
|
+
if id and not isinstance(id, str):
|
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "id", id)
|
|
39
|
+
if schema and not isinstance(schema, str):
|
|
40
|
+
raise TypeError("Expected argument 'schema' to be a str")
|
|
41
|
+
pulumi.set(__self__, "schema", schema)
|
|
42
|
+
|
|
43
|
+
@_builtins.property
|
|
44
|
+
@pulumi.getter(name="clusterId")
|
|
45
|
+
def cluster_id(self) -> _builtins.str:
|
|
46
|
+
return pulumi.get(self, "cluster_id")
|
|
47
|
+
|
|
48
|
+
@_builtins.property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def configuration(self) -> _builtins.str:
|
|
51
|
+
"""
|
|
52
|
+
The current configuration which is active on the cluster.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "configuration")
|
|
55
|
+
|
|
56
|
+
@_builtins.property
|
|
57
|
+
@pulumi.getter
|
|
58
|
+
def id(self) -> _builtins.str:
|
|
59
|
+
"""
|
|
60
|
+
The provider-assigned unique ID for this managed resource.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "id")
|
|
63
|
+
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def schema(self) -> _builtins.str:
|
|
67
|
+
"""
|
|
68
|
+
The JSON schema for the profile.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "schema")
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class AwaitableGetConfigurationProfileResult(GetConfigurationProfileResult):
|
|
74
|
+
# pylint: disable=using-constant-test
|
|
75
|
+
def __await__(self):
|
|
76
|
+
if False:
|
|
77
|
+
yield self
|
|
78
|
+
return GetConfigurationProfileResult(
|
|
79
|
+
cluster_id=self.cluster_id,
|
|
80
|
+
configuration=self.configuration,
|
|
81
|
+
id=self.id,
|
|
82
|
+
schema=self.schema)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
def get_configuration_profile(cluster_id: Optional[_builtins.str] = None,
|
|
86
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationProfileResult:
|
|
87
|
+
"""
|
|
88
|
+
The `ConfigurationProfile` data source can be used to export the configuration and schema
|
|
89
|
+
of a cluster that is already managed via configuration profiles.
|
|
90
|
+
|
|
91
|
+
## Example Usage
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
import pulumi
|
|
95
|
+
import pulumi_vsphere as vsphere
|
|
96
|
+
|
|
97
|
+
datacenter = vsphere.get_datacenter(name="dc-01")
|
|
98
|
+
compute_cluster = vsphere.get_compute_cluster(name="cluster-01",
|
|
99
|
+
datacenter_id=datacenter.id)
|
|
100
|
+
profile = vsphere.get_configuration_profile(cluster_id=compute_cluster.id)
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
:param _builtins.str cluster_id: The identifier of the compute cluster.
|
|
105
|
+
"""
|
|
106
|
+
__args__ = dict()
|
|
107
|
+
__args__['clusterId'] = cluster_id
|
|
108
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
109
|
+
__ret__ = pulumi.runtime.invoke('vsphere:index/getConfigurationProfile:getConfigurationProfile', __args__, opts=opts, typ=GetConfigurationProfileResult).value
|
|
110
|
+
|
|
111
|
+
return AwaitableGetConfigurationProfileResult(
|
|
112
|
+
cluster_id=pulumi.get(__ret__, 'cluster_id'),
|
|
113
|
+
configuration=pulumi.get(__ret__, 'configuration'),
|
|
114
|
+
id=pulumi.get(__ret__, 'id'),
|
|
115
|
+
schema=pulumi.get(__ret__, 'schema'))
|
|
116
|
+
def get_configuration_profile_output(cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
117
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConfigurationProfileResult]:
|
|
118
|
+
"""
|
|
119
|
+
The `ConfigurationProfile` data source can be used to export the configuration and schema
|
|
120
|
+
of a cluster that is already managed via configuration profiles.
|
|
121
|
+
|
|
122
|
+
## Example Usage
|
|
123
|
+
|
|
124
|
+
```python
|
|
125
|
+
import pulumi
|
|
126
|
+
import pulumi_vsphere as vsphere
|
|
127
|
+
|
|
128
|
+
datacenter = vsphere.get_datacenter(name="dc-01")
|
|
129
|
+
compute_cluster = vsphere.get_compute_cluster(name="cluster-01",
|
|
130
|
+
datacenter_id=datacenter.id)
|
|
131
|
+
profile = vsphere.get_configuration_profile(cluster_id=compute_cluster.id)
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
:param _builtins.str cluster_id: The identifier of the compute cluster.
|
|
136
|
+
"""
|
|
137
|
+
__args__ = dict()
|
|
138
|
+
__args__['clusterId'] = cluster_id
|
|
139
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
140
|
+
__ret__ = pulumi.runtime.invoke_output('vsphere:index/getConfigurationProfile:getConfigurationProfile', __args__, opts=opts, typ=GetConfigurationProfileResult)
|
|
141
|
+
return __ret__.apply(lambda __response__: GetConfigurationProfileResult(
|
|
142
|
+
cluster_id=pulumi.get(__response__, 'cluster_id'),
|
|
143
|
+
configuration=pulumi.get(__response__, 'configuration'),
|
|
144
|
+
id=pulumi.get(__response__, 'id'),
|
|
145
|
+
schema=pulumi.get(__response__, 'schema')))
|
|
@@ -400,7 +400,7 @@ def get_ovf_vm_template(allow_unverified_ssl_cert: Optional[_builtins.bool] = No
|
|
|
400
400
|
empty, the default option is chosen.
|
|
401
401
|
:param _builtins.str disk_provisioning: The disk provisioning type. If set, all the
|
|
402
402
|
disks included in the OVF/OVA will have the same specified policy. Can be
|
|
403
|
-
one of `thin`, `thick`,
|
|
403
|
+
one of `thin`, `thick`, or `eagerZeroedThick`.
|
|
404
404
|
:param _builtins.bool enable_hidden_properties: Allow properties with
|
|
405
405
|
`ovf:userConfigurable=false` to be set.
|
|
406
406
|
:param _builtins.str folder: The name of the folder in which to place the virtual
|
|
@@ -503,7 +503,7 @@ def get_ovf_vm_template_output(allow_unverified_ssl_cert: Optional[pulumi.Input[
|
|
|
503
503
|
empty, the default option is chosen.
|
|
504
504
|
:param _builtins.str disk_provisioning: The disk provisioning type. If set, all the
|
|
505
505
|
disks included in the OVF/OVA will have the same specified policy. Can be
|
|
506
|
-
one of `thin`, `thick`,
|
|
506
|
+
one of `thin`, `thick`, or `eagerZeroedThick`.
|
|
507
507
|
:param _builtins.bool enable_hidden_properties: Allow properties with
|
|
508
508
|
`ovf:userConfigurable=false` to be set.
|
|
509
509
|
:param _builtins.str folder: The name of the folder in which to place the virtual
|
pulumi_vsphere/virtual_disk.py
CHANGED
|
@@ -388,14 +388,14 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
388
388
|
import pulumi_vsphere as vsphere
|
|
389
389
|
|
|
390
390
|
datacenter = vsphere.get_datacenter(name="dc-01")
|
|
391
|
-
datastore = vsphere.
|
|
391
|
+
datastore = vsphere.get_datastore(name="datastore-01")
|
|
392
392
|
virtual_disk = vsphere.VirtualDisk("virtual_disk",
|
|
393
393
|
size=40,
|
|
394
394
|
type="thin",
|
|
395
395
|
vmdk_path="/foo/foo.vmdk",
|
|
396
396
|
create_directories=True,
|
|
397
397
|
datacenter=datacenter.name,
|
|
398
|
-
datastore=
|
|
398
|
+
datastore=datastore.name)
|
|
399
399
|
```
|
|
400
400
|
|
|
401
401
|
## Import
|
|
@@ -470,14 +470,14 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
470
470
|
import pulumi_vsphere as vsphere
|
|
471
471
|
|
|
472
472
|
datacenter = vsphere.get_datacenter(name="dc-01")
|
|
473
|
-
datastore = vsphere.
|
|
473
|
+
datastore = vsphere.get_datastore(name="datastore-01")
|
|
474
474
|
virtual_disk = vsphere.VirtualDisk("virtual_disk",
|
|
475
475
|
size=40,
|
|
476
476
|
type="thin",
|
|
477
477
|
vmdk_path="/foo/foo.vmdk",
|
|
478
478
|
create_directories=True,
|
|
479
479
|
datacenter=datacenter.name,
|
|
480
|
-
datastore=
|
|
480
|
+
datastore=datastore.name)
|
|
481
481
|
```
|
|
482
482
|
|
|
483
483
|
## Import
|
|
@@ -133,7 +133,7 @@ class VirtualMachineArgs:
|
|
|
133
133
|
:param pulumi.Input[_builtins.str] folder: The name of the folder to locate the virtual machine in.
|
|
134
134
|
:param pulumi.Input[_builtins.bool] force_power_off: Set to true to force power-off a virtual machine if a graceful guest shutdown failed for a necessary operation.
|
|
135
135
|
:param pulumi.Input[_builtins.str] guest_id: The guest ID for the operating system.
|
|
136
|
-
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine.
|
|
136
|
+
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
137
137
|
:param pulumi.Input[_builtins.str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
138
138
|
:param pulumi.Input[_builtins.str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
139
139
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
@@ -710,7 +710,7 @@ class VirtualMachineArgs:
|
|
|
710
710
|
@pulumi.getter(name="hardwareVersion")
|
|
711
711
|
def hardware_version(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
712
712
|
"""
|
|
713
|
-
The hardware version for the virtual machine.
|
|
713
|
+
The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
714
714
|
"""
|
|
715
715
|
return pulumi.get(self, "hardware_version")
|
|
716
716
|
|
|
@@ -1399,7 +1399,7 @@ class _VirtualMachineState:
|
|
|
1399
1399
|
:param pulumi.Input[_builtins.bool] force_power_off: Set to true to force power-off a virtual machine if a graceful guest shutdown failed for a necessary operation.
|
|
1400
1400
|
:param pulumi.Input[_builtins.str] guest_id: The guest ID for the operating system.
|
|
1401
1401
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] guest_ip_addresses: The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this list will be empty.
|
|
1402
|
-
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine.
|
|
1402
|
+
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
1403
1403
|
:param pulumi.Input[_builtins.str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
1404
1404
|
:param pulumi.Input[_builtins.str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
1405
1405
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
@@ -2031,7 +2031,7 @@ class _VirtualMachineState:
|
|
|
2031
2031
|
@pulumi.getter(name="hardwareVersion")
|
|
2032
2032
|
def hardware_version(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2033
2033
|
"""
|
|
2034
|
-
The hardware version for the virtual machine.
|
|
2034
|
+
The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
2035
2035
|
"""
|
|
2036
2036
|
return pulumi.get(self, "hardware_version")
|
|
2037
2037
|
|
|
@@ -2840,7 +2840,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2840
2840
|
:param pulumi.Input[_builtins.str] folder: The name of the folder to locate the virtual machine in.
|
|
2841
2841
|
:param pulumi.Input[_builtins.bool] force_power_off: Set to true to force power-off a virtual machine if a graceful guest shutdown failed for a necessary operation.
|
|
2842
2842
|
:param pulumi.Input[_builtins.str] guest_id: The guest ID for the operating system.
|
|
2843
|
-
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine.
|
|
2843
|
+
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
2844
2844
|
:param pulumi.Input[_builtins.str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
2845
2845
|
:param pulumi.Input[_builtins.str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
2846
2846
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
@@ -3259,7 +3259,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3259
3259
|
:param pulumi.Input[_builtins.bool] force_power_off: Set to true to force power-off a virtual machine if a graceful guest shutdown failed for a necessary operation.
|
|
3260
3260
|
:param pulumi.Input[_builtins.str] guest_id: The guest ID for the operating system.
|
|
3261
3261
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] guest_ip_addresses: The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this list will be empty.
|
|
3262
|
-
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine.
|
|
3262
|
+
:param pulumi.Input[_builtins.int] hardware_version: The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
3263
3263
|
:param pulumi.Input[_builtins.str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
3264
3264
|
:param pulumi.Input[_builtins.str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
3265
3265
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
@@ -3680,7 +3680,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3680
3680
|
@pulumi.getter(name="hardwareVersion")
|
|
3681
3681
|
def hardware_version(self) -> pulumi.Output[_builtins.int]:
|
|
3682
3682
|
"""
|
|
3683
|
-
The hardware version for the virtual machine.
|
|
3683
|
+
The hardware version for the virtual machine. Allows versions within ranges: 4, 7-11, 13-15, 17-22.
|
|
3684
3684
|
"""
|
|
3685
3685
|
return pulumi.get(self, "hardware_version")
|
|
3686
3686
|
|
{pulumi_vsphere-4.16.0a1755712679.dist-info → pulumi_vsphere-4.16.0a1755919665.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_vsphere/__init__.py,sha256=
|
|
1
|
+
pulumi_vsphere/__init__.py,sha256=MA-Bp4GKDTf_B14h58DE59EP0Aswr4vJw1F4A9FRsXo,11401
|
|
2
2
|
pulumi_vsphere/_inputs.py,sha256=uZ1oL7Ktgihs__rZN1NzeImR19yF14slggMrjiPOn7M,198058
|
|
3
3
|
pulumi_vsphere/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_vsphere/compute_cluster.py,sha256=zxKgcfrpKyJzbaShaeZT7sRzbQCgZYqL9n_rbnnigKE,244279
|
|
@@ -8,6 +8,7 @@ pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=ayOsi9_C6UFQRhm53
|
|
|
8
8
|
pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=Qc3oc0CxZBfXfJcErIIuIj2QlX8yu2Ii4acfoVhJg6E,30944
|
|
9
9
|
pulumi_vsphere/compute_cluster_vm_group.py,sha256=7JB2aSYyEUPJNFMGBNsmy99Zez58d11OkDZkgg3IZX4,23750
|
|
10
10
|
pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=YLgckwOSU60FJXATEqeqx19J1tVrIP3U0ftXAtBTGBA,33633
|
|
11
|
+
pulumi_vsphere/configuration_profile.py,sha256=pX1VfETA6SZxc0vTEY_yjMYwnI9Wa2RJB_xGl4O_8EU,13583
|
|
11
12
|
pulumi_vsphere/content_library.py,sha256=DYFbYyjrNjvFg46_cZqVclVAEAxUo0Dast1X4AvQQ80,20527
|
|
12
13
|
pulumi_vsphere/content_library_item.py,sha256=1NlkZAQqNcJmya79IFTE4HLpar6WL_nriDTNw6GAqpI,22341
|
|
13
14
|
pulumi_vsphere/custom_attribute.py,sha256=lT2z-e1-OZB7awBI9ehpso3GZhK-AG4c2FWJ226p5a8,12478
|
|
@@ -15,7 +16,7 @@ pulumi_vsphere/datacenter.py,sha256=u4iH_KFZ6JGMvbs3MwhqsBi6PkMM2-p170L8sFJDuuk,
|
|
|
15
16
|
pulumi_vsphere/datastore_cluster.py,sha256=zNIdlvwD32agudADyL-hg3oiDnTanyN7fYdVb6rWVX8,92477
|
|
16
17
|
pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=tVZeS-mc8iJ5dnf6ddQP_EYXxjh6X1s6OMUAUJk07lc,24575
|
|
17
18
|
pulumi_vsphere/distributed_port_group.py,sha256=XDEDwnr4CEOCLXyiKnYao8ISs6JKm2oNcLeGtJMLqVM,150143
|
|
18
|
-
pulumi_vsphere/distributed_virtual_switch.py,sha256=
|
|
19
|
+
pulumi_vsphere/distributed_virtual_switch.py,sha256=DPEdc_mUV-bolCn2hexqvciQy7HkwunMiv46g6f_fCE,274254
|
|
19
20
|
pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=Zov-m4CSBCErQRuSO45bHvIGucSzChOm1OVhhThWJWc,15445
|
|
20
21
|
pulumi_vsphere/dpm_host_override.py,sha256=rWvxew-E9_TYNin9Jrin17KT32mZZht7hKr8VjB479k,22168
|
|
21
22
|
pulumi_vsphere/drs_vm_override.py,sha256=oyOr--TMqo6QAbA1xuxQvBH9rZH7iWwtMdvSdEW1HMM,23646
|
|
@@ -24,6 +25,7 @@ pulumi_vsphere/file.py,sha256=hwalcwPhvlrEJVF0zVeEDRxf9FZb6YU4Nm4ZOnXU3U8,23591
|
|
|
24
25
|
pulumi_vsphere/folder.py,sha256=olNrsWiL6y8Zn0XgYXg2yIicn70dSJtFmy256hKGlTI,30617
|
|
25
26
|
pulumi_vsphere/get_compute_cluster.py,sha256=LHZq9jDgg2FOkA2wBjeeODN1OC1zhQhtrtJI5qp0htk,6933
|
|
26
27
|
pulumi_vsphere/get_compute_cluster_host_group.py,sha256=ajVegB_V3uGKdRm1mom0JT-exZrj0AvmXhoLXPLMfHA,6864
|
|
28
|
+
pulumi_vsphere/get_configuration_profile.py,sha256=eFEkOOBlsW0uHR7p-_w9uvizbJRVxuy-WdAyarcrfrA,5588
|
|
27
29
|
pulumi_vsphere/get_content_library.py,sha256=ln4t9DMz-V87ZJGHxqMoBQlTfli6J2lRE0jnPZ2wXIo,3911
|
|
28
30
|
pulumi_vsphere/get_content_library_item.py,sha256=xg_mOQCUY0uvTdhfEX04DzNQoHt4il-oqiROCAXhTAk,5505
|
|
29
31
|
pulumi_vsphere/get_custom_attribute.py,sha256=VP1qLQdsrEqSFMIh3Qww9iaJ5mOevq2YAzYrtmhr3B0,5129
|
|
@@ -42,7 +44,7 @@ pulumi_vsphere/get_host_thumbprint.py,sha256=HriFlovrl0aizEQfU6xFoHuOIYNJIEnb1Tf
|
|
|
42
44
|
pulumi_vsphere/get_host_vgpu_profile.py,sha256=PFgmWNk7hOBRVO_sE4iG3G32UEdLJJ8R3SyEteIT6OU,7291
|
|
43
45
|
pulumi_vsphere/get_license.py,sha256=dosfs1LYDrIoTPHPFtCdBf0p-HExy_KpjMmakXwno8E,6312
|
|
44
46
|
pulumi_vsphere/get_network.py,sha256=2CWrK0mzuQPKA0spilVzQ1znRmKlL6tEYAKCr7JbkvA,13024
|
|
45
|
-
pulumi_vsphere/get_ovf_vm_template.py,sha256=
|
|
47
|
+
pulumi_vsphere/get_ovf_vm_template.py,sha256=cWam1_GL9AOWQ7vJOrq6VOa5rU_sYqJqMFVF9pSdzN4,30367
|
|
46
48
|
pulumi_vsphere/get_policy.py,sha256=WHG6VLFNjnHtvldrif7mnBPhX8IXkNzFGv_HWlpzV18,4077
|
|
47
49
|
pulumi_vsphere/get_resource_pool.py,sha256=h_IFTni-pHGo_Hq7KeaRkAxn7CHC9txe19sxa1CR3_A,10547
|
|
48
50
|
pulumi_vsphere/get_role.py,sha256=hxE939tS7JKzM5hVkYIs6EHDX4diwvODEbLFnKBucgY,6317
|
|
@@ -61,7 +63,7 @@ pulumi_vsphere/nas_datastore.py,sha256=XtcRQ9ntYe_JIyspwi3uSF5spZmB9vLtzvpdsaLgw
|
|
|
61
63
|
pulumi_vsphere/offline_software_depot.py,sha256=4xxOrCrubrGej9q8sdPTUcW8wMRc_sIE3dcqcm4Tjug,7850
|
|
62
64
|
pulumi_vsphere/outputs.py,sha256=SU_VgZBgnItVnueVGSXNBmzbkWj5jQMLAgLoX5XzlTI,169218
|
|
63
65
|
pulumi_vsphere/provider.py,sha256=uYzp9Vta1Aa8R0IDuNQ1aHYuKzy30-n2B6lUzPAKI3U,22488
|
|
64
|
-
pulumi_vsphere/pulumi-plugin.json,sha256=
|
|
66
|
+
pulumi_vsphere/pulumi-plugin.json,sha256=_9u49YRtHlqK4Y22dp_e7QDhCIe_AsKXQkh-Z4BQPKY,84
|
|
65
67
|
pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
68
|
pulumi_vsphere/resource_pool.py,sha256=0iW1GbAiGb5E6hxUHn6Rz9bEklEo186LzLrJIKk613Q,59396
|
|
67
69
|
pulumi_vsphere/role.py,sha256=07ONK7EAsNAbeCmslTA6zG-U6RLjh0AMjaukAgBlaRU,9869
|
|
@@ -71,8 +73,8 @@ pulumi_vsphere/tag.py,sha256=83QcHUmG4bpO6MZuyLGFIdLjN4EOKtFrwYz-YK3oy5s,15824
|
|
|
71
73
|
pulumi_vsphere/tag_category.py,sha256=qOdAJxj57PgO0lBRb6CTK1EBa6oedrsbOl7I5qlIUXA,18643
|
|
72
74
|
pulumi_vsphere/vapp_container.py,sha256=zsyGwM1Tw7ef7V8ZKnLJf6kn5vIYVD2P-vRcZnIHdUo,57180
|
|
73
75
|
pulumi_vsphere/vapp_entity.py,sha256=WtLRuwtnpxryX7Hg2JnM4_rzr05jVoYNEdiSeqT00dw,36772
|
|
74
|
-
pulumi_vsphere/virtual_disk.py,sha256=
|
|
75
|
-
pulumi_vsphere/virtual_machine.py,sha256=
|
|
76
|
+
pulumi_vsphere/virtual_disk.py,sha256=eWuc1ESCuP2Q8780Ez8a0zp1iR5Huo_9HWwyQ9-hE9c,36033
|
|
77
|
+
pulumi_vsphere/virtual_machine.py,sha256=aWJ7PSHE0SPAA9xeF1BrsjbS2E1t13aFrSs3xqyJU2U,238385
|
|
76
78
|
pulumi_vsphere/virtual_machine_class.py,sha256=saUsQh_3bVRAvoY7Y-FUYi_tkqcvqolGS9l2ZyK__L0,18432
|
|
77
79
|
pulumi_vsphere/virtual_machine_snapshot.py,sha256=12brP8F244x-JqmBKr5h1EFn4DJt4btiRZu2dIW3bWg,26239
|
|
78
80
|
pulumi_vsphere/vm_storage_policy.py,sha256=hIVxYzYThUMp9xPWLLnUASHhIjrPBCclR34fLLXNlOA,20620
|
|
@@ -81,7 +83,7 @@ pulumi_vsphere/vnic.py,sha256=qWW6kJptAoOpt8Ucch7bxrS5J2qYCpxbEShYU3Ovpys,32356
|
|
|
81
83
|
pulumi_vsphere/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
82
84
|
pulumi_vsphere/config/__init__.pyi,sha256=xIQJB8zGk5myF9nf2LJUefPcxQjWODo2zQFJMlXkb6Y,1524
|
|
83
85
|
pulumi_vsphere/config/vars.py,sha256=6lv8iDJ0T9-298m4Kg2oIQIeA-E-PrRu8jAgaZ6b0LU,3513
|
|
84
|
-
pulumi_vsphere-4.16.
|
|
85
|
-
pulumi_vsphere-4.16.
|
|
86
|
-
pulumi_vsphere-4.16.
|
|
87
|
-
pulumi_vsphere-4.16.
|
|
86
|
+
pulumi_vsphere-4.16.0a1755919665.dist-info/METADATA,sha256=Y2j0KOSLxIPygCNCCKXIpswzUg76PQOt17q9fmYG_A8,5024
|
|
87
|
+
pulumi_vsphere-4.16.0a1755919665.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
88
|
+
pulumi_vsphere-4.16.0a1755919665.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
89
|
+
pulumi_vsphere-4.16.0a1755919665.dist-info/RECORD,,
|
{pulumi_vsphere-4.16.0a1755712679.dist-info → pulumi_vsphere-4.16.0a1755919665.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|