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,726 @@
|
|
|
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 . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'AzureBareMetalStorageInstanceIdentityResponse',
|
|
21
|
+
'DiskResponse',
|
|
22
|
+
'HardwareProfileResponse',
|
|
23
|
+
'NetworkInterfaceResponse',
|
|
24
|
+
'NetworkProfileResponse',
|
|
25
|
+
'OSProfileResponse',
|
|
26
|
+
'StorageBillingPropertiesResponse',
|
|
27
|
+
'StorageProfileResponse',
|
|
28
|
+
'StoragePropertiesResponse',
|
|
29
|
+
'SystemDataResponse',
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
@pulumi.output_type
|
|
33
|
+
class AzureBareMetalStorageInstanceIdentityResponse(dict):
|
|
34
|
+
"""
|
|
35
|
+
Identity for Azure Bare Metal Storage Instance.
|
|
36
|
+
"""
|
|
37
|
+
@staticmethod
|
|
38
|
+
def __key_warning(key: str):
|
|
39
|
+
suggest = None
|
|
40
|
+
if key == "principalId":
|
|
41
|
+
suggest = "principal_id"
|
|
42
|
+
elif key == "tenantId":
|
|
43
|
+
suggest = "tenant_id"
|
|
44
|
+
|
|
45
|
+
if suggest:
|
|
46
|
+
pulumi.log.warn(f"Key '{key}' not found in AzureBareMetalStorageInstanceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
AzureBareMetalStorageInstanceIdentityResponse.__key_warning(key)
|
|
50
|
+
return super().__getitem__(key)
|
|
51
|
+
|
|
52
|
+
def get(self, key: str, default = None) -> Any:
|
|
53
|
+
AzureBareMetalStorageInstanceIdentityResponse.__key_warning(key)
|
|
54
|
+
return super().get(key, default)
|
|
55
|
+
|
|
56
|
+
def __init__(__self__, *,
|
|
57
|
+
principal_id: str,
|
|
58
|
+
tenant_id: str,
|
|
59
|
+
type: Optional[str] = None):
|
|
60
|
+
"""
|
|
61
|
+
Identity for Azure Bare Metal Storage Instance.
|
|
62
|
+
:param str principal_id: The principal ID of Azure Bare Metal Storage Instance identity. This property will only be provided for a system assigned identity.
|
|
63
|
+
:param str tenant_id: The tenant ID associated with the Azure Bare Metal Storage Instance. This property will only be provided for a system assigned identity.
|
|
64
|
+
:param str 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.
|
|
65
|
+
"""
|
|
66
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
67
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
68
|
+
if type is not None:
|
|
69
|
+
pulumi.set(__self__, "type", type)
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter(name="principalId")
|
|
73
|
+
def principal_id(self) -> str:
|
|
74
|
+
"""
|
|
75
|
+
The principal ID of Azure Bare Metal Storage Instance identity. This property will only be provided for a system assigned identity.
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "principal_id")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="tenantId")
|
|
81
|
+
def tenant_id(self) -> str:
|
|
82
|
+
"""
|
|
83
|
+
The tenant ID associated with the Azure Bare Metal Storage Instance. This property will only be provided for a system assigned identity.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "tenant_id")
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter
|
|
89
|
+
def type(self) -> Optional[str]:
|
|
90
|
+
"""
|
|
91
|
+
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.
|
|
92
|
+
"""
|
|
93
|
+
return pulumi.get(self, "type")
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
@pulumi.output_type
|
|
97
|
+
class DiskResponse(dict):
|
|
98
|
+
"""
|
|
99
|
+
Specifies the disk information fo the Azure Bare Metal Instance
|
|
100
|
+
"""
|
|
101
|
+
@staticmethod
|
|
102
|
+
def __key_warning(key: str):
|
|
103
|
+
suggest = None
|
|
104
|
+
if key == "diskSizeGB":
|
|
105
|
+
suggest = "disk_size_gb"
|
|
106
|
+
|
|
107
|
+
if suggest:
|
|
108
|
+
pulumi.log.warn(f"Key '{key}' not found in DiskResponse. Access the value via the '{suggest}' property getter instead.")
|
|
109
|
+
|
|
110
|
+
def __getitem__(self, key: str) -> Any:
|
|
111
|
+
DiskResponse.__key_warning(key)
|
|
112
|
+
return super().__getitem__(key)
|
|
113
|
+
|
|
114
|
+
def get(self, key: str, default = None) -> Any:
|
|
115
|
+
DiskResponse.__key_warning(key)
|
|
116
|
+
return super().get(key, default)
|
|
117
|
+
|
|
118
|
+
def __init__(__self__, *,
|
|
119
|
+
lun: int,
|
|
120
|
+
disk_size_gb: Optional[int] = None,
|
|
121
|
+
name: Optional[str] = None):
|
|
122
|
+
"""
|
|
123
|
+
Specifies the disk information fo the Azure Bare Metal Instance
|
|
124
|
+
:param int lun: Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
|
|
125
|
+
:param int disk_size_gb: Specifies the size of an empty data disk in gigabytes.
|
|
126
|
+
:param str name: The disk name.
|
|
127
|
+
"""
|
|
128
|
+
pulumi.set(__self__, "lun", lun)
|
|
129
|
+
if disk_size_gb is not None:
|
|
130
|
+
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
|
131
|
+
if name is not None:
|
|
132
|
+
pulumi.set(__self__, "name", name)
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def lun(self) -> int:
|
|
137
|
+
"""
|
|
138
|
+
Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "lun")
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
@pulumi.getter(name="diskSizeGB")
|
|
144
|
+
def disk_size_gb(self) -> Optional[int]:
|
|
145
|
+
"""
|
|
146
|
+
Specifies the size of an empty data disk in gigabytes.
|
|
147
|
+
"""
|
|
148
|
+
return pulumi.get(self, "disk_size_gb")
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
@pulumi.getter
|
|
152
|
+
def name(self) -> Optional[str]:
|
|
153
|
+
"""
|
|
154
|
+
The disk name.
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "name")
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
@pulumi.output_type
|
|
160
|
+
class HardwareProfileResponse(dict):
|
|
161
|
+
"""
|
|
162
|
+
Specifies the hardware settings for the Azure Bare Metal Instance.
|
|
163
|
+
"""
|
|
164
|
+
@staticmethod
|
|
165
|
+
def __key_warning(key: str):
|
|
166
|
+
suggest = None
|
|
167
|
+
if key == "azureBareMetalInstanceSize":
|
|
168
|
+
suggest = "azure_bare_metal_instance_size"
|
|
169
|
+
elif key == "hardwareType":
|
|
170
|
+
suggest = "hardware_type"
|
|
171
|
+
|
|
172
|
+
if suggest:
|
|
173
|
+
pulumi.log.warn(f"Key '{key}' not found in HardwareProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
174
|
+
|
|
175
|
+
def __getitem__(self, key: str) -> Any:
|
|
176
|
+
HardwareProfileResponse.__key_warning(key)
|
|
177
|
+
return super().__getitem__(key)
|
|
178
|
+
|
|
179
|
+
def get(self, key: str, default = None) -> Any:
|
|
180
|
+
HardwareProfileResponse.__key_warning(key)
|
|
181
|
+
return super().get(key, default)
|
|
182
|
+
|
|
183
|
+
def __init__(__self__, *,
|
|
184
|
+
azure_bare_metal_instance_size: Optional[str] = None,
|
|
185
|
+
hardware_type: Optional[str] = None):
|
|
186
|
+
"""
|
|
187
|
+
Specifies the hardware settings for the Azure Bare Metal Instance.
|
|
188
|
+
:param str azure_bare_metal_instance_size: Specifies the Azure Bare Metal Instance SKU.
|
|
189
|
+
:param str hardware_type: Name of the hardware type (vendor and/or their product name)
|
|
190
|
+
"""
|
|
191
|
+
if azure_bare_metal_instance_size is not None:
|
|
192
|
+
pulumi.set(__self__, "azure_bare_metal_instance_size", azure_bare_metal_instance_size)
|
|
193
|
+
if hardware_type is not None:
|
|
194
|
+
pulumi.set(__self__, "hardware_type", hardware_type)
|
|
195
|
+
|
|
196
|
+
@property
|
|
197
|
+
@pulumi.getter(name="azureBareMetalInstanceSize")
|
|
198
|
+
def azure_bare_metal_instance_size(self) -> Optional[str]:
|
|
199
|
+
"""
|
|
200
|
+
Specifies the Azure Bare Metal Instance SKU.
|
|
201
|
+
"""
|
|
202
|
+
return pulumi.get(self, "azure_bare_metal_instance_size")
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
@pulumi.getter(name="hardwareType")
|
|
206
|
+
def hardware_type(self) -> Optional[str]:
|
|
207
|
+
"""
|
|
208
|
+
Name of the hardware type (vendor and/or their product name)
|
|
209
|
+
"""
|
|
210
|
+
return pulumi.get(self, "hardware_type")
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
@pulumi.output_type
|
|
214
|
+
class NetworkInterfaceResponse(dict):
|
|
215
|
+
"""
|
|
216
|
+
Specifies the network interfaces of a bare metal resource.
|
|
217
|
+
"""
|
|
218
|
+
@staticmethod
|
|
219
|
+
def __key_warning(key: str):
|
|
220
|
+
suggest = None
|
|
221
|
+
if key == "ipAddress":
|
|
222
|
+
suggest = "ip_address"
|
|
223
|
+
|
|
224
|
+
if suggest:
|
|
225
|
+
pulumi.log.warn(f"Key '{key}' not found in NetworkInterfaceResponse. Access the value via the '{suggest}' property getter instead.")
|
|
226
|
+
|
|
227
|
+
def __getitem__(self, key: str) -> Any:
|
|
228
|
+
NetworkInterfaceResponse.__key_warning(key)
|
|
229
|
+
return super().__getitem__(key)
|
|
230
|
+
|
|
231
|
+
def get(self, key: str, default = None) -> Any:
|
|
232
|
+
NetworkInterfaceResponse.__key_warning(key)
|
|
233
|
+
return super().get(key, default)
|
|
234
|
+
|
|
235
|
+
def __init__(__self__, *,
|
|
236
|
+
ip_address: Optional[str] = None):
|
|
237
|
+
"""
|
|
238
|
+
Specifies the network interfaces of a bare metal resource.
|
|
239
|
+
:param str ip_address: Specifies the IP address of the network interface.
|
|
240
|
+
"""
|
|
241
|
+
if ip_address is not None:
|
|
242
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
|
243
|
+
|
|
244
|
+
@property
|
|
245
|
+
@pulumi.getter(name="ipAddress")
|
|
246
|
+
def ip_address(self) -> Optional[str]:
|
|
247
|
+
"""
|
|
248
|
+
Specifies the IP address of the network interface.
|
|
249
|
+
"""
|
|
250
|
+
return pulumi.get(self, "ip_address")
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
@pulumi.output_type
|
|
254
|
+
class NetworkProfileResponse(dict):
|
|
255
|
+
"""
|
|
256
|
+
Specifies the network settings for the Azure Bare Metal Instance disks.
|
|
257
|
+
"""
|
|
258
|
+
@staticmethod
|
|
259
|
+
def __key_warning(key: str):
|
|
260
|
+
suggest = None
|
|
261
|
+
if key == "circuitId":
|
|
262
|
+
suggest = "circuit_id"
|
|
263
|
+
elif key == "networkInterfaces":
|
|
264
|
+
suggest = "network_interfaces"
|
|
265
|
+
|
|
266
|
+
if suggest:
|
|
267
|
+
pulumi.log.warn(f"Key '{key}' not found in NetworkProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
268
|
+
|
|
269
|
+
def __getitem__(self, key: str) -> Any:
|
|
270
|
+
NetworkProfileResponse.__key_warning(key)
|
|
271
|
+
return super().__getitem__(key)
|
|
272
|
+
|
|
273
|
+
def get(self, key: str, default = None) -> Any:
|
|
274
|
+
NetworkProfileResponse.__key_warning(key)
|
|
275
|
+
return super().get(key, default)
|
|
276
|
+
|
|
277
|
+
def __init__(__self__, *,
|
|
278
|
+
circuit_id: Optional[str] = None,
|
|
279
|
+
network_interfaces: Optional[Sequence['outputs.NetworkInterfaceResponse']] = None):
|
|
280
|
+
"""
|
|
281
|
+
Specifies the network settings for the Azure Bare Metal Instance disks.
|
|
282
|
+
:param str circuit_id: Specifies the circuit id for connecting to express route.
|
|
283
|
+
:param Sequence['NetworkInterfaceResponse'] network_interfaces: Specifies the network interfaces for the Azure Bare Metal Instance.
|
|
284
|
+
"""
|
|
285
|
+
if circuit_id is not None:
|
|
286
|
+
pulumi.set(__self__, "circuit_id", circuit_id)
|
|
287
|
+
if network_interfaces is not None:
|
|
288
|
+
pulumi.set(__self__, "network_interfaces", network_interfaces)
|
|
289
|
+
|
|
290
|
+
@property
|
|
291
|
+
@pulumi.getter(name="circuitId")
|
|
292
|
+
def circuit_id(self) -> Optional[str]:
|
|
293
|
+
"""
|
|
294
|
+
Specifies the circuit id for connecting to express route.
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "circuit_id")
|
|
297
|
+
|
|
298
|
+
@property
|
|
299
|
+
@pulumi.getter(name="networkInterfaces")
|
|
300
|
+
def network_interfaces(self) -> Optional[Sequence['outputs.NetworkInterfaceResponse']]:
|
|
301
|
+
"""
|
|
302
|
+
Specifies the network interfaces for the Azure Bare Metal Instance.
|
|
303
|
+
"""
|
|
304
|
+
return pulumi.get(self, "network_interfaces")
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
@pulumi.output_type
|
|
308
|
+
class OSProfileResponse(dict):
|
|
309
|
+
"""
|
|
310
|
+
Specifies the operating system settings for the Azure Bare Metal instance.
|
|
311
|
+
"""
|
|
312
|
+
@staticmethod
|
|
313
|
+
def __key_warning(key: str):
|
|
314
|
+
suggest = None
|
|
315
|
+
if key == "computerName":
|
|
316
|
+
suggest = "computer_name"
|
|
317
|
+
elif key == "osType":
|
|
318
|
+
suggest = "os_type"
|
|
319
|
+
elif key == "sshPublicKey":
|
|
320
|
+
suggest = "ssh_public_key"
|
|
321
|
+
|
|
322
|
+
if suggest:
|
|
323
|
+
pulumi.log.warn(f"Key '{key}' not found in OSProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
324
|
+
|
|
325
|
+
def __getitem__(self, key: str) -> Any:
|
|
326
|
+
OSProfileResponse.__key_warning(key)
|
|
327
|
+
return super().__getitem__(key)
|
|
328
|
+
|
|
329
|
+
def get(self, key: str, default = None) -> Any:
|
|
330
|
+
OSProfileResponse.__key_warning(key)
|
|
331
|
+
return super().get(key, default)
|
|
332
|
+
|
|
333
|
+
def __init__(__self__, *,
|
|
334
|
+
computer_name: Optional[str] = None,
|
|
335
|
+
os_type: Optional[str] = None,
|
|
336
|
+
ssh_public_key: Optional[str] = None,
|
|
337
|
+
version: Optional[str] = None):
|
|
338
|
+
"""
|
|
339
|
+
Specifies the operating system settings for the Azure Bare Metal instance.
|
|
340
|
+
:param str computer_name: Specifies the host OS name of the Azure Bare Metal instance.
|
|
341
|
+
:param str os_type: This property allows you to specify the type of the OS.
|
|
342
|
+
:param str ssh_public_key: Specifies the SSH public key used to access the operating system.
|
|
343
|
+
:param str version: Specifies version of operating system.
|
|
344
|
+
"""
|
|
345
|
+
if computer_name is not None:
|
|
346
|
+
pulumi.set(__self__, "computer_name", computer_name)
|
|
347
|
+
if os_type is not None:
|
|
348
|
+
pulumi.set(__self__, "os_type", os_type)
|
|
349
|
+
if ssh_public_key is not None:
|
|
350
|
+
pulumi.set(__self__, "ssh_public_key", ssh_public_key)
|
|
351
|
+
if version is not None:
|
|
352
|
+
pulumi.set(__self__, "version", version)
|
|
353
|
+
|
|
354
|
+
@property
|
|
355
|
+
@pulumi.getter(name="computerName")
|
|
356
|
+
def computer_name(self) -> Optional[str]:
|
|
357
|
+
"""
|
|
358
|
+
Specifies the host OS name of the Azure Bare Metal instance.
|
|
359
|
+
"""
|
|
360
|
+
return pulumi.get(self, "computer_name")
|
|
361
|
+
|
|
362
|
+
@property
|
|
363
|
+
@pulumi.getter(name="osType")
|
|
364
|
+
def os_type(self) -> Optional[str]:
|
|
365
|
+
"""
|
|
366
|
+
This property allows you to specify the type of the OS.
|
|
367
|
+
"""
|
|
368
|
+
return pulumi.get(self, "os_type")
|
|
369
|
+
|
|
370
|
+
@property
|
|
371
|
+
@pulumi.getter(name="sshPublicKey")
|
|
372
|
+
def ssh_public_key(self) -> Optional[str]:
|
|
373
|
+
"""
|
|
374
|
+
Specifies the SSH public key used to access the operating system.
|
|
375
|
+
"""
|
|
376
|
+
return pulumi.get(self, "ssh_public_key")
|
|
377
|
+
|
|
378
|
+
@property
|
|
379
|
+
@pulumi.getter
|
|
380
|
+
def version(self) -> Optional[str]:
|
|
381
|
+
"""
|
|
382
|
+
Specifies version of operating system.
|
|
383
|
+
"""
|
|
384
|
+
return pulumi.get(self, "version")
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
@pulumi.output_type
|
|
388
|
+
class StorageBillingPropertiesResponse(dict):
|
|
389
|
+
"""
|
|
390
|
+
Describes the billing related details of the AzureBareMetalStorageInstance.
|
|
391
|
+
"""
|
|
392
|
+
@staticmethod
|
|
393
|
+
def __key_warning(key: str):
|
|
394
|
+
suggest = None
|
|
395
|
+
if key == "azureBareMetalStorageInstanceSize":
|
|
396
|
+
suggest = "azure_bare_metal_storage_instance_size"
|
|
397
|
+
elif key == "billingMode":
|
|
398
|
+
suggest = "billing_mode"
|
|
399
|
+
|
|
400
|
+
if suggest:
|
|
401
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageBillingPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
402
|
+
|
|
403
|
+
def __getitem__(self, key: str) -> Any:
|
|
404
|
+
StorageBillingPropertiesResponse.__key_warning(key)
|
|
405
|
+
return super().__getitem__(key)
|
|
406
|
+
|
|
407
|
+
def get(self, key: str, default = None) -> Any:
|
|
408
|
+
StorageBillingPropertiesResponse.__key_warning(key)
|
|
409
|
+
return super().get(key, default)
|
|
410
|
+
|
|
411
|
+
def __init__(__self__, *,
|
|
412
|
+
azure_bare_metal_storage_instance_size: Optional[str] = None,
|
|
413
|
+
billing_mode: Optional[str] = None):
|
|
414
|
+
"""
|
|
415
|
+
Describes the billing related details of the AzureBareMetalStorageInstance.
|
|
416
|
+
:param str azure_bare_metal_storage_instance_size: the SKU type that is provisioned
|
|
417
|
+
:param str billing_mode: the billing mode for the storage instance
|
|
418
|
+
"""
|
|
419
|
+
if azure_bare_metal_storage_instance_size is not None:
|
|
420
|
+
pulumi.set(__self__, "azure_bare_metal_storage_instance_size", azure_bare_metal_storage_instance_size)
|
|
421
|
+
if billing_mode is not None:
|
|
422
|
+
pulumi.set(__self__, "billing_mode", billing_mode)
|
|
423
|
+
|
|
424
|
+
@property
|
|
425
|
+
@pulumi.getter(name="azureBareMetalStorageInstanceSize")
|
|
426
|
+
def azure_bare_metal_storage_instance_size(self) -> Optional[str]:
|
|
427
|
+
"""
|
|
428
|
+
the SKU type that is provisioned
|
|
429
|
+
"""
|
|
430
|
+
return pulumi.get(self, "azure_bare_metal_storage_instance_size")
|
|
431
|
+
|
|
432
|
+
@property
|
|
433
|
+
@pulumi.getter(name="billingMode")
|
|
434
|
+
def billing_mode(self) -> Optional[str]:
|
|
435
|
+
"""
|
|
436
|
+
the billing mode for the storage instance
|
|
437
|
+
"""
|
|
438
|
+
return pulumi.get(self, "billing_mode")
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
@pulumi.output_type
|
|
442
|
+
class StorageProfileResponse(dict):
|
|
443
|
+
"""
|
|
444
|
+
Specifies the storage settings for the Azure Bare Metal instance disks.
|
|
445
|
+
"""
|
|
446
|
+
@staticmethod
|
|
447
|
+
def __key_warning(key: str):
|
|
448
|
+
suggest = None
|
|
449
|
+
if key == "nfsIpAddress":
|
|
450
|
+
suggest = "nfs_ip_address"
|
|
451
|
+
elif key == "osDisks":
|
|
452
|
+
suggest = "os_disks"
|
|
453
|
+
|
|
454
|
+
if suggest:
|
|
455
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
456
|
+
|
|
457
|
+
def __getitem__(self, key: str) -> Any:
|
|
458
|
+
StorageProfileResponse.__key_warning(key)
|
|
459
|
+
return super().__getitem__(key)
|
|
460
|
+
|
|
461
|
+
def get(self, key: str, default = None) -> Any:
|
|
462
|
+
StorageProfileResponse.__key_warning(key)
|
|
463
|
+
return super().get(key, default)
|
|
464
|
+
|
|
465
|
+
def __init__(__self__, *,
|
|
466
|
+
nfs_ip_address: Optional[str] = None,
|
|
467
|
+
os_disks: Optional[Sequence['outputs.DiskResponse']] = None):
|
|
468
|
+
"""
|
|
469
|
+
Specifies the storage settings for the Azure Bare Metal instance disks.
|
|
470
|
+
:param str nfs_ip_address: IP Address to connect to storage.
|
|
471
|
+
:param Sequence['DiskResponse'] os_disks: Specifies information about the operating system disk used by bare metal instance.
|
|
472
|
+
"""
|
|
473
|
+
if nfs_ip_address is not None:
|
|
474
|
+
pulumi.set(__self__, "nfs_ip_address", nfs_ip_address)
|
|
475
|
+
if os_disks is not None:
|
|
476
|
+
pulumi.set(__self__, "os_disks", os_disks)
|
|
477
|
+
|
|
478
|
+
@property
|
|
479
|
+
@pulumi.getter(name="nfsIpAddress")
|
|
480
|
+
def nfs_ip_address(self) -> Optional[str]:
|
|
481
|
+
"""
|
|
482
|
+
IP Address to connect to storage.
|
|
483
|
+
"""
|
|
484
|
+
return pulumi.get(self, "nfs_ip_address")
|
|
485
|
+
|
|
486
|
+
@property
|
|
487
|
+
@pulumi.getter(name="osDisks")
|
|
488
|
+
def os_disks(self) -> Optional[Sequence['outputs.DiskResponse']]:
|
|
489
|
+
"""
|
|
490
|
+
Specifies information about the operating system disk used by bare metal instance.
|
|
491
|
+
"""
|
|
492
|
+
return pulumi.get(self, "os_disks")
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
@pulumi.output_type
|
|
496
|
+
class StoragePropertiesResponse(dict):
|
|
497
|
+
"""
|
|
498
|
+
described the storage properties of the azure bare metal storage instance
|
|
499
|
+
"""
|
|
500
|
+
@staticmethod
|
|
501
|
+
def __key_warning(key: str):
|
|
502
|
+
suggest = None
|
|
503
|
+
if key == "hardwareType":
|
|
504
|
+
suggest = "hardware_type"
|
|
505
|
+
elif key == "offeringType":
|
|
506
|
+
suggest = "offering_type"
|
|
507
|
+
elif key == "provisioningState":
|
|
508
|
+
suggest = "provisioning_state"
|
|
509
|
+
elif key == "storageBillingProperties":
|
|
510
|
+
suggest = "storage_billing_properties"
|
|
511
|
+
elif key == "storageType":
|
|
512
|
+
suggest = "storage_type"
|
|
513
|
+
elif key == "workloadType":
|
|
514
|
+
suggest = "workload_type"
|
|
515
|
+
|
|
516
|
+
if suggest:
|
|
517
|
+
pulumi.log.warn(f"Key '{key}' not found in StoragePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
518
|
+
|
|
519
|
+
def __getitem__(self, key: str) -> Any:
|
|
520
|
+
StoragePropertiesResponse.__key_warning(key)
|
|
521
|
+
return super().__getitem__(key)
|
|
522
|
+
|
|
523
|
+
def get(self, key: str, default = None) -> Any:
|
|
524
|
+
StoragePropertiesResponse.__key_warning(key)
|
|
525
|
+
return super().get(key, default)
|
|
526
|
+
|
|
527
|
+
def __init__(__self__, *,
|
|
528
|
+
generation: Optional[str] = None,
|
|
529
|
+
hardware_type: Optional[str] = None,
|
|
530
|
+
offering_type: Optional[str] = None,
|
|
531
|
+
provisioning_state: Optional[str] = None,
|
|
532
|
+
storage_billing_properties: Optional['outputs.StorageBillingPropertiesResponse'] = None,
|
|
533
|
+
storage_type: Optional[str] = None,
|
|
534
|
+
workload_type: Optional[str] = None):
|
|
535
|
+
"""
|
|
536
|
+
described the storage properties of the azure bare metal storage instance
|
|
537
|
+
:param str generation: the kind of storage instance
|
|
538
|
+
:param str hardware_type: the hardware type of the storage instance
|
|
539
|
+
:param str offering_type: the offering type for which the resource is getting provisioned
|
|
540
|
+
:param str provisioning_state: State of provisioning of the AzureBareMetalStorageInstance
|
|
541
|
+
:param 'StorageBillingPropertiesResponse' storage_billing_properties: the billing related information for the resource
|
|
542
|
+
:param str storage_type: the storage protocol for which the resource is getting provisioned
|
|
543
|
+
:param 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[str]:
|
|
563
|
+
"""
|
|
564
|
+
the kind of storage instance
|
|
565
|
+
"""
|
|
566
|
+
return pulumi.get(self, "generation")
|
|
567
|
+
|
|
568
|
+
@property
|
|
569
|
+
@pulumi.getter(name="hardwareType")
|
|
570
|
+
def hardware_type(self) -> Optional[str]:
|
|
571
|
+
"""
|
|
572
|
+
the hardware type of the storage instance
|
|
573
|
+
"""
|
|
574
|
+
return pulumi.get(self, "hardware_type")
|
|
575
|
+
|
|
576
|
+
@property
|
|
577
|
+
@pulumi.getter(name="offeringType")
|
|
578
|
+
def offering_type(self) -> Optional[str]:
|
|
579
|
+
"""
|
|
580
|
+
the offering type for which the resource is getting provisioned
|
|
581
|
+
"""
|
|
582
|
+
return pulumi.get(self, "offering_type")
|
|
583
|
+
|
|
584
|
+
@property
|
|
585
|
+
@pulumi.getter(name="provisioningState")
|
|
586
|
+
def provisioning_state(self) -> Optional[str]:
|
|
587
|
+
"""
|
|
588
|
+
State of provisioning of the AzureBareMetalStorageInstance
|
|
589
|
+
"""
|
|
590
|
+
return pulumi.get(self, "provisioning_state")
|
|
591
|
+
|
|
592
|
+
@property
|
|
593
|
+
@pulumi.getter(name="storageBillingProperties")
|
|
594
|
+
def storage_billing_properties(self) -> Optional['outputs.StorageBillingPropertiesResponse']:
|
|
595
|
+
"""
|
|
596
|
+
the billing related information for the resource
|
|
597
|
+
"""
|
|
598
|
+
return pulumi.get(self, "storage_billing_properties")
|
|
599
|
+
|
|
600
|
+
@property
|
|
601
|
+
@pulumi.getter(name="storageType")
|
|
602
|
+
def storage_type(self) -> Optional[str]:
|
|
603
|
+
"""
|
|
604
|
+
the storage protocol for which the resource is getting provisioned
|
|
605
|
+
"""
|
|
606
|
+
return pulumi.get(self, "storage_type")
|
|
607
|
+
|
|
608
|
+
@property
|
|
609
|
+
@pulumi.getter(name="workloadType")
|
|
610
|
+
def workload_type(self) -> Optional[str]:
|
|
611
|
+
"""
|
|
612
|
+
the workload for which the resource is getting provisioned
|
|
613
|
+
"""
|
|
614
|
+
return pulumi.get(self, "workload_type")
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
@pulumi.output_type
|
|
618
|
+
class SystemDataResponse(dict):
|
|
619
|
+
"""
|
|
620
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
621
|
+
"""
|
|
622
|
+
@staticmethod
|
|
623
|
+
def __key_warning(key: str):
|
|
624
|
+
suggest = None
|
|
625
|
+
if key == "createdAt":
|
|
626
|
+
suggest = "created_at"
|
|
627
|
+
elif key == "createdBy":
|
|
628
|
+
suggest = "created_by"
|
|
629
|
+
elif key == "createdByType":
|
|
630
|
+
suggest = "created_by_type"
|
|
631
|
+
elif key == "lastModifiedAt":
|
|
632
|
+
suggest = "last_modified_at"
|
|
633
|
+
elif key == "lastModifiedBy":
|
|
634
|
+
suggest = "last_modified_by"
|
|
635
|
+
elif key == "lastModifiedByType":
|
|
636
|
+
suggest = "last_modified_by_type"
|
|
637
|
+
|
|
638
|
+
if suggest:
|
|
639
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
640
|
+
|
|
641
|
+
def __getitem__(self, key: str) -> Any:
|
|
642
|
+
SystemDataResponse.__key_warning(key)
|
|
643
|
+
return super().__getitem__(key)
|
|
644
|
+
|
|
645
|
+
def get(self, key: str, default = None) -> Any:
|
|
646
|
+
SystemDataResponse.__key_warning(key)
|
|
647
|
+
return super().get(key, default)
|
|
648
|
+
|
|
649
|
+
def __init__(__self__, *,
|
|
650
|
+
created_at: Optional[str] = None,
|
|
651
|
+
created_by: Optional[str] = None,
|
|
652
|
+
created_by_type: Optional[str] = None,
|
|
653
|
+
last_modified_at: Optional[str] = None,
|
|
654
|
+
last_modified_by: Optional[str] = None,
|
|
655
|
+
last_modified_by_type: Optional[str] = None):
|
|
656
|
+
"""
|
|
657
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
658
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
659
|
+
:param str created_by: The identity that created the resource.
|
|
660
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
661
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
662
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
663
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
664
|
+
"""
|
|
665
|
+
if created_at is not None:
|
|
666
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
667
|
+
if created_by is not None:
|
|
668
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
669
|
+
if created_by_type is not None:
|
|
670
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
671
|
+
if last_modified_at is not None:
|
|
672
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
673
|
+
if last_modified_by is not None:
|
|
674
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
675
|
+
if last_modified_by_type is not None:
|
|
676
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
677
|
+
|
|
678
|
+
@property
|
|
679
|
+
@pulumi.getter(name="createdAt")
|
|
680
|
+
def created_at(self) -> Optional[str]:
|
|
681
|
+
"""
|
|
682
|
+
The timestamp of resource creation (UTC).
|
|
683
|
+
"""
|
|
684
|
+
return pulumi.get(self, "created_at")
|
|
685
|
+
|
|
686
|
+
@property
|
|
687
|
+
@pulumi.getter(name="createdBy")
|
|
688
|
+
def created_by(self) -> Optional[str]:
|
|
689
|
+
"""
|
|
690
|
+
The identity that created the resource.
|
|
691
|
+
"""
|
|
692
|
+
return pulumi.get(self, "created_by")
|
|
693
|
+
|
|
694
|
+
@property
|
|
695
|
+
@pulumi.getter(name="createdByType")
|
|
696
|
+
def created_by_type(self) -> Optional[str]:
|
|
697
|
+
"""
|
|
698
|
+
The type of identity that created the resource.
|
|
699
|
+
"""
|
|
700
|
+
return pulumi.get(self, "created_by_type")
|
|
701
|
+
|
|
702
|
+
@property
|
|
703
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
704
|
+
def last_modified_at(self) -> Optional[str]:
|
|
705
|
+
"""
|
|
706
|
+
The timestamp of resource last modification (UTC)
|
|
707
|
+
"""
|
|
708
|
+
return pulumi.get(self, "last_modified_at")
|
|
709
|
+
|
|
710
|
+
@property
|
|
711
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
712
|
+
def last_modified_by(self) -> Optional[str]:
|
|
713
|
+
"""
|
|
714
|
+
The identity that last modified the resource.
|
|
715
|
+
"""
|
|
716
|
+
return pulumi.get(self, "last_modified_by")
|
|
717
|
+
|
|
718
|
+
@property
|
|
719
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
720
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
721
|
+
"""
|
|
722
|
+
The type of identity that last modified the resource.
|
|
723
|
+
"""
|
|
724
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
725
|
+
|
|
726
|
+
|