pulumi-vsphere 4.16.0a1753339697__py3-none-any.whl → 4.16.0a1753512455__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.

Files changed (86) hide show
  1. pulumi_vsphere/__init__.py +1 -1
  2. pulumi_vsphere/_inputs.py +1171 -1172
  3. pulumi_vsphere/compute_cluster.py +1127 -1128
  4. pulumi_vsphere/compute_cluster_host_group.py +52 -53
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +86 -87
  6. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +86 -87
  7. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +103 -104
  8. pulumi_vsphere/compute_cluster_vm_group.py +52 -53
  9. pulumi_vsphere/compute_cluster_vm_host_rule.py +120 -121
  10. pulumi_vsphere/config/__init__.py +1 -1
  11. pulumi_vsphere/config/__init__.pyi +1 -2
  12. pulumi_vsphere/config/vars.py +14 -15
  13. pulumi_vsphere/content_library.py +58 -59
  14. pulumi_vsphere/content_library_item.py +103 -104
  15. pulumi_vsphere/custom_attribute.py +35 -36
  16. pulumi_vsphere/datacenter.py +78 -79
  17. pulumi_vsphere/datastore_cluster.py +426 -427
  18. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +86 -87
  19. pulumi_vsphere/distributed_port_group.py +787 -788
  20. pulumi_vsphere/distributed_virtual_switch.py +1566 -1567
  21. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +69 -70
  22. pulumi_vsphere/dpm_host_override.py +69 -70
  23. pulumi_vsphere/drs_vm_override.py +69 -70
  24. pulumi_vsphere/entity_permissions.py +38 -39
  25. pulumi_vsphere/file.py +120 -121
  26. pulumi_vsphere/folder.py +86 -87
  27. pulumi_vsphere/get_compute_cluster.py +17 -18
  28. pulumi_vsphere/get_compute_cluster_host_group.py +17 -18
  29. pulumi_vsphere/get_content_library.py +9 -10
  30. pulumi_vsphere/get_content_library_item.py +21 -22
  31. pulumi_vsphere/get_custom_attribute.py +11 -12
  32. pulumi_vsphere/get_datacenter.py +11 -12
  33. pulumi_vsphere/get_datastore.py +21 -22
  34. pulumi_vsphere/get_datastore_cluster.py +17 -18
  35. pulumi_vsphere/get_datastore_stats.py +21 -22
  36. pulumi_vsphere/get_distributed_virtual_switch.py +17 -18
  37. pulumi_vsphere/get_dynamic.py +21 -22
  38. pulumi_vsphere/get_folder.py +9 -10
  39. pulumi_vsphere/get_guest_os_customization.py +18 -19
  40. pulumi_vsphere/get_host.py +17 -18
  41. pulumi_vsphere/get_host_base_images.py +5 -6
  42. pulumi_vsphere/get_host_pci_device.py +29 -30
  43. pulumi_vsphere/get_host_thumbprint.py +21 -22
  44. pulumi_vsphere/get_host_vgpu_profile.py +16 -17
  45. pulumi_vsphere/get_license.py +19 -20
  46. pulumi_vsphere/get_network.py +42 -43
  47. pulumi_vsphere/get_ovf_vm_template.py +121 -122
  48. pulumi_vsphere/get_policy.py +9 -10
  49. pulumi_vsphere/get_resource_pool.py +21 -22
  50. pulumi_vsphere/get_role.py +25 -26
  51. pulumi_vsphere/get_tag.py +17 -18
  52. pulumi_vsphere/get_tag_category.py +15 -16
  53. pulumi_vsphere/get_vapp_container.py +15 -16
  54. pulumi_vsphere/get_virtual_machine.py +272 -273
  55. pulumi_vsphere/get_vmfs_disks.py +23 -24
  56. pulumi_vsphere/guest_os_customization.py +73 -74
  57. pulumi_vsphere/ha_vm_override.py +256 -257
  58. pulumi_vsphere/host.py +242 -243
  59. pulumi_vsphere/host_port_group.py +310 -311
  60. pulumi_vsphere/host_virtual_switch.py +358 -359
  61. pulumi_vsphere/license.py +71 -72
  62. pulumi_vsphere/nas_datastore.py +260 -261
  63. pulumi_vsphere/offline_software_depot.py +20 -21
  64. pulumi_vsphere/outputs.py +981 -982
  65. pulumi_vsphere/provider.py +120 -121
  66. pulumi_vsphere/pulumi-plugin.json +1 -1
  67. pulumi_vsphere/resource_pool.py +256 -257
  68. pulumi_vsphere/role.py +44 -45
  69. pulumi_vsphere/storage_drs_vm_override.py +86 -87
  70. pulumi_vsphere/supervisor.py +206 -207
  71. pulumi_vsphere/tag.py +52 -53
  72. pulumi_vsphere/tag_category.py +69 -70
  73. pulumi_vsphere/vapp_container.py +256 -257
  74. pulumi_vsphere/vapp_entity.py +171 -172
  75. pulumi_vsphere/virtual_disk.py +120 -121
  76. pulumi_vsphere/virtual_machine.py +1293 -1294
  77. pulumi_vsphere/virtual_machine_class.py +103 -104
  78. pulumi_vsphere/virtual_machine_snapshot.py +120 -121
  79. pulumi_vsphere/vm_storage_policy.py +38 -39
  80. pulumi_vsphere/vmfs_datastore.py +183 -184
  81. pulumi_vsphere/vnic.py +143 -144
  82. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753512455.dist-info}/METADATA +1 -1
  83. pulumi_vsphere-4.16.0a1753512455.dist-info/RECORD +87 -0
  84. pulumi_vsphere-4.16.0a1753339697.dist-info/RECORD +0 -87
  85. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753512455.dist-info}/WHEEL +0 -0
  86. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753512455.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,23 +21,23 @@ __all__ = ['OfflineSoftwareDepotArgs', 'OfflineSoftwareDepot']
