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,279 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetCloudHsmClusterResult',
|
|
20
|
+
'AwaitableGetCloudHsmClusterResult',
|
|
21
|
+
'get_cloud_hsm_cluster',
|
|
22
|
+
'get_cloud_hsm_cluster_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetCloudHsmClusterResult:
|
|
27
|
+
"""
|
|
28
|
+
Resource information with extended details.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, activation_state=None, auto_generated_domain_name_label_scope=None, fips_approved_mode=None, hsms=None, id=None, identity=None, location=None, name=None, private_endpoint_connections=None, provisioning_state=None, public_network_access=None, sku=None, status_message=None, system_data=None, tags=None, type=None):
|
|
31
|
+
if activation_state and not isinstance(activation_state, str):
|
|
32
|
+
raise TypeError("Expected argument 'activation_state' to be a str")
|
|
33
|
+
pulumi.set(__self__, "activation_state", activation_state)
|
|
34
|
+
if auto_generated_domain_name_label_scope and not isinstance(auto_generated_domain_name_label_scope, str):
|
|
35
|
+
raise TypeError("Expected argument 'auto_generated_domain_name_label_scope' to be a str")
|
|
36
|
+
pulumi.set(__self__, "auto_generated_domain_name_label_scope", auto_generated_domain_name_label_scope)
|
|
37
|
+
if fips_approved_mode and not isinstance(fips_approved_mode, bool):
|
|
38
|
+
raise TypeError("Expected argument 'fips_approved_mode' to be a bool")
|
|
39
|
+
pulumi.set(__self__, "fips_approved_mode", fips_approved_mode)
|
|
40
|
+
if hsms and not isinstance(hsms, list):
|
|
41
|
+
raise TypeError("Expected argument 'hsms' to be a list")
|
|
42
|
+
pulumi.set(__self__, "hsms", hsms)
|
|
43
|
+
if id and not isinstance(id, str):
|
|
44
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
45
|
+
pulumi.set(__self__, "id", id)
|
|
46
|
+
if identity and not isinstance(identity, dict):
|
|
47
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "identity", identity)
|
|
49
|
+
if location and not isinstance(location, str):
|
|
50
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
51
|
+
pulumi.set(__self__, "location", location)
|
|
52
|
+
if name and not isinstance(name, str):
|
|
53
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
54
|
+
pulumi.set(__self__, "name", name)
|
|
55
|
+
if private_endpoint_connections and not isinstance(private_endpoint_connections, list):
|
|
56
|
+
raise TypeError("Expected argument 'private_endpoint_connections' to be a list")
|
|
57
|
+
pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
|
|
58
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
59
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
60
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
61
|
+
if public_network_access and not isinstance(public_network_access, str):
|
|
62
|
+
raise TypeError("Expected argument 'public_network_access' to be a str")
|
|
63
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
64
|
+
if sku and not isinstance(sku, dict):
|
|
65
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
66
|
+
pulumi.set(__self__, "sku", sku)
|
|
67
|
+
if status_message and not isinstance(status_message, str):
|
|
68
|
+
raise TypeError("Expected argument 'status_message' to be a str")
|
|
69
|
+
pulumi.set(__self__, "status_message", status_message)
|
|
70
|
+
if system_data and not isinstance(system_data, dict):
|
|
71
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
72
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
73
|
+
if tags and not isinstance(tags, dict):
|
|
74
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
75
|
+
pulumi.set(__self__, "tags", tags)
|
|
76
|
+
if type and not isinstance(type, str):
|
|
77
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
78
|
+
pulumi.set(__self__, "type", type)
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter(name="activationState")
|
|
82
|
+
def activation_state(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
State of security domain activation
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "activation_state")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter(name="autoGeneratedDomainNameLabelScope")
|
|
90
|
+
def auto_generated_domain_name_label_scope(self) -> Optional[str]:
|
|
91
|
+
"""
|
|
92
|
+
The Cloud HSM Cluster's auto-generated Domain Name Label Scope
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "auto_generated_domain_name_label_scope")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter(name="fipsApprovedMode")
|
|
98
|
+
def fips_approved_mode(self) -> Optional[bool]:
|
|
99
|
+
"""
|
|
100
|
+
False: Non-FIPS Mode with single-factor authentication. True: FIPS Approved Mode with single-factor authentication
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "fips_approved_mode")
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter
|
|
106
|
+
def hsms(self) -> Sequence['outputs.CloudHsmPropertiesResponse']:
|
|
107
|
+
"""
|
|
108
|
+
An array of Cloud HSM Cluster's HSMs
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "hsms")
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def id(self) -> str:
|
|
115
|
+
"""
|
|
116
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "id")
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter
|
|
122
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
123
|
+
"""
|
|
124
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "identity")
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter
|
|
130
|
+
def location(self) -> str:
|
|
131
|
+
"""
|
|
132
|
+
The geo-location where the resource lives
|
|
133
|
+
"""
|
|
134
|
+
return pulumi.get(self, "location")
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
@pulumi.getter
|
|
138
|
+
def name(self) -> str:
|
|
139
|
+
"""
|
|
140
|
+
The name of the resource
|
|
141
|
+
"""
|
|
142
|
+
return pulumi.get(self, "name")
|
|
143
|
+
|
|
144
|
+
@property
|
|
145
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
146
|
+
def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
|
|
147
|
+
"""
|
|
148
|
+
List of private endpoint connection resources
|
|
149
|
+
"""
|
|
150
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
151
|
+
|
|
152
|
+
@property
|
|
153
|
+
@pulumi.getter(name="provisioningState")
|
|
154
|
+
def provisioning_state(self) -> str:
|
|
155
|
+
"""
|
|
156
|
+
The Cloud HSM Cluster's provisioningState
|
|
157
|
+
"""
|
|
158
|
+
return pulumi.get(self, "provisioning_state")
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
162
|
+
def public_network_access(self) -> Optional[str]:
|
|
163
|
+
"""
|
|
164
|
+
The Cloud HSM Cluster public network access
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "public_network_access")
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter
|
|
170
|
+
def sku(self) -> Optional['outputs.CloudHsmClusterSkuResponse']:
|
|
171
|
+
"""
|
|
172
|
+
SKU details
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "sku")
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
@pulumi.getter(name="statusMessage")
|
|
178
|
+
def status_message(self) -> str:
|
|
179
|
+
"""
|
|
180
|
+
Cloud HSM Cluster status message
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "status_message")
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
@pulumi.getter(name="systemData")
|
|
186
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
187
|
+
"""
|
|
188
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "system_data")
|
|
191
|
+
|
|
192
|
+
@property
|
|
193
|
+
@pulumi.getter
|
|
194
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
195
|
+
"""
|
|
196
|
+
Resource tags.
|
|
197
|
+
"""
|
|
198
|
+
return pulumi.get(self, "tags")
|
|
199
|
+
|
|
200
|
+
@property
|
|
201
|
+
@pulumi.getter
|
|
202
|
+
def type(self) -> str:
|
|
203
|
+
"""
|
|
204
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
205
|
+
"""
|
|
206
|
+
return pulumi.get(self, "type")
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
class AwaitableGetCloudHsmClusterResult(GetCloudHsmClusterResult):
|
|
210
|
+
# pylint: disable=using-constant-test
|
|
211
|
+
def __await__(self):
|
|
212
|
+
if False:
|
|
213
|
+
yield self
|
|
214
|
+
return GetCloudHsmClusterResult(
|
|
215
|
+
activation_state=self.activation_state,
|
|
216
|
+
auto_generated_domain_name_label_scope=self.auto_generated_domain_name_label_scope,
|
|
217
|
+
fips_approved_mode=self.fips_approved_mode,
|
|
218
|
+
hsms=self.hsms,
|
|
219
|
+
id=self.id,
|
|
220
|
+
identity=self.identity,
|
|
221
|
+
location=self.location,
|
|
222
|
+
name=self.name,
|
|
223
|
+
private_endpoint_connections=self.private_endpoint_connections,
|
|
224
|
+
provisioning_state=self.provisioning_state,
|
|
225
|
+
public_network_access=self.public_network_access,
|
|
226
|
+
sku=self.sku,
|
|
227
|
+
status_message=self.status_message,
|
|
228
|
+
system_data=self.system_data,
|
|
229
|
+
tags=self.tags,
|
|
230
|
+
type=self.type)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
def get_cloud_hsm_cluster(cloud_hsm_cluster_name: Optional[str] = None,
|
|
234
|
+
resource_group_name: Optional[str] = None,
|
|
235
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudHsmClusterResult:
|
|
236
|
+
"""
|
|
237
|
+
Gets the specified Cloud HSM Cluster
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
:param str cloud_hsm_cluster_name: The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length.
|
|
241
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
242
|
+
"""
|
|
243
|
+
__args__ = dict()
|
|
244
|
+
__args__['cloudHsmClusterName'] = cloud_hsm_cluster_name
|
|
245
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
246
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
247
|
+
__ret__ = pulumi.runtime.invoke('azure-native:hardwaresecuritymodules/v20240630preview:getCloudHsmCluster', __args__, opts=opts, typ=GetCloudHsmClusterResult).value
|
|
248
|
+
|
|
249
|
+
return AwaitableGetCloudHsmClusterResult(
|
|
250
|
+
activation_state=pulumi.get(__ret__, 'activation_state'),
|
|
251
|
+
auto_generated_domain_name_label_scope=pulumi.get(__ret__, 'auto_generated_domain_name_label_scope'),
|
|
252
|
+
fips_approved_mode=pulumi.get(__ret__, 'fips_approved_mode'),
|
|
253
|
+
hsms=pulumi.get(__ret__, 'hsms'),
|
|
254
|
+
id=pulumi.get(__ret__, 'id'),
|
|
255
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
256
|
+
location=pulumi.get(__ret__, 'location'),
|
|
257
|
+
name=pulumi.get(__ret__, 'name'),
|
|
258
|
+
private_endpoint_connections=pulumi.get(__ret__, 'private_endpoint_connections'),
|
|
259
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
260
|
+
public_network_access=pulumi.get(__ret__, 'public_network_access'),
|
|
261
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
262
|
+
status_message=pulumi.get(__ret__, 'status_message'),
|
|
263
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
264
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
265
|
+
type=pulumi.get(__ret__, 'type'))
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
@_utilities.lift_output_func(get_cloud_hsm_cluster)
|
|
269
|
+
def get_cloud_hsm_cluster_output(cloud_hsm_cluster_name: Optional[pulumi.Input[str]] = None,
|
|
270
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
271
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCloudHsmClusterResult]:
|
|
272
|
+
"""
|
|
273
|
+
Gets the specified Cloud HSM Cluster
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
:param str cloud_hsm_cluster_name: The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length.
|
|
277
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
278
|
+
"""
|
|
279
|
+
...
|
|
@@ -0,0 +1,193 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetCloudHsmClusterPrivateEndpointConnectionResult',
|
|
20
|
+
'AwaitableGetCloudHsmClusterPrivateEndpointConnectionResult',
|
|
21
|
+
'get_cloud_hsm_cluster_private_endpoint_connection',
|
|
22
|
+
'get_cloud_hsm_cluster_private_endpoint_connection_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetCloudHsmClusterPrivateEndpointConnectionResult:
|
|
27
|
+
"""
|
|
28
|
+
The private endpoint connection resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, etag=None, group_ids=None, id=None, name=None, private_endpoint=None, private_link_service_connection_state=None, provisioning_state=None, system_data=None, type=None):
|
|
31
|
+
if etag and not isinstance(etag, str):
|
|
32
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
|
33
|
+
pulumi.set(__self__, "etag", etag)
|
|
34
|
+
if group_ids and not isinstance(group_ids, list):
|
|
35
|
+
raise TypeError("Expected argument 'group_ids' to be a list")
|
|
36
|
+
pulumi.set(__self__, "group_ids", group_ids)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
if name and not isinstance(name, str):
|
|
41
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
43
|
+
if private_endpoint and not isinstance(private_endpoint, dict):
|
|
44
|
+
raise TypeError("Expected argument 'private_endpoint' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
46
|
+
if private_link_service_connection_state and not isinstance(private_link_service_connection_state, dict):
|
|
47
|
+
raise TypeError("Expected argument 'private_link_service_connection_state' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
49
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
50
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
51
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
52
|
+
if system_data and not isinstance(system_data, dict):
|
|
53
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
54
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
55
|
+
if type and not isinstance(type, str):
|
|
56
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
57
|
+
pulumi.set(__self__, "type", type)
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def etag(self) -> Optional[str]:
|
|
62
|
+
"""
|
|
63
|
+
Modified whenever there is a change in the state of private endpoint connection.
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "etag")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="groupIds")
|
|
69
|
+
def group_ids(self) -> Sequence[str]:
|
|
70
|
+
"""
|
|
71
|
+
The group ids for the private endpoint resource.
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "group_ids")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def id(self) -> str:
|
|
78
|
+
"""
|
|
79
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "id")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter
|
|
85
|
+
def name(self) -> str:
|
|
86
|
+
"""
|
|
87
|
+
The name of the resource
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "name")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="privateEndpoint")
|
|
93
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
94
|
+
"""
|
|
95
|
+
The private endpoint resource.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "private_endpoint")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
101
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
102
|
+
"""
|
|
103
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter(name="provisioningState")
|
|
109
|
+
def provisioning_state(self) -> str:
|
|
110
|
+
"""
|
|
111
|
+
The provisioning state of the private endpoint connection resource.
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "provisioning_state")
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter(name="systemData")
|
|
117
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
118
|
+
"""
|
|
119
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "system_data")
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter
|
|
125
|
+
def type(self) -> str:
|
|
126
|
+
"""
|
|
127
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "type")
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class AwaitableGetCloudHsmClusterPrivateEndpointConnectionResult(GetCloudHsmClusterPrivateEndpointConnectionResult):
|
|
133
|
+
# pylint: disable=using-constant-test
|
|
134
|
+
def __await__(self):
|
|
135
|
+
if False:
|
|
136
|
+
yield self
|
|
137
|
+
return GetCloudHsmClusterPrivateEndpointConnectionResult(
|
|
138
|
+
etag=self.etag,
|
|
139
|
+
group_ids=self.group_ids,
|
|
140
|
+
id=self.id,
|
|
141
|
+
name=self.name,
|
|
142
|
+
private_endpoint=self.private_endpoint,
|
|
143
|
+
private_link_service_connection_state=self.private_link_service_connection_state,
|
|
144
|
+
provisioning_state=self.provisioning_state,
|
|
145
|
+
system_data=self.system_data,
|
|
146
|
+
type=self.type)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
def get_cloud_hsm_cluster_private_endpoint_connection(cloud_hsm_cluster_name: Optional[str] = None,
|
|
150
|
+
pe_connection_name: Optional[str] = None,
|
|
151
|
+
resource_group_name: Optional[str] = None,
|
|
152
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudHsmClusterPrivateEndpointConnectionResult:
|
|
153
|
+
"""
|
|
154
|
+
Gets the private endpoint connection for the Cloud Hsm Cluster.
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
:param str cloud_hsm_cluster_name: The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length.
|
|
158
|
+
:param str pe_connection_name: Name of the private endpoint connection associated with the Cloud HSM Cluster.
|
|
159
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
160
|
+
"""
|
|
161
|
+
__args__ = dict()
|
|
162
|
+
__args__['cloudHsmClusterName'] = cloud_hsm_cluster_name
|
|
163
|
+
__args__['peConnectionName'] = pe_connection_name
|
|
164
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
165
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
166
|
+
__ret__ = pulumi.runtime.invoke('azure-native:hardwaresecuritymodules/v20240630preview:getCloudHsmClusterPrivateEndpointConnection', __args__, opts=opts, typ=GetCloudHsmClusterPrivateEndpointConnectionResult).value
|
|
167
|
+
|
|
168
|
+
return AwaitableGetCloudHsmClusterPrivateEndpointConnectionResult(
|
|
169
|
+
etag=pulumi.get(__ret__, 'etag'),
|
|
170
|
+
group_ids=pulumi.get(__ret__, 'group_ids'),
|
|
171
|
+
id=pulumi.get(__ret__, 'id'),
|
|
172
|
+
name=pulumi.get(__ret__, 'name'),
|
|
173
|
+
private_endpoint=pulumi.get(__ret__, 'private_endpoint'),
|
|
174
|
+
private_link_service_connection_state=pulumi.get(__ret__, 'private_link_service_connection_state'),
|
|
175
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
176
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
177
|
+
type=pulumi.get(__ret__, 'type'))
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
@_utilities.lift_output_func(get_cloud_hsm_cluster_private_endpoint_connection)
|
|
181
|
+
def get_cloud_hsm_cluster_private_endpoint_connection_output(cloud_hsm_cluster_name: Optional[pulumi.Input[str]] = None,
|
|
182
|
+
pe_connection_name: Optional[pulumi.Input[str]] = None,
|
|
183
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
184
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCloudHsmClusterPrivateEndpointConnectionResult]:
|
|
185
|
+
"""
|
|
186
|
+
Gets the private endpoint connection for the Cloud Hsm Cluster.
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
:param str cloud_hsm_cluster_name: The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length.
|
|
190
|
+
:param str pe_connection_name: Name of the private endpoint connection associated with the Cloud HSM Cluster.
|
|
191
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
192
|
+
"""
|
|
193
|
+
...
|