pulumi-azure-native 2.57.1__py3-none-any.whl → 2.58.0__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-azure-native might be problematic. Click here for more details.

Files changed (101) hide show
  1. pulumi_azure_native/__init__.py +52 -0
  2. pulumi_azure_native/azurelargeinstance/__init__.py +22 -0
  3. pulumi_azure_native/azurelargeinstance/_enums.py +256 -0
  4. pulumi_azure_native/azurelargeinstance/_inputs.py +646 -0
  5. pulumi_azure_native/azurelargeinstance/azure_large_instance.py +475 -0
  6. pulumi_azure_native/azurelargeinstance/azure_large_storage_instance.py +320 -0
  7. pulumi_azure_native/azurelargeinstance/get_azure_large_instance.py +271 -0
  8. pulumi_azure_native/azurelargeinstance/get_azure_large_storage_instance.py +193 -0
  9. pulumi_azure_native/azurelargeinstance/outputs.py +795 -0
  10. pulumi_azure_native/azurelargeinstance/v20240801preview/__init__.py +14 -0
  11. pulumi_azure_native/azurelargeinstance/v20240801preview/_enums.py +256 -0
  12. pulumi_azure_native/azurelargeinstance/v20240801preview/_inputs.py +646 -0
  13. pulumi_azure_native/azurelargeinstance/v20240801preview/azure_large_instance.py +473 -0
  14. pulumi_azure_native/azurelargeinstance/v20240801preview/azure_large_storage_instance.py +318 -0
  15. pulumi_azure_native/azurelargeinstance/v20240801preview/get_azure_large_instance.py +269 -0
  16. pulumi_azure_native/azurelargeinstance/v20240801preview/get_azure_large_storage_instance.py +191 -0
  17. pulumi_azure_native/azurelargeinstance/v20240801preview/outputs.py +795 -0
  18. pulumi_azure_native/baremetalinfrastructure/__init__.py +5 -0
  19. pulumi_azure_native/baremetalinfrastructure/_enums.py +74 -0
  20. pulumi_azure_native/baremetalinfrastructure/_inputs.py +368 -0
  21. pulumi_azure_native/baremetalinfrastructure/azure_bare_metal_instance.py +502 -0
  22. pulumi_azure_native/baremetalinfrastructure/azure_bare_metal_storage_instance.py +3 -3
  23. pulumi_azure_native/baremetalinfrastructure/get_azure_bare_metal_instance.py +281 -0
  24. pulumi_azure_native/baremetalinfrastructure/get_azure_bare_metal_storage_instance.py +2 -2
  25. pulumi_azure_native/baremetalinfrastructure/outputs.py +351 -0
  26. pulumi_azure_native/baremetalinfrastructure/v20230406/azure_bare_metal_storage_instance.py +1 -1
  27. pulumi_azure_native/baremetalinfrastructure/v20230804preview/azure_bare_metal_storage_instance.py +1 -1
  28. pulumi_azure_native/baremetalinfrastructure/v20231101preview/azure_bare_metal_storage_instance.py +1 -1
  29. pulumi_azure_native/baremetalinfrastructure/v20240801preview/__init__.py +14 -0
  30. pulumi_azure_native/baremetalinfrastructure/v20240801preview/_enums.py +106 -0
  31. pulumi_azure_native/baremetalinfrastructure/v20240801preview/_inputs.py +644 -0
  32. pulumi_azure_native/baremetalinfrastructure/v20240801preview/azure_bare_metal_instance.py +500 -0
  33. pulumi_azure_native/baremetalinfrastructure/v20240801preview/azure_bare_metal_storage_instance.py +316 -0
  34. pulumi_azure_native/baremetalinfrastructure/v20240801preview/get_azure_bare_metal_instance.py +279 -0
  35. pulumi_azure_native/baremetalinfrastructure/v20240801preview/get_azure_bare_metal_storage_instance.py +188 -0
  36. pulumi_azure_native/baremetalinfrastructure/v20240801preview/outputs.py +726 -0
  37. pulumi_azure_native/batch/__init__.py +3 -0
  38. pulumi_azure_native/batch/application.py +3 -3
  39. pulumi_azure_native/batch/application_package.py +3 -3
  40. pulumi_azure_native/batch/batch_account.py +3 -3
  41. pulumi_azure_native/batch/get_application.py +2 -2
  42. pulumi_azure_native/batch/get_application_package.py +2 -2
  43. pulumi_azure_native/batch/get_batch_account.py +2 -2
  44. pulumi_azure_native/batch/get_pool.py +2 -2
  45. pulumi_azure_native/batch/list_batch_account_keys.py +2 -2
  46. pulumi_azure_native/batch/pool.py +3 -3
  47. pulumi_azure_native/batch/v20220101/batch_account.py +1 -1
  48. pulumi_azure_native/batch/v20230501/application.py +1 -1
  49. pulumi_azure_native/batch/v20230501/application_package.py +1 -1
  50. pulumi_azure_native/batch/v20230501/batch_account.py +1 -1
  51. pulumi_azure_native/batch/v20230501/pool.py +1 -1
  52. pulumi_azure_native/batch/v20231101/application.py +1 -1
  53. pulumi_azure_native/batch/v20231101/application_package.py +1 -1
  54. pulumi_azure_native/batch/v20231101/batch_account.py +1 -1
  55. pulumi_azure_native/batch/v20231101/pool.py +1 -1
  56. pulumi_azure_native/batch/v20240201/application.py +1 -1
  57. pulumi_azure_native/batch/v20240201/application_package.py +1 -1
  58. pulumi_azure_native/batch/v20240201/batch_account.py +1 -1
  59. pulumi_azure_native/batch/v20240201/pool.py +1 -1
  60. pulumi_azure_native/batch/v20240701/__init__.py +19 -0
  61. pulumi_azure_native/batch/v20240701/_enums.py +510 -0
  62. pulumi_azure_native/batch/v20240701/_inputs.py +4319 -0
  63. pulumi_azure_native/batch/v20240701/application.py +305 -0
  64. pulumi_azure_native/batch/v20240701/application_package.py +289 -0
  65. pulumi_azure_native/batch/v20240701/batch_account.py +545 -0
  66. pulumi_azure_native/batch/v20240701/get_application.py +179 -0
  67. pulumi_azure_native/batch/v20240701/get_application_package.py +210 -0
  68. pulumi_azure_native/batch/v20240701/get_batch_account.py +364 -0
  69. pulumi_azure_native/batch/v20240701/get_pool.py +503 -0
  70. pulumi_azure_native/batch/v20240701/list_batch_account_keys.py +109 -0
  71. pulumi_azure_native/batch/v20240701/outputs.py +4161 -0
  72. pulumi_azure_native/batch/v20240701/pool.py +854 -0
  73. pulumi_azure_native/hardwaresecuritymodules/__init__.py +3 -0
  74. pulumi_azure_native/hardwaresecuritymodules/cloud_hsm_cluster.py +3 -3
  75. pulumi_azure_native/hardwaresecuritymodules/cloud_hsm_cluster_private_endpoint_connection.py +3 -3
  76. pulumi_azure_native/hardwaresecuritymodules/dedicated_hsm.py +5 -1
  77. pulumi_azure_native/hardwaresecuritymodules/get_cloud_hsm_cluster.py +2 -2
  78. pulumi_azure_native/hardwaresecuritymodules/get_cloud_hsm_cluster_private_endpoint_connection.py +2 -2
  79. pulumi_azure_native/hardwaresecuritymodules/get_dedicated_hsm.py +4 -0
  80. pulumi_azure_native/hardwaresecuritymodules/v20211130/dedicated_hsm.py +1 -1
  81. pulumi_azure_native/hardwaresecuritymodules/v20220831preview/cloud_hsm_cluster.py +1 -1
  82. pulumi_azure_native/hardwaresecuritymodules/v20220831preview/cloud_hsm_cluster_private_endpoint_connection.py +1 -1
  83. pulumi_azure_native/hardwaresecuritymodules/v20231210preview/cloud_hsm_cluster.py +1 -1
  84. pulumi_azure_native/hardwaresecuritymodules/v20231210preview/cloud_hsm_cluster_private_endpoint_connection.py +1 -1
  85. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/__init__.py +16 -0
  86. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/_enums.py +100 -0
  87. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/_inputs.py +405 -0
  88. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/cloud_hsm_cluster.py +428 -0
  89. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/cloud_hsm_cluster_private_endpoint_connection.py +262 -0
  90. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/dedicated_hsm.py +394 -0
  91. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_cloud_hsm_cluster.py +279 -0
  92. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_cloud_hsm_cluster_private_endpoint_connection.py +193 -0
  93. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_dedicated_hsm.py +240 -0
  94. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/outputs.py +772 -0
  95. pulumi_azure_native/machinelearningservices/v20240701preview/_inputs.py +20 -0
  96. pulumi_azure_native/machinelearningservices/v20240701preview/outputs.py +12 -11
  97. pulumi_azure_native/pulumi-plugin.json +1 -1
  98. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/METADATA +1 -1
  99. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/RECORD +101 -52
  100. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/WHEEL +0 -0
  101. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,644 @@
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 copy
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
+ from ._enums import *
17
+
18
+ __all__ = [
19
+ 'AzureBareMetalStorageInstanceIdentityArgs',
20
+ 'AzureBareMetalStorageInstanceIdentityArgsDict',
21
+ 'DiskArgs',
22
+ 'DiskArgsDict',
23
+ 'HardwareProfileArgs',
24
+ 'HardwareProfileArgsDict',
25
+ 'NetworkInterfaceArgs',
26
+ 'NetworkInterfaceArgsDict',
27
+ 'NetworkProfileArgs',
28
+ 'NetworkProfileArgsDict',
29
+ 'OSProfileArgs',
30
+ 'OSProfileArgsDict',
31
+ 'StorageBillingPropertiesArgs',
32
+ 'StorageBillingPropertiesArgsDict',
33
+ 'StorageProfileArgs',
34
+ 'StorageProfileArgsDict',
35
+ 'StoragePropertiesArgs',
36
+ 'StoragePropertiesArgsDict',
37
+ ]
38
+
39
+ MYPY = False
40
+
41
+ if not MYPY:
42
+ class AzureBareMetalStorageInstanceIdentityArgsDict(TypedDict):
43
+ """
44
+ Identity for Azure Bare Metal Storage Instance.
45
+ """
46
+ type: NotRequired[pulumi.Input[Union[str, 'ResourceIdentityType']]]
47
+ """
48
+ The type of identity used for the Azure Bare Metal Storage Instance. The type 'SystemAssigned' refers to an implicitly created identity. The type 'None' will remove any identities from the Azure Bare Metal Storage Instance.
49
+ """
50
+ elif False:
51
+ AzureBareMetalStorageInstanceIdentityArgsDict: TypeAlias = Mapping[str, Any]
52
+
53
+ @pulumi.input_type
54
+ class AzureBareMetalStorageInstanceIdentityArgs:
55
+ def __init__(__self__, *,
56
+ type: Optional[pulumi.Input[Union[str, 'ResourceIdentityType']]] = None):
57
+ """
58
+ Identity for Azure Bare Metal Storage Instance.
59
+ :param pulumi.Input[Union[str, 'ResourceIdentityType']] type: The type of identity used for the Azure Bare Metal Storage Instance. The type 'SystemAssigned' refers to an implicitly created identity. The type 'None' will remove any identities from the Azure Bare Metal Storage Instance.
60
+ """
61
+ if type is not None:
62
+ pulumi.set(__self__, "type", type)
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def type(self) -> Optional[pulumi.Input[Union[str, 'ResourceIdentityType']]]:
67
+ """
68
+ The type of identity used for the Azure Bare Metal Storage Instance. The type 'SystemAssigned' refers to an implicitly created identity. The type 'None' will remove any identities from the Azure Bare Metal Storage Instance.
69
+ """
70
+ return pulumi.get(self, "type")
71
+
72
+ @type.setter
73
+ def type(self, value: Optional[pulumi.Input[Union[str, 'ResourceIdentityType']]]):
74
+ pulumi.set(self, "type", value)
75
+
76
+
77
+ if not MYPY:
78
+ class DiskArgsDict(TypedDict):
79
+ """
80
+ Specifies the disk information fo the Azure Bare Metal Instance
81
+ """
82
+ disk_size_gb: NotRequired[pulumi.Input[int]]
83
+ """
84
+ Specifies the size of an empty data disk in gigabytes.
85
+ """
86
+ name: NotRequired[pulumi.Input[str]]
87
+ """
88
+ The disk name.
89
+ """
90
+ elif False:
91
+ DiskArgsDict: TypeAlias = Mapping[str, Any]
92
+
93
+ @pulumi.input_type
94
+ class DiskArgs:
95
+ def __init__(__self__, *,
96
+ disk_size_gb: Optional[pulumi.Input[int]] = None,
97
+ name: Optional[pulumi.Input[str]] = None):
98
+ """
99
+ Specifies the disk information fo the Azure Bare Metal Instance
100
+ :param pulumi.Input[int] disk_size_gb: Specifies the size of an empty data disk in gigabytes.
101
+ :param pulumi.Input[str] name: The disk name.
102
+ """
103
+ if disk_size_gb is not None:
104
+ pulumi.set(__self__, "disk_size_gb", disk_size_gb)
105
+ if name is not None:
106
+ pulumi.set(__self__, "name", name)
107
+
108
+ @property
109
+ @pulumi.getter(name="diskSizeGB")
110
+ def disk_size_gb(self) -> Optional[pulumi.Input[int]]:
111
+ """
112
+ Specifies the size of an empty data disk in gigabytes.
113
+ """
114
+ return pulumi.get(self, "disk_size_gb")
115
+
116
+ @disk_size_gb.setter
117
+ def disk_size_gb(self, value: Optional[pulumi.Input[int]]):
118
+ pulumi.set(self, "disk_size_gb", value)
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def name(self) -> Optional[pulumi.Input[str]]:
123
+ """
124
+ The disk name.
125
+ """
126
+ return pulumi.get(self, "name")
127
+
128
+ @name.setter
129
+ def name(self, value: Optional[pulumi.Input[str]]):
130
+ pulumi.set(self, "name", value)
131
+
132
+
133
+ if not MYPY:
134
+ class HardwareProfileArgsDict(TypedDict):
135
+ """
136
+ Specifies the hardware settings for the Azure Bare Metal Instance.
137
+ """
138
+ azure_bare_metal_instance_size: NotRequired[pulumi.Input[Union[str, 'AzureBareMetalInstanceSizeNamesEnum']]]
139
+ """
140
+ Specifies the Azure Bare Metal Instance SKU.
141
+ """
142
+ hardware_type: NotRequired[pulumi.Input[Union[str, 'AzureBareMetalHardwareTypeNamesEnum']]]
143
+ """
144
+ Name of the hardware type (vendor and/or their product name)
145
+ """
146
+ elif False:
147
+ HardwareProfileArgsDict: TypeAlias = Mapping[str, Any]
148
+
149
+ @pulumi.input_type
150
+ class HardwareProfileArgs:
151
+ def __init__(__self__, *,
152
+ azure_bare_metal_instance_size: Optional[pulumi.Input[Union[str, 'AzureBareMetalInstanceSizeNamesEnum']]] = None,
153
+ hardware_type: Optional[pulumi.Input[Union[str, 'AzureBareMetalHardwareTypeNamesEnum']]] = None):
154
+ """
155
+ Specifies the hardware settings for the Azure Bare Metal Instance.
156
+ :param pulumi.Input[Union[str, 'AzureBareMetalInstanceSizeNamesEnum']] azure_bare_metal_instance_size: Specifies the Azure Bare Metal Instance SKU.
157
+ :param pulumi.Input[Union[str, 'AzureBareMetalHardwareTypeNamesEnum']] hardware_type: Name of the hardware type (vendor and/or their product name)
158
+ """
159
+ if azure_bare_metal_instance_size is not None:
160
+ pulumi.set(__self__, "azure_bare_metal_instance_size", azure_bare_metal_instance_size)
161
+ if hardware_type is not None:
162
+ pulumi.set(__self__, "hardware_type", hardware_type)
163
+
164
+ @property
165
+ @pulumi.getter(name="azureBareMetalInstanceSize")
166
+ def azure_bare_metal_instance_size(self) -> Optional[pulumi.Input[Union[str, 'AzureBareMetalInstanceSizeNamesEnum']]]:
167
+ """
168
+ Specifies the Azure Bare Metal Instance SKU.
169
+ """
170
+ return pulumi.get(self, "azure_bare_metal_instance_size")
171
+
172
+ @azure_bare_metal_instance_size.setter
173
+ def azure_bare_metal_instance_size(self, value: Optional[pulumi.Input[Union[str, 'AzureBareMetalInstanceSizeNamesEnum']]]):
174
+ pulumi.set(self, "azure_bare_metal_instance_size", value)
175
+
176
+ @property
177
+ @pulumi.getter(name="hardwareType")
178
+ def hardware_type(self) -> Optional[pulumi.Input[Union[str, 'AzureBareMetalHardwareTypeNamesEnum']]]:
179
+ """
180
+ Name of the hardware type (vendor and/or their product name)
181
+ """
182
+ return pulumi.get(self, "hardware_type")
183
+
184
+ @hardware_type.setter
185
+ def hardware_type(self, value: Optional[pulumi.Input[Union[str, 'AzureBareMetalHardwareTypeNamesEnum']]]):
186
+ pulumi.set(self, "hardware_type", value)
187
+
188
+
189
+ if not MYPY:
190
+ class NetworkInterfaceArgsDict(TypedDict):
191
+ """
192
+ Specifies the network interfaces of a bare metal resource.
193
+ """
194
+ ip_address: NotRequired[pulumi.Input[str]]
195
+ """
196
+ Specifies the IP address of the network interface.
197
+ """
198
+ elif False:
199
+ NetworkInterfaceArgsDict: TypeAlias = Mapping[str, Any]
200
+
201
+ @pulumi.input_type
202
+ class NetworkInterfaceArgs:
203
+ def __init__(__self__, *,
204
+ ip_address: Optional[pulumi.Input[str]] = None):
205
+ """
206
+ Specifies the network interfaces of a bare metal resource.
207
+ :param pulumi.Input[str] ip_address: Specifies the IP address of the network interface.
208
+ """
209
+ if ip_address is not None:
210
+ pulumi.set(__self__, "ip_address", ip_address)
211
+
212
+ @property
213
+ @pulumi.getter(name="ipAddress")
214
+ def ip_address(self) -> Optional[pulumi.Input[str]]:
215
+ """
216
+ Specifies the IP address of the network interface.
217
+ """
218
+ return pulumi.get(self, "ip_address")
219
+
220
+ @ip_address.setter
221
+ def ip_address(self, value: Optional[pulumi.Input[str]]):
222
+ pulumi.set(self, "ip_address", value)
223
+
224
+
225
+ if not MYPY:
226
+ class NetworkProfileArgsDict(TypedDict):
227
+ """
228
+ Specifies the network settings for the Azure Bare Metal Instance disks.
229
+ """
230
+ circuit_id: NotRequired[pulumi.Input[str]]
231
+ """
232
+ Specifies the circuit id for connecting to express route.
233
+ """
234
+ network_interfaces: NotRequired[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgsDict']]]]
235
+ """
236
+ Specifies the network interfaces for the Azure Bare Metal Instance.
237
+ """
238
+ elif False:
239
+ NetworkProfileArgsDict: TypeAlias = Mapping[str, Any]
240
+
241
+ @pulumi.input_type
242
+ class NetworkProfileArgs:
243
+ def __init__(__self__, *,
244
+ circuit_id: Optional[pulumi.Input[str]] = None,
245
+ network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]]] = None):
246
+ """
247
+ Specifies the network settings for the Azure Bare Metal Instance disks.
248
+ :param pulumi.Input[str] circuit_id: Specifies the circuit id for connecting to express route.
249
+ :param pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]] network_interfaces: Specifies the network interfaces for the Azure Bare Metal Instance.
250
+ """
251
+ if circuit_id is not None:
252
+ pulumi.set(__self__, "circuit_id", circuit_id)
253
+ if network_interfaces is not None:
254
+ pulumi.set(__self__, "network_interfaces", network_interfaces)
255
+
256
+ @property
257
+ @pulumi.getter(name="circuitId")
258
+ def circuit_id(self) -> Optional[pulumi.Input[str]]:
259
+ """
260
+ Specifies the circuit id for connecting to express route.
261
+ """
262
+ return pulumi.get(self, "circuit_id")
263
+
264
+ @circuit_id.setter
265
+ def circuit_id(self, value: Optional[pulumi.Input[str]]):
266
+ pulumi.set(self, "circuit_id", value)
267
+
268
+ @property
269
+ @pulumi.getter(name="networkInterfaces")
270
+ def network_interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]]]:
271
+ """
272
+ Specifies the network interfaces for the Azure Bare Metal Instance.
273
+ """
274
+ return pulumi.get(self, "network_interfaces")
275
+
276
+ @network_interfaces.setter
277
+ def network_interfaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]]]):
278
+ pulumi.set(self, "network_interfaces", value)
279
+
280
+
281
+ if not MYPY:
282
+ class OSProfileArgsDict(TypedDict):
283
+ """
284
+ Specifies the operating system settings for the Azure Bare Metal instance.
285
+ """
286
+ computer_name: NotRequired[pulumi.Input[str]]
287
+ """
288
+ Specifies the host OS name of the Azure Bare Metal instance.
289
+ """
290
+ os_type: NotRequired[pulumi.Input[str]]
291
+ """
292
+ This property allows you to specify the type of the OS.
293
+ """
294
+ ssh_public_key: NotRequired[pulumi.Input[str]]
295
+ """
296
+ Specifies the SSH public key used to access the operating system.
297
+ """
298
+ version: NotRequired[pulumi.Input[str]]
299
+ """
300
+ Specifies version of operating system.
301
+ """
302
+ elif False:
303
+ OSProfileArgsDict: TypeAlias = Mapping[str, Any]
304
+
305
+ @pulumi.input_type
306
+ class OSProfileArgs:
307
+ def __init__(__self__, *,
308
+ computer_name: Optional[pulumi.Input[str]] = None,
309
+ os_type: Optional[pulumi.Input[str]] = None,
310
+ ssh_public_key: Optional[pulumi.Input[str]] = None,
311
+ version: Optional[pulumi.Input[str]] = None):
312
+ """
313
+ Specifies the operating system settings for the Azure Bare Metal instance.
314
+ :param pulumi.Input[str] computer_name: Specifies the host OS name of the Azure Bare Metal instance.
315
+ :param pulumi.Input[str] os_type: This property allows you to specify the type of the OS.
316
+ :param pulumi.Input[str] ssh_public_key: Specifies the SSH public key used to access the operating system.
317
+ :param pulumi.Input[str] version: Specifies version of operating system.
318
+ """
319
+ if computer_name is not None:
320
+ pulumi.set(__self__, "computer_name", computer_name)
321
+ if os_type is not None:
322
+ pulumi.set(__self__, "os_type", os_type)
323
+ if ssh_public_key is not None:
324
+ pulumi.set(__self__, "ssh_public_key", ssh_public_key)
325
+ if version is not None:
326
+ pulumi.set(__self__, "version", version)
327
+
328
+ @property
329
+ @pulumi.getter(name="computerName")
330
+ def computer_name(self) -> Optional[pulumi.Input[str]]:
331
+ """
332
+ Specifies the host OS name of the Azure Bare Metal instance.
333
+ """
334
+ return pulumi.get(self, "computer_name")
335
+
336
+ @computer_name.setter
337
+ def computer_name(self, value: Optional[pulumi.Input[str]]):
338
+ pulumi.set(self, "computer_name", value)
339
+
340
+ @property
341
+ @pulumi.getter(name="osType")
342
+ def os_type(self) -> Optional[pulumi.Input[str]]:
343
+ """
344
+ This property allows you to specify the type of the OS.
345
+ """
346
+ return pulumi.get(self, "os_type")
347
+
348
+ @os_type.setter
349
+ def os_type(self, value: Optional[pulumi.Input[str]]):
350
+ pulumi.set(self, "os_type", value)
351
+
352
+ @property
353
+ @pulumi.getter(name="sshPublicKey")
354
+ def ssh_public_key(self) -> Optional[pulumi.Input[str]]:
355
+ """
356
+ Specifies the SSH public key used to access the operating system.
357
+ """
358
+ return pulumi.get(self, "ssh_public_key")
359
+
360
+ @ssh_public_key.setter
361
+ def ssh_public_key(self, value: Optional[pulumi.Input[str]]):
362
+ pulumi.set(self, "ssh_public_key", value)
363
+
364
+ @property
365
+ @pulumi.getter
366
+ def version(self) -> Optional[pulumi.Input[str]]:
367
+ """
368
+ Specifies version of operating system.
369
+ """
370
+ return pulumi.get(self, "version")
371
+
372
+ @version.setter
373
+ def version(self, value: Optional[pulumi.Input[str]]):
374
+ pulumi.set(self, "version", value)
375
+
376
+
377
+ if not MYPY:
378
+ class StorageBillingPropertiesArgsDict(TypedDict):
379
+ """
380
+ Describes the billing related details of the AzureBareMetalStorageInstance.
381
+ """
382
+ azure_bare_metal_storage_instance_size: NotRequired[pulumi.Input[str]]
383
+ """
384
+ the SKU type that is provisioned
385
+ """
386
+ billing_mode: NotRequired[pulumi.Input[str]]
387
+ """
388
+ the billing mode for the storage instance
389
+ """
390
+ elif False:
391
+ StorageBillingPropertiesArgsDict: TypeAlias = Mapping[str, Any]
392
+
393
+ @pulumi.input_type
394
+ class StorageBillingPropertiesArgs:
395
+ def __init__(__self__, *,
396
+ azure_bare_metal_storage_instance_size: Optional[pulumi.Input[str]] = None,
397
+ billing_mode: Optional[pulumi.Input[str]] = None):
398
+ """
399
+ Describes the billing related details of the AzureBareMetalStorageInstance.
400
+ :param pulumi.Input[str] azure_bare_metal_storage_instance_size: the SKU type that is provisioned
401
+ :param pulumi.Input[str] billing_mode: the billing mode for the storage instance
402
+ """
403
+ if azure_bare_metal_storage_instance_size is not None:
404
+ pulumi.set(__self__, "azure_bare_metal_storage_instance_size", azure_bare_metal_storage_instance_size)
405
+ if billing_mode is not None:
406
+ pulumi.set(__self__, "billing_mode", billing_mode)
407
+
408
+ @property
409
+ @pulumi.getter(name="azureBareMetalStorageInstanceSize")
410
+ def azure_bare_metal_storage_instance_size(self) -> Optional[pulumi.Input[str]]:
411
+ """
412
+ the SKU type that is provisioned
413
+ """
414
+ return pulumi.get(self, "azure_bare_metal_storage_instance_size")
415
+
416
+ @azure_bare_metal_storage_instance_size.setter
417
+ def azure_bare_metal_storage_instance_size(self, value: Optional[pulumi.Input[str]]):
418
+ pulumi.set(self, "azure_bare_metal_storage_instance_size", value)
419
+
420
+ @property
421
+ @pulumi.getter(name="billingMode")
422
+ def billing_mode(self) -> Optional[pulumi.Input[str]]:
423
+ """
424
+ the billing mode for the storage instance
425
+ """
426
+ return pulumi.get(self, "billing_mode")
427
+
428
+ @billing_mode.setter
429
+ def billing_mode(self, value: Optional[pulumi.Input[str]]):
430
+ pulumi.set(self, "billing_mode", value)
431
+
432
+
433
+ if not MYPY:
434
+ class StorageProfileArgsDict(TypedDict):
435
+ """
436
+ Specifies the storage settings for the Azure Bare Metal instance disks.
437
+ """
438
+ nfs_ip_address: NotRequired[pulumi.Input[str]]
439
+ """
440
+ IP Address to connect to storage.
441
+ """
442
+ os_disks: NotRequired[pulumi.Input[Sequence[pulumi.Input['DiskArgsDict']]]]
443
+ """
444
+ Specifies information about the operating system disk used by bare metal instance.
445
+ """
446
+ elif False:
447
+ StorageProfileArgsDict: TypeAlias = Mapping[str, Any]
448
+
449
+ @pulumi.input_type
450
+ class StorageProfileArgs:
451
+ def __init__(__self__, *,
452
+ nfs_ip_address: Optional[pulumi.Input[str]] = None,
453
+ os_disks: Optional[pulumi.Input[Sequence[pulumi.Input['DiskArgs']]]] = None):
454
+ """
455
+ Specifies the storage settings for the Azure Bare Metal instance disks.
456
+ :param pulumi.Input[str] nfs_ip_address: IP Address to connect to storage.
457
+ :param pulumi.Input[Sequence[pulumi.Input['DiskArgs']]] os_disks: Specifies information about the operating system disk used by bare metal instance.
458
+ """
459
+ if nfs_ip_address is not None:
460
+ pulumi.set(__self__, "nfs_ip_address", nfs_ip_address)
461
+ if os_disks is not None:
462
+ pulumi.set(__self__, "os_disks", os_disks)
463
+
464
+ @property
465
+ @pulumi.getter(name="nfsIpAddress")
466
+ def nfs_ip_address(self) -> Optional[pulumi.Input[str]]:
467
+ """
468
+ IP Address to connect to storage.
469
+ """
470
+ return pulumi.get(self, "nfs_ip_address")
471
+
472
+ @nfs_ip_address.setter
473
+ def nfs_ip_address(self, value: Optional[pulumi.Input[str]]):
474
+ pulumi.set(self, "nfs_ip_address", value)
475
+
476
+ @property
477
+ @pulumi.getter(name="osDisks")
478
+ def os_disks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DiskArgs']]]]:
479
+ """
480
+ Specifies information about the operating system disk used by bare metal instance.
481
+ """
482
+ return pulumi.get(self, "os_disks")
483
+
484
+ @os_disks.setter
485
+ def os_disks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DiskArgs']]]]):
486
+ pulumi.set(self, "os_disks", value)
487
+
488
+
489
+ if not MYPY:
490
+ class StoragePropertiesArgsDict(TypedDict):
491
+ """
492
+ described the storage properties of the azure bare metal storage instance
493
+ """
494
+ generation: NotRequired[pulumi.Input[str]]
495
+ """
496
+ the kind of storage instance
497
+ """
498
+ hardware_type: NotRequired[pulumi.Input[str]]
499
+ """
500
+ the hardware type of the storage instance
501
+ """
502
+ offering_type: NotRequired[pulumi.Input[str]]
503
+ """
504
+ the offering type for which the resource is getting provisioned
505
+ """
506
+ provisioning_state: NotRequired[pulumi.Input[Union[str, 'ProvisioningState']]]
507
+ """
508
+ State of provisioning of the AzureBareMetalStorageInstance
509
+ """
510
+ storage_billing_properties: NotRequired[pulumi.Input['StorageBillingPropertiesArgsDict']]
511
+ """
512
+ the billing related information for the resource
513
+ """
514
+ storage_type: NotRequired[pulumi.Input[str]]
515
+ """
516
+ the storage protocol for which the resource is getting provisioned
517
+ """
518
+ workload_type: NotRequired[pulumi.Input[str]]
519
+ """
520
+ the workload for which the resource is getting provisioned
521
+ """
522
+ elif False:
523
+ StoragePropertiesArgsDict: TypeAlias = Mapping[str, Any]
524
+
525
+ @pulumi.input_type
526
+ class StoragePropertiesArgs:
527
+ def __init__(__self__, *,
528
+ generation: Optional[pulumi.Input[str]] = None,
529
+ hardware_type: Optional[pulumi.Input[str]] = None,
530
+ offering_type: Optional[pulumi.Input[str]] = None,
531
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
532
+ storage_billing_properties: Optional[pulumi.Input['StorageBillingPropertiesArgs']] = None,
533
+ storage_type: Optional[pulumi.Input[str]] = None,
534
+ workload_type: Optional[pulumi.Input[str]] = None):
535
+ """
536
+ described the storage properties of the azure bare metal storage instance
537
+ :param pulumi.Input[str] generation: the kind of storage instance
538
+ :param pulumi.Input[str] hardware_type: the hardware type of the storage instance
539
+ :param pulumi.Input[str] offering_type: the offering type for which the resource is getting provisioned
540
+ :param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: State of provisioning of the AzureBareMetalStorageInstance
541
+ :param pulumi.Input['StorageBillingPropertiesArgs'] storage_billing_properties: the billing related information for the resource
542
+ :param pulumi.Input[str] storage_type: the storage protocol for which the resource is getting provisioned
543
+ :param pulumi.Input[str] workload_type: the workload for which the resource is getting provisioned
544
+ """
545
+ if generation is not None:
546
+ pulumi.set(__self__, "generation", generation)
547
+ if hardware_type is not None:
548
+ pulumi.set(__self__, "hardware_type", hardware_type)
549
+ if offering_type is not None:
550
+ pulumi.set(__self__, "offering_type", offering_type)
551
+ if provisioning_state is not None:
552
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
553
+ if storage_billing_properties is not None:
554
+ pulumi.set(__self__, "storage_billing_properties", storage_billing_properties)
555
+ if storage_type is not None:
556
+ pulumi.set(__self__, "storage_type", storage_type)
557
+ if workload_type is not None:
558
+ pulumi.set(__self__, "workload_type", workload_type)
559
+
560
+ @property
561
+ @pulumi.getter
562
+ def generation(self) -> Optional[pulumi.Input[str]]:
563
+ """
564
+ the kind of storage instance
565
+ """
566
+ return pulumi.get(self, "generation")
567
+
568
+ @generation.setter
569
+ def generation(self, value: Optional[pulumi.Input[str]]):
570
+ pulumi.set(self, "generation", value)
571
+
572
+ @property
573
+ @pulumi.getter(name="hardwareType")
574
+ def hardware_type(self) -> Optional[pulumi.Input[str]]:
575
+ """
576
+ the hardware type of the storage instance
577
+ """
578
+ return pulumi.get(self, "hardware_type")
579
+
580
+ @hardware_type.setter
581
+ def hardware_type(self, value: Optional[pulumi.Input[str]]):
582
+ pulumi.set(self, "hardware_type", value)
583
+
584
+ @property
585
+ @pulumi.getter(name="offeringType")
586
+ def offering_type(self) -> Optional[pulumi.Input[str]]:
587
+ """
588
+ the offering type for which the resource is getting provisioned
589
+ """
590
+ return pulumi.get(self, "offering_type")
591
+
592
+ @offering_type.setter
593
+ def offering_type(self, value: Optional[pulumi.Input[str]]):
594
+ pulumi.set(self, "offering_type", value)
595
+
596
+ @property
597
+ @pulumi.getter(name="provisioningState")
598
+ def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'ProvisioningState']]]:
599
+ """
600
+ State of provisioning of the AzureBareMetalStorageInstance
601
+ """
602
+ return pulumi.get(self, "provisioning_state")
603
+
604
+ @provisioning_state.setter
605
+ def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'ProvisioningState']]]):
606
+ pulumi.set(self, "provisioning_state", value)
607
+
608
+ @property
609
+ @pulumi.getter(name="storageBillingProperties")
610
+ def storage_billing_properties(self) -> Optional[pulumi.Input['StorageBillingPropertiesArgs']]:
611
+ """
612
+ the billing related information for the resource
613
+ """
614
+ return pulumi.get(self, "storage_billing_properties")
615
+
616
+ @storage_billing_properties.setter
617
+ def storage_billing_properties(self, value: Optional[pulumi.Input['StorageBillingPropertiesArgs']]):
618
+ pulumi.set(self, "storage_billing_properties", value)
619
+
620
+ @property
621
+ @pulumi.getter(name="storageType")
622
+ def storage_type(self) -> Optional[pulumi.Input[str]]:
623
+ """
624
+ the storage protocol for which the resource is getting provisioned
625
+ """
626
+ return pulumi.get(self, "storage_type")
627
+
628
+ @storage_type.setter
629
+ def storage_type(self, value: Optional[pulumi.Input[str]]):
630
+ pulumi.set(self, "storage_type", value)
631
+
632
+ @property
633
+ @pulumi.getter(name="workloadType")
634
+ def workload_type(self) -> Optional[pulumi.Input[str]]:
635
+ """
636
+ the workload for which the resource is getting provisioned
637
+ """
638
+ return pulumi.get(self, "workload_type")
639
+
640
+ @workload_type.setter
641
+ def workload_type(self, value: Optional[pulumi.Input[str]]):
642
+ pulumi.set(self, "workload_type", value)
643
+
644
+