22
21
  @pulumi.input_type
23
22
  class OfflineSoftwareDepotArgs:
24
23
  def __init__(__self__, *,
25
- location: pulumi.Input[builtins.str]):
24
+ location: pulumi.Input[_builtins.str]):
26
25
  """
27
26
  The set of arguments for constructing a OfflineSoftwareDepot resource.
28
- :param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
27
+ :param pulumi.Input[_builtins.str] location: The URL where the depot source is hosted.
29
28
  """
30
29
  pulumi.set(__self__, "location", location)
31
30
 
32
- @property
31
+ @_builtins.property
33
32
  @pulumi.getter
34
- def location(self) -> pulumi.Input[builtins.str]:
33
+ def location(self) -> pulumi.Input[_builtins.str]:
35
34
  """
36
35
  The URL where the depot source is hosted.
37
36
  """
38
37
  return pulumi.get(self, "location")
39
38
 
40
39
  @location.setter
41
- def location(self, value: pulumi.Input[builtins.str]):
40
+ def location(self, value: pulumi.Input[_builtins.str]):
42
41
  pulumi.set(self, "location", value)
43
42
 
44
43
 
@@ -46,18 +45,18 @@ class OfflineSoftwareDepotArgs:
46
45
  class _OfflineSoftwareDepotState:
47
46
  def __init__(__self__, *,
48
47
  components: Optional[pulumi.Input[Sequence[pulumi.Input['OfflineSoftwareDepotComponentArgs']]]] = None,
49
- location: Optional[pulumi.Input[builtins.str]] = None):
48
+ location: Optional[pulumi.Input[_builtins.str]] = None):
50
49
  """
51
50
  Input properties used for looking up and filtering OfflineSoftwareDepot resources.
52
51
  :param pulumi.Input[Sequence[pulumi.Input['OfflineSoftwareDepotComponentArgs']]] components: The list of custom components in the depot.
53
- :param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
52
+ :param pulumi.Input[_builtins.str] location: The URL where the depot source is hosted.
54
53
  """
55
54
  if components is not None:
56
55
  pulumi.set(__self__, "components", components)
57
56
  if location is not None:
58
57
  pulumi.set(__self__, "location", location)
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter
62
61
  def components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OfflineSoftwareDepotComponentArgs']]]]:
