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.
- 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.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/RECORD +101 -52
- {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,405 @@
|
|
|
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
|
+
'ApiEntityReferenceArgs',
|
|
20
|
+
'ApiEntityReferenceArgsDict',
|
|
21
|
+
'CloudHsmClusterSkuArgs',
|
|
22
|
+
'CloudHsmClusterSkuArgsDict',
|
|
23
|
+
'ManagedServiceIdentityArgs',
|
|
24
|
+
'ManagedServiceIdentityArgsDict',
|
|
25
|
+
'NetworkInterfaceArgs',
|
|
26
|
+
'NetworkInterfaceArgsDict',
|
|
27
|
+
'NetworkProfileArgs',
|
|
28
|
+
'NetworkProfileArgsDict',
|
|
29
|
+
'PrivateLinkServiceConnectionStateArgs',
|
|
30
|
+
'PrivateLinkServiceConnectionStateArgsDict',
|
|
31
|
+
'SkuArgs',
|
|
32
|
+
'SkuArgsDict',
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
MYPY = False
|
|
36
|
+
|
|
37
|
+
if not MYPY:
|
|
38
|
+
class ApiEntityReferenceArgsDict(TypedDict):
|
|
39
|
+
"""
|
|
40
|
+
The API entity reference.
|
|
41
|
+
"""
|
|
42
|
+
resource_id: NotRequired[pulumi.Input[str]]
|
|
43
|
+
"""
|
|
44
|
+
The Azure resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
45
|
+
"""
|
|
46
|
+
elif False:
|
|
47
|
+
ApiEntityReferenceArgsDict: TypeAlias = Mapping[str, Any]
|
|
48
|
+
|
|
49
|
+
@pulumi.input_type
|
|
50
|
+
class ApiEntityReferenceArgs:
|
|
51
|
+
def __init__(__self__, *,
|
|
52
|
+
resource_id: Optional[pulumi.Input[str]] = None):
|
|
53
|
+
"""
|
|
54
|
+
The API entity reference.
|
|
55
|
+
:param pulumi.Input[str] resource_id: The Azure resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
56
|
+
"""
|
|
57
|
+
if resource_id is not None:
|
|
58
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="resourceId")
|
|
62
|
+
def resource_id(self) -> Optional[pulumi.Input[str]]:
|
|
63
|
+
"""
|
|
64
|
+
The Azure resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "resource_id")
|
|
67
|
+
|
|
68
|
+
@resource_id.setter
|
|
69
|
+
def resource_id(self, value: Optional[pulumi.Input[str]]):
|
|
70
|
+
pulumi.set(self, "resource_id", value)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
if not MYPY:
|
|
74
|
+
class CloudHsmClusterSkuArgsDict(TypedDict):
|
|
75
|
+
"""
|
|
76
|
+
Cloud Hsm Cluster SKU information
|
|
77
|
+
"""
|
|
78
|
+
family: pulumi.Input[Union[str, 'CloudHsmClusterSkuFamily']]
|
|
79
|
+
"""
|
|
80
|
+
Sku family of the Cloud HSM Cluster
|
|
81
|
+
"""
|
|
82
|
+
name: pulumi.Input['CloudHsmClusterSkuName']
|
|
83
|
+
"""
|
|
84
|
+
Sku name of the Cloud HSM Cluster
|
|
85
|
+
"""
|
|
86
|
+
capacity: NotRequired[pulumi.Input[int]]
|
|
87
|
+
"""
|
|
88
|
+
Sku capacity
|
|
89
|
+
"""
|
|
90
|
+
elif False:
|
|
91
|
+
CloudHsmClusterSkuArgsDict: TypeAlias = Mapping[str, Any]
|
|
92
|
+
|
|
93
|
+
@pulumi.input_type
|
|
94
|
+
class CloudHsmClusterSkuArgs:
|
|
95
|
+
def __init__(__self__, *,
|
|
96
|
+
family: pulumi.Input[Union[str, 'CloudHsmClusterSkuFamily']],
|
|
97
|
+
name: pulumi.Input['CloudHsmClusterSkuName'],
|
|
98
|
+
capacity: Optional[pulumi.Input[int]] = None):
|
|
99
|
+
"""
|
|
100
|
+
Cloud Hsm Cluster SKU information
|
|
101
|
+
:param pulumi.Input[Union[str, 'CloudHsmClusterSkuFamily']] family: Sku family of the Cloud HSM Cluster
|
|
102
|
+
:param pulumi.Input['CloudHsmClusterSkuName'] name: Sku name of the Cloud HSM Cluster
|
|
103
|
+
:param pulumi.Input[int] capacity: Sku capacity
|
|
104
|
+
"""
|
|
105
|
+
pulumi.set(__self__, "family", family)
|
|
106
|
+
pulumi.set(__self__, "name", name)
|
|
107
|
+
if capacity is not None:
|
|
108
|
+
pulumi.set(__self__, "capacity", capacity)
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def family(self) -> pulumi.Input[Union[str, 'CloudHsmClusterSkuFamily']]:
|
|
113
|
+
"""
|
|
114
|
+
Sku family of the Cloud HSM Cluster
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "family")
|
|
117
|
+
|
|
118
|
+
@family.setter
|
|
119
|
+
def family(self, value: pulumi.Input[Union[str, 'CloudHsmClusterSkuFamily']]):
|
|
120
|
+
pulumi.set(self, "family", value)
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter
|
|
124
|
+
def name(self) -> pulumi.Input['CloudHsmClusterSkuName']:
|
|
125
|
+
"""
|
|
126
|
+
Sku name of the Cloud HSM Cluster
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "name")
|
|
129
|
+
|
|
130
|
+
@name.setter
|
|
131
|
+
def name(self, value: pulumi.Input['CloudHsmClusterSkuName']):
|
|
132
|
+
pulumi.set(self, "name", value)
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def capacity(self) -> Optional[pulumi.Input[int]]:
|
|
137
|
+
"""
|
|
138
|
+
Sku capacity
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "capacity")
|
|
141
|
+
|
|
142
|
+
@capacity.setter
|
|
143
|
+
def capacity(self, value: Optional[pulumi.Input[int]]):
|
|
144
|
+
pulumi.set(self, "capacity", value)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
if not MYPY:
|
|
148
|
+
class ManagedServiceIdentityArgsDict(TypedDict):
|
|
149
|
+
"""
|
|
150
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
151
|
+
"""
|
|
152
|
+
type: pulumi.Input[Union[str, 'ManagedServiceIdentityType']]
|
|
153
|
+
"""
|
|
154
|
+
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
155
|
+
"""
|
|
156
|
+
user_assigned_identities: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
157
|
+
"""
|
|
158
|
+
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.
|
|
159
|
+
"""
|
|
160
|
+
elif False:
|
|
161
|
+
ManagedServiceIdentityArgsDict: TypeAlias = Mapping[str, Any]
|
|
162
|
+
|
|
163
|
+
@pulumi.input_type
|
|
164
|
+
class ManagedServiceIdentityArgs:
|
|
165
|
+
def __init__(__self__, *,
|
|
166
|
+
type: pulumi.Input[Union[str, 'ManagedServiceIdentityType']],
|
|
167
|
+
user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
168
|
+
"""
|
|
169
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
170
|
+
:param pulumi.Input[Union[str, 'ManagedServiceIdentityType']] type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
171
|
+
: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.
|
|
172
|
+
"""
|
|
173
|
+
pulumi.set(__self__, "type", type)
|
|
174
|
+
if user_assigned_identities is not None:
|
|
175
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
176
|
+
|
|
177
|
+
@property
|
|
178
|
+
@pulumi.getter
|
|
179
|
+
def type(self) -> pulumi.Input[Union[str, 'ManagedServiceIdentityType']]:
|
|
180
|
+
"""
|
|
181
|
+
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
182
|
+
"""
|
|
183
|
+
return pulumi.get(self, "type")
|
|
184
|
+
|
|
185
|
+
@type.setter
|
|
186
|
+
def type(self, value: pulumi.Input[Union[str, 'ManagedServiceIdentityType']]):
|
|
187
|
+
pulumi.set(self, "type", value)
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
191
|
+
def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
192
|
+
"""
|
|
193
|
+
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.
|
|
194
|
+
"""
|
|
195
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
196
|
+
|
|
197
|
+
@user_assigned_identities.setter
|
|
198
|
+
def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
199
|
+
pulumi.set(self, "user_assigned_identities", value)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
if not MYPY:
|
|
203
|
+
class NetworkInterfaceArgsDict(TypedDict):
|
|
204
|
+
"""
|
|
205
|
+
The network interface definition.
|
|
206
|
+
"""
|
|
207
|
+
private_ip_address: NotRequired[pulumi.Input[str]]
|
|
208
|
+
"""
|
|
209
|
+
Private Ip address of the interface
|
|
210
|
+
"""
|
|
211
|
+
elif False:
|
|
212
|
+
NetworkInterfaceArgsDict: TypeAlias = Mapping[str, Any]
|
|
213
|
+
|
|
214
|
+
@pulumi.input_type
|
|
215
|
+
class NetworkInterfaceArgs:
|
|
216
|
+
def __init__(__self__, *,
|
|
217
|
+
private_ip_address: Optional[pulumi.Input[str]] = None):
|
|
218
|
+
"""
|
|
219
|
+
The network interface definition.
|
|
220
|
+
:param pulumi.Input[str] private_ip_address: Private Ip address of the interface
|
|
221
|
+
"""
|
|
222
|
+
if private_ip_address is not None:
|
|
223
|
+
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
224
|
+
|
|
225
|
+
@property
|
|
226
|
+
@pulumi.getter(name="privateIpAddress")
|
|
227
|
+
def private_ip_address(self) -> Optional[pulumi.Input[str]]:
|
|
228
|
+
"""
|
|
229
|
+
Private Ip address of the interface
|
|
230
|
+
"""
|
|
231
|
+
return pulumi.get(self, "private_ip_address")
|
|
232
|
+
|
|
233
|
+
@private_ip_address.setter
|
|
234
|
+
def private_ip_address(self, value: Optional[pulumi.Input[str]]):
|
|
235
|
+
pulumi.set(self, "private_ip_address", value)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
if not MYPY:
|
|
239
|
+
class NetworkProfileArgsDict(TypedDict):
|
|
240
|
+
"""
|
|
241
|
+
The network profile definition.
|
|
242
|
+
"""
|
|
243
|
+
network_interfaces: NotRequired[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgsDict']]]]
|
|
244
|
+
"""
|
|
245
|
+
Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.
|
|
246
|
+
"""
|
|
247
|
+
subnet: NotRequired[pulumi.Input['ApiEntityReferenceArgsDict']]
|
|
248
|
+
"""
|
|
249
|
+
Specifies the identifier of the subnet.
|
|
250
|
+
"""
|
|
251
|
+
elif False:
|
|
252
|
+
NetworkProfileArgsDict: TypeAlias = Mapping[str, Any]
|
|
253
|
+
|
|
254
|
+
@pulumi.input_type
|
|
255
|
+
class NetworkProfileArgs:
|
|
256
|
+
def __init__(__self__, *,
|
|
257
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]]] = None,
|
|
258
|
+
subnet: Optional[pulumi.Input['ApiEntityReferenceArgs']] = None):
|
|
259
|
+
"""
|
|
260
|
+
The network profile definition.
|
|
261
|
+
:param pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]] network_interfaces: Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.
|
|
262
|
+
:param pulumi.Input['ApiEntityReferenceArgs'] subnet: Specifies the identifier of the subnet.
|
|
263
|
+
"""
|
|
264
|
+
if network_interfaces is not None:
|
|
265
|
+
pulumi.set(__self__, "network_interfaces", network_interfaces)
|
|
266
|
+
if subnet is not None:
|
|
267
|
+
pulumi.set(__self__, "subnet", subnet)
|
|
268
|
+
|
|
269
|
+
@property
|
|
270
|
+
@pulumi.getter(name="networkInterfaces")
|
|
271
|
+
def network_interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]]]:
|
|
272
|
+
"""
|
|
273
|
+
Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.
|
|
274
|
+
"""
|
|
275
|
+
return pulumi.get(self, "network_interfaces")
|
|
276
|
+
|
|
277
|
+
@network_interfaces.setter
|
|
278
|
+
def network_interfaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkInterfaceArgs']]]]):
|
|
279
|
+
pulumi.set(self, "network_interfaces", value)
|
|
280
|
+
|
|
281
|
+
@property
|
|
282
|
+
@pulumi.getter
|
|
283
|
+
def subnet(self) -> Optional[pulumi.Input['ApiEntityReferenceArgs']]:
|
|
284
|
+
"""
|
|
285
|
+
Specifies the identifier of the subnet.
|
|
286
|
+
"""
|
|
287
|
+
return pulumi.get(self, "subnet")
|
|
288
|
+
|
|
289
|
+
@subnet.setter
|
|
290
|
+
def subnet(self, value: Optional[pulumi.Input['ApiEntityReferenceArgs']]):
|
|
291
|
+
pulumi.set(self, "subnet", value)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
if not MYPY:
|
|
295
|
+
class PrivateLinkServiceConnectionStateArgsDict(TypedDict):
|
|
296
|
+
"""
|
|
297
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
298
|
+
"""
|
|
299
|
+
actions_required: NotRequired[pulumi.Input[str]]
|
|
300
|
+
"""
|
|
301
|
+
A message indicating if changes on the service provider require any updates on the consumer.
|
|
302
|
+
"""
|
|
303
|
+
description: NotRequired[pulumi.Input[str]]
|
|
304
|
+
"""
|
|
305
|
+
The reason for approval/rejection of the connection.
|
|
306
|
+
"""
|
|
307
|
+
status: NotRequired[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]
|
|
308
|
+
"""
|
|
309
|
+
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
310
|
+
"""
|
|
311
|
+
elif False:
|
|
312
|
+
PrivateLinkServiceConnectionStateArgsDict: TypeAlias = Mapping[str, Any]
|
|
313
|
+
|
|
314
|
+
@pulumi.input_type
|
|
315
|
+
class PrivateLinkServiceConnectionStateArgs:
|
|
316
|
+
def __init__(__self__, *,
|
|
317
|
+
actions_required: Optional[pulumi.Input[str]] = None,
|
|
318
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
319
|
+
status: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]] = None):
|
|
320
|
+
"""
|
|
321
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
322
|
+
:param pulumi.Input[str] actions_required: A message indicating if changes on the service provider require any updates on the consumer.
|
|
323
|
+
:param pulumi.Input[str] description: The reason for approval/rejection of the connection.
|
|
324
|
+
:param pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']] status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
325
|
+
"""
|
|
326
|
+
if actions_required is not None:
|
|
327
|
+
pulumi.set(__self__, "actions_required", actions_required)
|
|
328
|
+
if description is not None:
|
|
329
|
+
pulumi.set(__self__, "description", description)
|
|
330
|
+
if status is not None:
|
|
331
|
+
pulumi.set(__self__, "status", status)
|
|
332
|
+
|
|
333
|
+
@property
|
|
334
|
+
@pulumi.getter(name="actionsRequired")
|
|
335
|
+
def actions_required(self) -> Optional[pulumi.Input[str]]:
|
|
336
|
+
"""
|
|
337
|
+
A message indicating if changes on the service provider require any updates on the consumer.
|
|
338
|
+
"""
|
|
339
|
+
return pulumi.get(self, "actions_required")
|
|
340
|
+
|
|
341
|
+
@actions_required.setter
|
|
342
|
+
def actions_required(self, value: Optional[pulumi.Input[str]]):
|
|
343
|
+
pulumi.set(self, "actions_required", value)
|
|
344
|
+
|
|
345
|
+
@property
|
|
346
|
+
@pulumi.getter
|
|
347
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
|
348
|
+
"""
|
|
349
|
+
The reason for approval/rejection of the connection.
|
|
350
|
+
"""
|
|
351
|
+
return pulumi.get(self, "description")
|
|
352
|
+
|
|
353
|
+
@description.setter
|
|
354
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
|
355
|
+
pulumi.set(self, "description", value)
|
|
356
|
+
|
|
357
|
+
@property
|
|
358
|
+
@pulumi.getter
|
|
359
|
+
def status(self) -> Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]:
|
|
360
|
+
"""
|
|
361
|
+
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
362
|
+
"""
|
|
363
|
+
return pulumi.get(self, "status")
|
|
364
|
+
|
|
365
|
+
@status.setter
|
|
366
|
+
def status(self, value: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]):
|
|
367
|
+
pulumi.set(self, "status", value)
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
if not MYPY:
|
|
371
|
+
class SkuArgsDict(TypedDict):
|
|
372
|
+
"""
|
|
373
|
+
SKU of the dedicated HSM
|
|
374
|
+
"""
|
|
375
|
+
name: NotRequired[pulumi.Input[Union[str, 'SkuName']]]
|
|
376
|
+
"""
|
|
377
|
+
SKU of the dedicated HSM
|
|
378
|
+
"""
|
|
379
|
+
elif False:
|
|
380
|
+
SkuArgsDict: TypeAlias = Mapping[str, Any]
|
|
381
|
+
|
|
382
|
+
@pulumi.input_type
|
|
383
|
+
class SkuArgs:
|
|
384
|
+
def __init__(__self__, *,
|
|
385
|
+
name: Optional[pulumi.Input[Union[str, 'SkuName']]] = None):
|
|
386
|
+
"""
|
|
387
|
+
SKU of the dedicated HSM
|
|
388
|
+
:param pulumi.Input[Union[str, 'SkuName']] name: SKU of the dedicated HSM
|
|
389
|
+
"""
|
|
390
|
+
if name is not None:
|
|
391
|
+
pulumi.set(__self__, "name", name)
|
|
392
|
+
|
|
393
|
+
@property
|
|
394
|
+
@pulumi.getter
|
|
395
|
+
def name(self) -> Optional[pulumi.Input[Union[str, 'SkuName']]]:
|
|
396
|
+
"""
|
|
397
|
+
SKU of the dedicated HSM
|
|
398
|
+
"""
|
|
399
|
+
return pulumi.get(self, "name")
|
|
400
|
+
|
|
401
|
+
@name.setter
|
|
402
|
+
def name(self, value: Optional[pulumi.Input[Union[str, 'SkuName']]]):
|
|
403
|
+
pulumi.set(self, "name", value)
|
|
404
|
+
|
|
405
|
+
|