pulumi-azure-native 2.57.1__py3-none-any.whl → 2.58.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (101) hide show
  1. pulumi_azure_native/__init__.py +52 -0
  2. pulumi_azure_native/azurelargeinstance/__init__.py +22 -0
  3. pulumi_azure_native/azurelargeinstance/_enums.py +256 -0
  4. pulumi_azure_native/azurelargeinstance/_inputs.py +646 -0
  5. pulumi_azure_native/azurelargeinstance/azure_large_instance.py +475 -0
  6. pulumi_azure_native/azurelargeinstance/azure_large_storage_instance.py +320 -0
  7. pulumi_azure_native/azurelargeinstance/get_azure_large_instance.py +271 -0
  8. pulumi_azure_native/azurelargeinstance/get_azure_large_storage_instance.py +193 -0
  9. pulumi_azure_native/azurelargeinstance/outputs.py +795 -0
  10. pulumi_azure_native/azurelargeinstance/v20240801preview/__init__.py +14 -0
  11. pulumi_azure_native/azurelargeinstance/v20240801preview/_enums.py +256 -0
  12. pulumi_azure_native/azurelargeinstance/v20240801preview/_inputs.py +646 -0
  13. pulumi_azure_native/azurelargeinstance/v20240801preview/azure_large_instance.py +473 -0
  14. pulumi_azure_native/azurelargeinstance/v20240801preview/azure_large_storage_instance.py +318 -0
  15. pulumi_azure_native/azurelargeinstance/v20240801preview/get_azure_large_instance.py +269 -0
  16. pulumi_azure_native/azurelargeinstance/v20240801preview/get_azure_large_storage_instance.py +191 -0
  17. pulumi_azure_native/azurelargeinstance/v20240801preview/outputs.py +795 -0
  18. pulumi_azure_native/baremetalinfrastructure/__init__.py +5 -0
  19. pulumi_azure_native/baremetalinfrastructure/_enums.py +74 -0
  20. pulumi_azure_native/baremetalinfrastructure/_inputs.py +368 -0
  21. pulumi_azure_native/baremetalinfrastructure/azure_bare_metal_instance.py +502 -0
  22. pulumi_azure_native/baremetalinfrastructure/azure_bare_metal_storage_instance.py +3 -3
  23. pulumi_azure_native/baremetalinfrastructure/get_azure_bare_metal_instance.py +281 -0
  24. pulumi_azure_native/baremetalinfrastructure/get_azure_bare_metal_storage_instance.py +2 -2
  25. pulumi_azure_native/baremetalinfrastructure/outputs.py +351 -0
  26. pulumi_azure_native/baremetalinfrastructure/v20230406/azure_bare_metal_storage_instance.py +1 -1
  27. pulumi_azure_native/baremetalinfrastructure/v20230804preview/azure_bare_metal_storage_instance.py +1 -1
  28. pulumi_azure_native/baremetalinfrastructure/v20231101preview/azure_bare_metal_storage_instance.py +1 -1
  29. pulumi_azure_native/baremetalinfrastructure/v20240801preview/__init__.py +14 -0
  30. pulumi_azure_native/baremetalinfrastructure/v20240801preview/_enums.py +106 -0
  31. pulumi_azure_native/baremetalinfrastructure/v20240801preview/_inputs.py +644 -0
  32. pulumi_azure_native/baremetalinfrastructure/v20240801preview/azure_bare_metal_instance.py +500 -0
  33. pulumi_azure_native/baremetalinfrastructure/v20240801preview/azure_bare_metal_storage_instance.py +316 -0
  34. pulumi_azure_native/baremetalinfrastructure/v20240801preview/get_azure_bare_metal_instance.py +279 -0
  35. pulumi_azure_native/baremetalinfrastructure/v20240801preview/get_azure_bare_metal_storage_instance.py +188 -0
  36. pulumi_azure_native/baremetalinfrastructure/v20240801preview/outputs.py +726 -0
  37. pulumi_azure_native/batch/__init__.py +3 -0
  38. pulumi_azure_native/batch/application.py +3 -3
  39. pulumi_azure_native/batch/application_package.py +3 -3
  40. pulumi_azure_native/batch/batch_account.py +3 -3
  41. pulumi_azure_native/batch/get_application.py +2 -2
  42. pulumi_azure_native/batch/get_application_package.py +2 -2
  43. pulumi_azure_native/batch/get_batch_account.py +2 -2
  44. pulumi_azure_native/batch/get_pool.py +2 -2
  45. pulumi_azure_native/batch/list_batch_account_keys.py +2 -2
  46. pulumi_azure_native/batch/pool.py +3 -3
  47. pulumi_azure_native/batch/v20220101/batch_account.py +1 -1
  48. pulumi_azure_native/batch/v20230501/application.py +1 -1
  49. pulumi_azure_native/batch/v20230501/application_package.py +1 -1
  50. pulumi_azure_native/batch/v20230501/batch_account.py +1 -1
  51. pulumi_azure_native/batch/v20230501/pool.py +1 -1
  52. pulumi_azure_native/batch/v20231101/application.py +1 -1
  53. pulumi_azure_native/batch/v20231101/application_package.py +1 -1
  54. pulumi_azure_native/batch/v20231101/batch_account.py +1 -1
  55. pulumi_azure_native/batch/v20231101/pool.py +1 -1
  56. pulumi_azure_native/batch/v20240201/application.py +1 -1
  57. pulumi_azure_native/batch/v20240201/application_package.py +1 -1
  58. pulumi_azure_native/batch/v20240201/batch_account.py +1 -1
  59. pulumi_azure_native/batch/v20240201/pool.py +1 -1
  60. pulumi_azure_native/batch/v20240701/__init__.py +19 -0
  61. pulumi_azure_native/batch/v20240701/_enums.py +510 -0
  62. pulumi_azure_native/batch/v20240701/_inputs.py +4319 -0
  63. pulumi_azure_native/batch/v20240701/application.py +305 -0
  64. pulumi_azure_native/batch/v20240701/application_package.py +289 -0
  65. pulumi_azure_native/batch/v20240701/batch_account.py +545 -0
  66. pulumi_azure_native/batch/v20240701/get_application.py +179 -0
  67. pulumi_azure_native/batch/v20240701/get_application_package.py +210 -0
  68. pulumi_azure_native/batch/v20240701/get_batch_account.py +364 -0
  69. pulumi_azure_native/batch/v20240701/get_pool.py +503 -0
  70. pulumi_azure_native/batch/v20240701/list_batch_account_keys.py +109 -0
  71. pulumi_azure_native/batch/v20240701/outputs.py +4161 -0
  72. pulumi_azure_native/batch/v20240701/pool.py +854 -0
  73. pulumi_azure_native/hardwaresecuritymodules/__init__.py +3 -0
  74. pulumi_azure_native/hardwaresecuritymodules/cloud_hsm_cluster.py +3 -3
  75. pulumi_azure_native/hardwaresecuritymodules/cloud_hsm_cluster_private_endpoint_connection.py +3 -3
  76. pulumi_azure_native/hardwaresecuritymodules/dedicated_hsm.py +5 -1
  77. pulumi_azure_native/hardwaresecuritymodules/get_cloud_hsm_cluster.py +2 -2
  78. pulumi_azure_native/hardwaresecuritymodules/get_cloud_hsm_cluster_private_endpoint_connection.py +2 -2
  79. pulumi_azure_native/hardwaresecuritymodules/get_dedicated_hsm.py +4 -0
  80. pulumi_azure_native/hardwaresecuritymodules/v20211130/dedicated_hsm.py +1 -1
  81. pulumi_azure_native/hardwaresecuritymodules/v20220831preview/cloud_hsm_cluster.py +1 -1
  82. pulumi_azure_native/hardwaresecuritymodules/v20220831preview/cloud_hsm_cluster_private_endpoint_connection.py +1 -1
  83. pulumi_azure_native/hardwaresecuritymodules/v20231210preview/cloud_hsm_cluster.py +1 -1
  84. pulumi_azure_native/hardwaresecuritymodules/v20231210preview/cloud_hsm_cluster_private_endpoint_connection.py +1 -1
  85. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/__init__.py +16 -0
  86. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/_enums.py +100 -0
  87. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/_inputs.py +405 -0
  88. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/cloud_hsm_cluster.py +428 -0
  89. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/cloud_hsm_cluster_private_endpoint_connection.py +262 -0
  90. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/dedicated_hsm.py +394 -0
  91. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_cloud_hsm_cluster.py +279 -0
  92. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_cloud_hsm_cluster_private_endpoint_connection.py +193 -0
  93. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_dedicated_hsm.py +240 -0
  94. pulumi_azure_native/hardwaresecuritymodules/v20240630preview/outputs.py +772 -0
  95. pulumi_azure_native/machinelearningservices/v20240701preview/_inputs.py +20 -0
  96. pulumi_azure_native/machinelearningservices/v20240701preview/outputs.py +12 -11
  97. pulumi_azure_native/pulumi-plugin.json +1 -1
  98. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/METADATA +1 -1
  99. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/RECORD +101 -52
  100. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/WHEEL +0 -0
  101. {pulumi_azure_native-2.57.1.dist-info → pulumi_azure_native-2.58.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,364 @@
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
+ 'GetBatchAccountResult',
20
+ 'AwaitableGetBatchAccountResult',
21
+ 'get_batch_account',
22
+ 'get_batch_account_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetBatchAccountResult:
27
+ """
28
+ Contains information about an Azure Batch account.
29
+ """
30
+ def __init__(__self__, account_endpoint=None, active_job_and_job_schedule_quota=None, allowed_authentication_modes=None, auto_storage=None, dedicated_core_quota=None, dedicated_core_quota_per_vm_family=None, dedicated_core_quota_per_vm_family_enforced=None, encryption=None, id=None, identity=None, key_vault_reference=None, location=None, low_priority_core_quota=None, name=None, network_profile=None, node_management_endpoint=None, pool_allocation_mode=None, pool_quota=None, private_endpoint_connections=None, provisioning_state=None, public_network_access=None, tags=None, type=None):
31
+ if account_endpoint and not isinstance(account_endpoint, str):
32
+ raise TypeError("Expected argument 'account_endpoint' to be a str")
33
+ pulumi.set(__self__, "account_endpoint", account_endpoint)
34
+ if active_job_and_job_schedule_quota and not isinstance(active_job_and_job_schedule_quota, int):
35
+ raise TypeError("Expected argument 'active_job_and_job_schedule_quota' to be a int")
36
+ pulumi.set(__self__, "active_job_and_job_schedule_quota", active_job_and_job_schedule_quota)
37
+ if allowed_authentication_modes and not isinstance(allowed_authentication_modes, list):
38
+ raise TypeError("Expected argument 'allowed_authentication_modes' to be a list")
39
+ pulumi.set(__self__, "allowed_authentication_modes", allowed_authentication_modes)
40
+ if auto_storage and not isinstance(auto_storage, dict):
41
+ raise TypeError("Expected argument 'auto_storage' to be a dict")
42
+ pulumi.set(__self__, "auto_storage", auto_storage)
43
+ if dedicated_core_quota and not isinstance(dedicated_core_quota, int):
44
+ raise TypeError("Expected argument 'dedicated_core_quota' to be a int")
45
+ pulumi.set(__self__, "dedicated_core_quota", dedicated_core_quota)
46
+ if dedicated_core_quota_per_vm_family and not isinstance(dedicated_core_quota_per_vm_family, list):
47
+ raise TypeError("Expected argument 'dedicated_core_quota_per_vm_family' to be a list")
48
+ pulumi.set(__self__, "dedicated_core_quota_per_vm_family", dedicated_core_quota_per_vm_family)
49
+ if dedicated_core_quota_per_vm_family_enforced and not isinstance(dedicated_core_quota_per_vm_family_enforced, bool):
50
+ raise TypeError("Expected argument 'dedicated_core_quota_per_vm_family_enforced' to be a bool")
51
+ pulumi.set(__self__, "dedicated_core_quota_per_vm_family_enforced", dedicated_core_quota_per_vm_family_enforced)
52
+ if encryption and not isinstance(encryption, dict):
53
+ raise TypeError("Expected argument 'encryption' to be a dict")
54
+ pulumi.set(__self__, "encryption", encryption)
55
+ if id and not isinstance(id, str):
56
+ raise TypeError("Expected argument 'id' to be a str")
57
+ pulumi.set(__self__, "id", id)
58
+ if identity and not isinstance(identity, dict):
59
+ raise TypeError("Expected argument 'identity' to be a dict")
60
+ pulumi.set(__self__, "identity", identity)
61
+ if key_vault_reference and not isinstance(key_vault_reference, dict):
62
+ raise TypeError("Expected argument 'key_vault_reference' to be a dict")
63
+ pulumi.set(__self__, "key_vault_reference", key_vault_reference)
64
+ if location and not isinstance(location, str):
65
+ raise TypeError("Expected argument 'location' to be a str")
66
+ pulumi.set(__self__, "location", location)
67
+ if low_priority_core_quota and not isinstance(low_priority_core_quota, int):
68
+ raise TypeError("Expected argument 'low_priority_core_quota' to be a int")
69
+ pulumi.set(__self__, "low_priority_core_quota", low_priority_core_quota)
70
+ if name and not isinstance(name, str):
71
+ raise TypeError("Expected argument 'name' to be a str")
72
+ pulumi.set(__self__, "name", name)
73
+ if network_profile and not isinstance(network_profile, dict):
74
+ raise TypeError("Expected argument 'network_profile' to be a dict")
75
+ pulumi.set(__self__, "network_profile", network_profile)
76
+ if node_management_endpoint and not isinstance(node_management_endpoint, str):
77
+ raise TypeError("Expected argument 'node_management_endpoint' to be a str")
78
+ pulumi.set(__self__, "node_management_endpoint", node_management_endpoint)
79
+ if pool_allocation_mode and not isinstance(pool_allocation_mode, str):
80
+ raise TypeError("Expected argument 'pool_allocation_mode' to be a str")
81
+ pulumi.set(__self__, "pool_allocation_mode", pool_allocation_mode)
82
+ if pool_quota and not isinstance(pool_quota, int):
83
+ raise TypeError("Expected argument 'pool_quota' to be a int")
84
+ pulumi.set(__self__, "pool_quota", pool_quota)
85
+ if private_endpoint_connections and not isinstance(private_endpoint_connections, list):
86
+ raise TypeError("Expected argument 'private_endpoint_connections' to be a list")
87
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
88
+ if provisioning_state and not isinstance(provisioning_state, str):
89
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
90
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
91
+ if public_network_access and not isinstance(public_network_access, str):
92
+ raise TypeError("Expected argument 'public_network_access' to be a str")
93
+ pulumi.set(__self__, "public_network_access", public_network_access)
94
+ if tags and not isinstance(tags, dict):
95
+ raise TypeError("Expected argument 'tags' to be a dict")
96
+ pulumi.set(__self__, "tags", tags)
97
+ if type and not isinstance(type, str):
98
+ raise TypeError("Expected argument 'type' to be a str")
99
+ pulumi.set(__self__, "type", type)
100
+
101
+ @property
102
+ @pulumi.getter(name="accountEndpoint")
103
+ def account_endpoint(self) -> str:
104
+ """
105
+ The account endpoint used to interact with the Batch service.
106
+ """
107
+ return pulumi.get(self, "account_endpoint")
108
+
109
+ @property
110
+ @pulumi.getter(name="activeJobAndJobScheduleQuota")
111
+ def active_job_and_job_schedule_quota(self) -> int:
112
+ return pulumi.get(self, "active_job_and_job_schedule_quota")
113
+
114
+ @property
115
+ @pulumi.getter(name="allowedAuthenticationModes")
116
+ def allowed_authentication_modes(self) -> Sequence[str]:
117
+ """
118
+ List of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane.
119
+ """
120
+ return pulumi.get(self, "allowed_authentication_modes")
121
+
122
+ @property
123
+ @pulumi.getter(name="autoStorage")
124
+ def auto_storage(self) -> 'outputs.AutoStoragePropertiesResponse':
125
+ """
126
+ Contains information about the auto-storage account associated with a Batch account.
127
+ """
128
+ return pulumi.get(self, "auto_storage")
129
+
130
+ @property
131
+ @pulumi.getter(name="dedicatedCoreQuota")
132
+ def dedicated_core_quota(self) -> int:
133
+ """
134
+ For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
135
+ """
136
+ return pulumi.get(self, "dedicated_core_quota")
137
+
138
+ @property
139
+ @pulumi.getter(name="dedicatedCoreQuotaPerVMFamily")
140
+ def dedicated_core_quota_per_vm_family(self) -> Sequence['outputs.VirtualMachineFamilyCoreQuotaResponse']:
141
+ """
142
+ A list of the dedicated core quota per Virtual Machine family for the Batch account. For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
143
+ """
144
+ return pulumi.get(self, "dedicated_core_quota_per_vm_family")
145
+
146
+ @property
147
+ @pulumi.getter(name="dedicatedCoreQuotaPerVMFamilyEnforced")
148
+ def dedicated_core_quota_per_vm_family_enforced(self) -> bool:
149
+ """
150
+ If this flag is true, dedicated core quota is enforced via both the dedicatedCoreQuotaPerVMFamily and dedicatedCoreQuota properties on the account. If this flag is false, dedicated core quota is enforced only via the dedicatedCoreQuota property on the account and does not consider Virtual Machine family.
151
+ """
152
+ return pulumi.get(self, "dedicated_core_quota_per_vm_family_enforced")
153
+
154
+ @property
155
+ @pulumi.getter
156
+ def encryption(self) -> 'outputs.EncryptionPropertiesResponse':
157
+ """
158
+ Configures how customer data is encrypted inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. For additional control, a customer-managed key can be used instead.
159
+ """
160
+ return pulumi.get(self, "encryption")
161
+
162
+ @property
163
+ @pulumi.getter
164
+ def id(self) -> str:
165
+ """
166
+ The ID of the resource.
167
+ """
168
+ return pulumi.get(self, "id")
169
+
170
+ @property
171
+ @pulumi.getter
172
+ def identity(self) -> Optional['outputs.BatchAccountIdentityResponse']:
173
+ """
174
+ The identity of the Batch account.
175
+ """
176
+ return pulumi.get(self, "identity")
177
+
178
+ @property
179
+ @pulumi.getter(name="keyVaultReference")
180
+ def key_vault_reference(self) -> 'outputs.KeyVaultReferenceResponse':
181
+ """
182
+ Identifies the Azure key vault associated with a Batch account.
183
+ """
184
+ return pulumi.get(self, "key_vault_reference")
185
+
186
+ @property
187
+ @pulumi.getter
188
+ def location(self) -> str:
189
+ """
190
+ The location of the resource.
191
+ """
192
+ return pulumi.get(self, "location")
193
+
194
+ @property
195
+ @pulumi.getter(name="lowPriorityCoreQuota")
196
+ def low_priority_core_quota(self) -> int:
197
+ """
198
+ For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
199
+ """
200
+ return pulumi.get(self, "low_priority_core_quota")
201
+
202
+ @property
203
+ @pulumi.getter
204
+ def name(self) -> str:
205
+ """
206
+ The name of the resource.
207
+ """
208
+ return pulumi.get(self, "name")
209
+
210
+ @property
211
+ @pulumi.getter(name="networkProfile")
212
+ def network_profile(self) -> Optional['outputs.NetworkProfileResponse']:
213
+ """
214
+ The network profile only takes effect when publicNetworkAccess is enabled.
215
+ """
216
+ return pulumi.get(self, "network_profile")
217
+
218
+ @property
219
+ @pulumi.getter(name="nodeManagementEndpoint")
220
+ def node_management_endpoint(self) -> str:
221
+ """
222
+ The endpoint used by compute node to connect to the Batch node management service.
223
+ """
224
+ return pulumi.get(self, "node_management_endpoint")
225
+
226
+ @property
227
+ @pulumi.getter(name="poolAllocationMode")
228
+ def pool_allocation_mode(self) -> str:
229
+ """
230
+ The allocation mode for creating pools in the Batch account.
231
+ """
232
+ return pulumi.get(self, "pool_allocation_mode")
233
+
234
+ @property
235
+ @pulumi.getter(name="poolQuota")
236
+ def pool_quota(self) -> int:
237
+ return pulumi.get(self, "pool_quota")
238
+
239
+ @property
240
+ @pulumi.getter(name="privateEndpointConnections")
241
+ def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
242
+ """
243
+ List of private endpoint connections associated with the Batch account
244
+ """
245
+ return pulumi.get(self, "private_endpoint_connections")
246
+
247
+ @property
248
+ @pulumi.getter(name="provisioningState")
249
+ def provisioning_state(self) -> str:
250
+ """
251
+ The provisioned state of the resource
252
+ """
253
+ return pulumi.get(self, "provisioning_state")
254
+
255
+ @property
256
+ @pulumi.getter(name="publicNetworkAccess")
257
+ def public_network_access(self) -> Optional[str]:
258
+ """
259
+ If not specified, the default value is 'enabled'.
260
+ """
261
+ return pulumi.get(self, "public_network_access")
262
+
263
+ @property
264
+ @pulumi.getter
265
+ def tags(self) -> Mapping[str, str]:
266
+ """
267
+ The tags of the resource.
268
+ """
269
+ return pulumi.get(self, "tags")
270
+
271
+ @property
272
+ @pulumi.getter
273
+ def type(self) -> str:
274
+ """
275
+ The type of the resource.
276
+ """
277
+ return pulumi.get(self, "type")
278
+
279
+
280
+ class AwaitableGetBatchAccountResult(GetBatchAccountResult):
281
+ # pylint: disable=using-constant-test
282
+ def __await__(self):
283
+ if False:
284
+ yield self
285
+ return GetBatchAccountResult(
286
+ account_endpoint=self.account_endpoint,
287
+ active_job_and_job_schedule_quota=self.active_job_and_job_schedule_quota,
288
+ allowed_authentication_modes=self.allowed_authentication_modes,
289
+ auto_storage=self.auto_storage,
290
+ dedicated_core_quota=self.dedicated_core_quota,
291
+ dedicated_core_quota_per_vm_family=self.dedicated_core_quota_per_vm_family,
292
+ dedicated_core_quota_per_vm_family_enforced=self.dedicated_core_quota_per_vm_family_enforced,
293
+ encryption=self.encryption,
294
+ id=self.id,
295
+ identity=self.identity,
296
+ key_vault_reference=self.key_vault_reference,
297
+ location=self.location,
298
+ low_priority_core_quota=self.low_priority_core_quota,
299
+ name=self.name,
300
+ network_profile=self.network_profile,
301
+ node_management_endpoint=self.node_management_endpoint,
302
+ pool_allocation_mode=self.pool_allocation_mode,
303
+ pool_quota=self.pool_quota,
304
+ private_endpoint_connections=self.private_endpoint_connections,
305
+ provisioning_state=self.provisioning_state,
306
+ public_network_access=self.public_network_access,
307
+ tags=self.tags,
308
+ type=self.type)
309
+
310
+
311
+ def get_batch_account(account_name: Optional[str] = None,
312
+ resource_group_name: Optional[str] = None,
313
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBatchAccountResult:
314
+ """
315
+ Gets information about the specified Batch account.
316
+
317
+
318
+ :param str account_name: The name of the Batch account.
319
+ :param str resource_group_name: The name of the resource group that contains the Batch account.
320
+ """
321
+ __args__ = dict()
322
+ __args__['accountName'] = account_name
323
+ __args__['resourceGroupName'] = resource_group_name
324
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
325
+ __ret__ = pulumi.runtime.invoke('azure-native:batch/v20240701:getBatchAccount', __args__, opts=opts, typ=GetBatchAccountResult).value
326
+
327
+ return AwaitableGetBatchAccountResult(
328
+ account_endpoint=pulumi.get(__ret__, 'account_endpoint'),
329
+ active_job_and_job_schedule_quota=pulumi.get(__ret__, 'active_job_and_job_schedule_quota'),
330
+ allowed_authentication_modes=pulumi.get(__ret__, 'allowed_authentication_modes'),
331
+ auto_storage=pulumi.get(__ret__, 'auto_storage'),
332
+ dedicated_core_quota=pulumi.get(__ret__, 'dedicated_core_quota'),
333
+ dedicated_core_quota_per_vm_family=pulumi.get(__ret__, 'dedicated_core_quota_per_vm_family'),
334
+ dedicated_core_quota_per_vm_family_enforced=pulumi.get(__ret__, 'dedicated_core_quota_per_vm_family_enforced'),
335
+ encryption=pulumi.get(__ret__, 'encryption'),
336
+ id=pulumi.get(__ret__, 'id'),
337
+ identity=pulumi.get(__ret__, 'identity'),
338
+ key_vault_reference=pulumi.get(__ret__, 'key_vault_reference'),
339
+ location=pulumi.get(__ret__, 'location'),
340
+ low_priority_core_quota=pulumi.get(__ret__, 'low_priority_core_quota'),
341
+ name=pulumi.get(__ret__, 'name'),
342
+ network_profile=pulumi.get(__ret__, 'network_profile'),
343
+ node_management_endpoint=pulumi.get(__ret__, 'node_management_endpoint'),
344
+ pool_allocation_mode=pulumi.get(__ret__, 'pool_allocation_mode'),
345
+ pool_quota=pulumi.get(__ret__, 'pool_quota'),
346
+ private_endpoint_connections=pulumi.get(__ret__, 'private_endpoint_connections'),
347
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
348
+ public_network_access=pulumi.get(__ret__, 'public_network_access'),
349
+ tags=pulumi.get(__ret__, 'tags'),
350
+ type=pulumi.get(__ret__, 'type'))
351
+
352
+
353
+ @_utilities.lift_output_func(get_batch_account)
354
+ def get_batch_account_output(account_name: Optional[pulumi.Input[str]] = None,
355
+ resource_group_name: Optional[pulumi.Input[str]] = None,
356
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBatchAccountResult]:
357
+ """
358
+ Gets information about the specified Batch account.
359
+
360
+
361
+ :param str account_name: The name of the Batch account.
362
+ :param str resource_group_name: The name of the resource group that contains the Batch account.
363
+ """
364
+ ...