63
62
  """
@@ -69,16 +68,16 @@ class _OfflineSoftwareDepotState:
69
68
  def components(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OfflineSoftwareDepotComponentArgs']]]]):
70
69
  pulumi.set(self, "components", value)
71
70
 
72
- @property
71
+ @_builtins.property
73
72
  @pulumi.getter
74
- def location(self) -> Optional[pulumi.Input[builtins.str]]:
73
+ def location(self) -> Optional[pulumi.Input[_builtins.str]]:
75
74
  """
76
75
  The URL where the depot source is hosted.
77
76
  """
78
77
  return pulumi.get(self, "location")
79
78
 
80
79
  @location.setter
81
- def location(self, value: Optional[pulumi.Input[builtins.str]]):
80
+ def location(self, value: Optional[pulumi.Input[_builtins.str]]):
82
81
  pulumi.set(self, "location", value)
83
82
 
84
83
 
@@ -88,7 +87,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
88
87
  def __init__(__self__,
89
88
  resource_name: str,
90
89
  opts: Optional[pulumi.ResourceOptions] = None,
91
- location: Optional[pulumi.Input[builtins.str]] = None,
90
+ location: Optional[pulumi.Input[_builtins.str]] = None,
92
91
  __props__=None):
93
92
  """
94
93
  Provides a VMware vSphere offline software depot resource.
@@ -99,7 +98,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
99
98
 
100
99
  :param str resource_name: The name of the resource.
101
100
  :param pulumi.ResourceOptions opts: Options for the resource.
102
- :param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
101
+ :param pulumi.Input[_builtins.str] location: The URL where the depot source is hosted.
103
102
  """
104
103
  ...
105
104
  @overload
@@ -129,7 +128,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
129
128
  def _internal_init(__self__,
130
129
  resource_name: str,
131
130
  opts: Optional[pulumi.ResourceOptions] = None,
132
- location: Optional[pulumi.Input[builtins.str]] = None,
131
+ location: Optional[pulumi.Input[_builtins.str]] = None,
133
132
  __props__=None):
134
133
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
135
134
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -154,7 +153,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
154
153
  id: pulumi.Input[str],
155
154
  opts: Optional[pulumi.ResourceOptions] = None,
156
155
  components: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OfflineSoftwareDepotComponentArgs', 'OfflineSoftwareDepotComponentArgsDict']]]]] = None,
157
- location: Optional[pulumi.Input[builtins.str]] = None) -> 'OfflineSoftwareDepot':
156
+ location: Optional[pulumi.Input[_builtins.str]] = None) -> 'OfflineSoftwareDepot':
158
157
  """
159
158
  Get an existing OfflineSoftwareDepot resource's state with the given name, id, and optional extra
160
159
  properties used to qualify the lookup.
@@ -163,7 +162,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
163
162
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
164
163
  :param pulumi.ResourceOptions opts: Options for the resource.
165
164
  :param pulumi.Input[Sequence[pulumi.Input[Union['OfflineSoftwareDepotComponentArgs', 'OfflineSoftwareDepotComponentArgsDict']]]] components: The list of custom components in the depot.
166
- :param pulumi.Input[builtins.str] location: The URL where the depot source is hosted.
165
+ :param pulumi.Input[_builtins.str] location: The URL where the depot source is hosted.
167
166
  """
168
167
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
169
168
 
@@ -173,7 +172,7 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
173
172
  __props__.__dict__["location"] = location
174
173
  return OfflineSoftwareDepot(resource_name, opts=opts, __props__=__props__)
175
174
 
176
- @property
175
+ @_builtins.property
177
176
  @pulumi.getter
178
177
  def components(self) -> pulumi.Output[Sequence['outputs.OfflineSoftwareDepotComponent']]:
179
178
  """
@@ -181,9 +180,9 @@ class OfflineSoftwareDepot(pulumi.CustomResource):
181
180
  """
182
181
  return pulumi.get(self, "components")
183
182
 
184
- @property
183
+ @_builtins.property
185
184
  @pulumi.getter
186
- def location(self) -> pulumi.Output[builtins.str]:
185
+ def location(self) -> pulumi.Output[_builtins.str]:
187
186
  """
188
187
  The URL where the depot source is hosted.
189
188
  """