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