pulumi-azure-native 2.81.0a1735840149__py3-none-any.whl → 2.81.0a1736153496__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/machinelearningservices/v20241001preview/_inputs.py +113 -1
- pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +107 -1
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.81.0a1735840149.dist-info → pulumi_azure_native-2.81.0a1736153496.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.81.0a1735840149.dist-info → pulumi_azure_native-2.81.0a1736153496.dist-info}/RECORD +7 -7
- {pulumi_azure_native-2.81.0a1735840149.dist-info → pulumi_azure_native-2.81.0a1736153496.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.81.0a1735840149.dist-info → pulumi_azure_native-2.81.0a1736153496.dist-info}/top_level.txt +0 -0
|
@@ -478,6 +478,8 @@ __all__ = [
|
|
|
478
478
|
'RegistryPrivateLinkServiceConnectionStateArgsDict',
|
|
479
479
|
'RegistryRegionArmDetailsArgs',
|
|
480
480
|
'RegistryRegionArmDetailsArgsDict',
|
|
481
|
+
'RegistrySyndicatedRegistriesArgs',
|
|
482
|
+
'RegistrySyndicatedRegistriesArgsDict',
|
|
481
483
|
'RegistryArgs',
|
|
482
484
|
'RegistryArgsDict',
|
|
483
485
|
'RegressionTrainingSettingsArgs',
|
|
@@ -562,6 +564,8 @@ __all__ = [
|
|
|
562
564
|
'SynapseSparkPropertiesArgsDict',
|
|
563
565
|
'SynapseSparkArgs',
|
|
564
566
|
'SynapseSparkArgsDict',
|
|
567
|
+
'SyndicatedRegistryArgs',
|
|
568
|
+
'SyndicatedRegistryArgsDict',
|
|
565
569
|
'SystemCreatedAcrAccountArgs',
|
|
566
570
|
'SystemCreatedAcrAccountArgsDict',
|
|
567
571
|
'SystemCreatedStorageAccountArgs',
|
|
@@ -28973,6 +28977,58 @@ class RegistryRegionArmDetailsArgs:
|
|
|
28973
28977
|
pulumi.set(self, "storage_account_details", value)
|
|
28974
28978
|
|
|
28975
28979
|
|
|
28980
|
+
if not MYPY:
|
|
28981
|
+
class RegistrySyndicatedRegistriesArgsDict(TypedDict):
|
|
28982
|
+
syndicated_registry: NotRequired[pulumi.Input['SyndicatedRegistryArgsDict']]
|
|
28983
|
+
"""
|
|
28984
|
+
A registry that is syndicated
|
|
28985
|
+
"""
|
|
28986
|
+
syndicated_registry_guid: NotRequired[pulumi.Input[str]]
|
|
28987
|
+
"""
|
|
28988
|
+
The Guid of the syndicated registry
|
|
28989
|
+
"""
|
|
28990
|
+
elif False:
|
|
28991
|
+
RegistrySyndicatedRegistriesArgsDict: TypeAlias = Mapping[str, Any]
|
|
28992
|
+
|
|
28993
|
+
@pulumi.input_type
|
|
28994
|
+
class RegistrySyndicatedRegistriesArgs:
|
|
28995
|
+
def __init__(__self__, *,
|
|
28996
|
+
syndicated_registry: Optional[pulumi.Input['SyndicatedRegistryArgs']] = None,
|
|
28997
|
+
syndicated_registry_guid: Optional[pulumi.Input[str]] = None):
|
|
28998
|
+
"""
|
|
28999
|
+
:param pulumi.Input['SyndicatedRegistryArgs'] syndicated_registry: A registry that is syndicated
|
|
29000
|
+
:param pulumi.Input[str] syndicated_registry_guid: The Guid of the syndicated registry
|
|
29001
|
+
"""
|
|
29002
|
+
if syndicated_registry is not None:
|
|
29003
|
+
pulumi.set(__self__, "syndicated_registry", syndicated_registry)
|
|
29004
|
+
if syndicated_registry_guid is not None:
|
|
29005
|
+
pulumi.set(__self__, "syndicated_registry_guid", syndicated_registry_guid)
|
|
29006
|
+
|
|
29007
|
+
@property
|
|
29008
|
+
@pulumi.getter(name="syndicatedRegistry")
|
|
29009
|
+
def syndicated_registry(self) -> Optional[pulumi.Input['SyndicatedRegistryArgs']]:
|
|
29010
|
+
"""
|
|
29011
|
+
A registry that is syndicated
|
|
29012
|
+
"""
|
|
29013
|
+
return pulumi.get(self, "syndicated_registry")
|
|
29014
|
+
|
|
29015
|
+
@syndicated_registry.setter
|
|
29016
|
+
def syndicated_registry(self, value: Optional[pulumi.Input['SyndicatedRegistryArgs']]):
|
|
29017
|
+
pulumi.set(self, "syndicated_registry", value)
|
|
29018
|
+
|
|
29019
|
+
@property
|
|
29020
|
+
@pulumi.getter(name="syndicatedRegistryGuid")
|
|
29021
|
+
def syndicated_registry_guid(self) -> Optional[pulumi.Input[str]]:
|
|
29022
|
+
"""
|
|
29023
|
+
The Guid of the syndicated registry
|
|
29024
|
+
"""
|
|
29025
|
+
return pulumi.get(self, "syndicated_registry_guid")
|
|
29026
|
+
|
|
29027
|
+
@syndicated_registry_guid.setter
|
|
29028
|
+
def syndicated_registry_guid(self, value: Optional[pulumi.Input[str]]):
|
|
29029
|
+
pulumi.set(self, "syndicated_registry_guid", value)
|
|
29030
|
+
|
|
29031
|
+
|
|
28976
29032
|
if not MYPY:
|
|
28977
29033
|
class RegistryArgsDict(TypedDict):
|
|
28978
29034
|
"""
|
|
@@ -29007,6 +29063,10 @@ if not MYPY:
|
|
|
29007
29063
|
"""
|
|
29008
29064
|
Private endpoint connections info used for pending connections in private link portal
|
|
29009
29065
|
"""
|
|
29066
|
+
syndicated_registries: NotRequired[pulumi.Input[Sequence[pulumi.Input['RegistrySyndicatedRegistriesArgsDict']]]]
|
|
29067
|
+
"""
|
|
29068
|
+
List of tuples containing Guid and SyndicatedRegistry
|
|
29069
|
+
"""
|
|
29010
29070
|
elif False:
|
|
29011
29071
|
RegistryArgsDict: TypeAlias = Mapping[str, Any]
|
|
29012
29072
|
|
|
@@ -29019,7 +29079,8 @@ class RegistryArgs:
|
|
|
29019
29079
|
ml_flow_registry_uri: Optional[pulumi.Input[str]] = None,
|
|
29020
29080
|
public_network_access: Optional[pulumi.Input[str]] = None,
|
|
29021
29081
|
region_details: Optional[pulumi.Input[Sequence[pulumi.Input['RegistryRegionArmDetailsArgs']]]] = None,
|
|
29022
|
-
registry_private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input['RegistryPrivateEndpointConnectionArgs']]]] = None
|
|
29082
|
+
registry_private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input['RegistryPrivateEndpointConnectionArgs']]]] = None,
|
|
29083
|
+
syndicated_registries: Optional[pulumi.Input[Sequence[pulumi.Input['RegistrySyndicatedRegistriesArgs']]]] = None):
|
|
29023
29084
|
"""
|
|
29024
29085
|
Details of the Registry
|
|
29025
29086
|
:param pulumi.Input[str] discovery_url: Discovery URL for the Registry
|
|
@@ -29030,6 +29091,7 @@ class RegistryArgs:
|
|
|
29030
29091
|
Possible values: "Enabled" or "Disabled"
|
|
29031
29092
|
:param pulumi.Input[Sequence[pulumi.Input['RegistryRegionArmDetailsArgs']]] region_details: Details of each region the registry is in
|
|
29032
29093
|
:param pulumi.Input[Sequence[pulumi.Input['RegistryPrivateEndpointConnectionArgs']]] registry_private_endpoint_connections: Private endpoint connections info used for pending connections in private link portal
|
|
29094
|
+
:param pulumi.Input[Sequence[pulumi.Input['RegistrySyndicatedRegistriesArgs']]] syndicated_registries: List of tuples containing Guid and SyndicatedRegistry
|
|
29033
29095
|
"""
|
|
29034
29096
|
if discovery_url is not None:
|
|
29035
29097
|
pulumi.set(__self__, "discovery_url", discovery_url)
|
|
@@ -29045,6 +29107,8 @@ class RegistryArgs:
|
|
|
29045
29107
|
pulumi.set(__self__, "region_details", region_details)
|
|
29046
29108
|
if registry_private_endpoint_connections is not None:
|
|
29047
29109
|
pulumi.set(__self__, "registry_private_endpoint_connections", registry_private_endpoint_connections)
|
|
29110
|
+
if syndicated_registries is not None:
|
|
29111
|
+
pulumi.set(__self__, "syndicated_registries", syndicated_registries)
|
|
29048
29112
|
|
|
29049
29113
|
@property
|
|
29050
29114
|
@pulumi.getter(name="discoveryUrl")
|
|
@@ -29131,6 +29195,18 @@ class RegistryArgs:
|
|
|
29131
29195
|
def registry_private_endpoint_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegistryPrivateEndpointConnectionArgs']]]]):
|
|
29132
29196
|
pulumi.set(self, "registry_private_endpoint_connections", value)
|
|
29133
29197
|
|
|
29198
|
+
@property
|
|
29199
|
+
@pulumi.getter(name="syndicatedRegistries")
|
|
29200
|
+
def syndicated_registries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegistrySyndicatedRegistriesArgs']]]]:
|
|
29201
|
+
"""
|
|
29202
|
+
List of tuples containing Guid and SyndicatedRegistry
|
|
29203
|
+
"""
|
|
29204
|
+
return pulumi.get(self, "syndicated_registries")
|
|
29205
|
+
|
|
29206
|
+
@syndicated_registries.setter
|
|
29207
|
+
def syndicated_registries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegistrySyndicatedRegistriesArgs']]]]):
|
|
29208
|
+
pulumi.set(self, "syndicated_registries", value)
|
|
29209
|
+
|
|
29134
29210
|
|
|
29135
29211
|
if not MYPY:
|
|
29136
29212
|
class RegressionTrainingSettingsArgsDict(TypedDict):
|
|
@@ -34066,6 +34142,42 @@ class SynapseSparkArgs:
|
|
|
34066
34142
|
pulumi.set(self, "resource_id", value)
|
|
34067
34143
|
|
|
34068
34144
|
|
|
34145
|
+
if not MYPY:
|
|
34146
|
+
class SyndicatedRegistryArgsDict(TypedDict):
|
|
34147
|
+
"""
|
|
34148
|
+
A registry that is syndicated
|
|
34149
|
+
"""
|
|
34150
|
+
registry_id: NotRequired[pulumi.Input[str]]
|
|
34151
|
+
"""
|
|
34152
|
+
The Registry Id of the syndicated Registry
|
|
34153
|
+
"""
|
|
34154
|
+
elif False:
|
|
34155
|
+
SyndicatedRegistryArgsDict: TypeAlias = Mapping[str, Any]
|
|
34156
|
+
|
|
34157
|
+
@pulumi.input_type
|
|
34158
|
+
class SyndicatedRegistryArgs:
|
|
34159
|
+
def __init__(__self__, *,
|
|
34160
|
+
registry_id: Optional[pulumi.Input[str]] = None):
|
|
34161
|
+
"""
|
|
34162
|
+
A registry that is syndicated
|
|
34163
|
+
:param pulumi.Input[str] registry_id: The Registry Id of the syndicated Registry
|
|
34164
|
+
"""
|
|
34165
|
+
if registry_id is not None:
|
|
34166
|
+
pulumi.set(__self__, "registry_id", registry_id)
|
|
34167
|
+
|
|
34168
|
+
@property
|
|
34169
|
+
@pulumi.getter(name="registryId")
|
|
34170
|
+
def registry_id(self) -> Optional[pulumi.Input[str]]:
|
|
34171
|
+
"""
|
|
34172
|
+
The Registry Id of the syndicated Registry
|
|
34173
|
+
"""
|
|
34174
|
+
return pulumi.get(self, "registry_id")
|
|
34175
|
+
|
|
34176
|
+
@registry_id.setter
|
|
34177
|
+
def registry_id(self, value: Optional[pulumi.Input[str]]):
|
|
34178
|
+
pulumi.set(self, "registry_id", value)
|
|
34179
|
+
|
|
34180
|
+
|
|
34069
34181
|
if not MYPY:
|
|
34070
34182
|
class SystemCreatedAcrAccountArgsDict(TypedDict):
|
|
34071
34183
|
acr_account_name: NotRequired[pulumi.Input[str]]
|
|
@@ -283,6 +283,7 @@ __all__ = [
|
|
|
283
283
|
'RegistryPrivateLinkServiceConnectionStateResponse',
|
|
284
284
|
'RegistryRegionArmDetailsResponse',
|
|
285
285
|
'RegistryResponse',
|
|
286
|
+
'RegistryResponseSyndicatedRegistries',
|
|
286
287
|
'RegressionResponse',
|
|
287
288
|
'RegressionTrainingSettingsResponse',
|
|
288
289
|
'RequestConfigurationResponse',
|
|
@@ -323,6 +324,7 @@ __all__ = [
|
|
|
323
324
|
'SweepJobResponse',
|
|
324
325
|
'SynapseSparkResponse',
|
|
325
326
|
'SynapseSparkResponseProperties',
|
|
327
|
+
'SyndicatedRegistryResponse',
|
|
326
328
|
'SystemCreatedAcrAccountResponse',
|
|
327
329
|
'SystemCreatedStorageAccountResponse',
|
|
328
330
|
'SystemDataResponse',
|
|
@@ -26220,6 +26222,8 @@ class RegistryResponse(dict):
|
|
|
26220
26222
|
suggest = "region_details"
|
|
26221
26223
|
elif key == "registryPrivateEndpointConnections":
|
|
26222
26224
|
suggest = "registry_private_endpoint_connections"
|
|
26225
|
+
elif key == "syndicatedRegistries":
|
|
26226
|
+
suggest = "syndicated_registries"
|
|
26223
26227
|
|
|
26224
26228
|
if suggest:
|
|
26225
26229
|
pulumi.log.warn(f"Key '{key}' not found in RegistryResponse. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -26240,7 +26244,8 @@ class RegistryResponse(dict):
|
|
|
26240
26244
|
ml_flow_registry_uri: Optional[str] = None,
|
|
26241
26245
|
public_network_access: Optional[str] = None,
|
|
26242
26246
|
region_details: Optional[Sequence['outputs.RegistryRegionArmDetailsResponse']] = None,
|
|
26243
|
-
registry_private_endpoint_connections: Optional[Sequence['outputs.RegistryPrivateEndpointConnectionResponse']] = None
|
|
26247
|
+
registry_private_endpoint_connections: Optional[Sequence['outputs.RegistryPrivateEndpointConnectionResponse']] = None,
|
|
26248
|
+
syndicated_registries: Optional[Sequence['outputs.RegistryResponseSyndicatedRegistries']] = None):
|
|
26244
26249
|
"""
|
|
26245
26250
|
Details of the Registry
|
|
26246
26251
|
:param str discovery_url: Discovery URL for the Registry
|
|
@@ -26252,6 +26257,7 @@ class RegistryResponse(dict):
|
|
|
26252
26257
|
Possible values: "Enabled" or "Disabled"
|
|
26253
26258
|
:param Sequence['RegistryRegionArmDetailsResponse'] region_details: Details of each region the registry is in
|
|
26254
26259
|
:param Sequence['RegistryPrivateEndpointConnectionResponse'] registry_private_endpoint_connections: Private endpoint connections info used for pending connections in private link portal
|
|
26260
|
+
:param Sequence['RegistryResponseSyndicatedRegistries'] syndicated_registries: List of tuples containing Guid and SyndicatedRegistry
|
|
26255
26261
|
"""
|
|
26256
26262
|
if discovery_url is not None:
|
|
26257
26263
|
pulumi.set(__self__, "discovery_url", discovery_url)
|
|
@@ -26269,6 +26275,8 @@ class RegistryResponse(dict):
|
|
|
26269
26275
|
pulumi.set(__self__, "region_details", region_details)
|
|
26270
26276
|
if registry_private_endpoint_connections is not None:
|
|
26271
26277
|
pulumi.set(__self__, "registry_private_endpoint_connections", registry_private_endpoint_connections)
|
|
26278
|
+
if syndicated_registries is not None:
|
|
26279
|
+
pulumi.set(__self__, "syndicated_registries", syndicated_registries)
|
|
26272
26280
|
|
|
26273
26281
|
@property
|
|
26274
26282
|
@pulumi.getter(name="discoveryUrl")
|
|
@@ -26335,6 +26343,64 @@ class RegistryResponse(dict):
|
|
|
26335
26343
|
"""
|
|
26336
26344
|
return pulumi.get(self, "registry_private_endpoint_connections")
|
|
26337
26345
|
|
|
26346
|
+
@property
|
|
26347
|
+
@pulumi.getter(name="syndicatedRegistries")
|
|
26348
|
+
def syndicated_registries(self) -> Optional[Sequence['outputs.RegistryResponseSyndicatedRegistries']]:
|
|
26349
|
+
"""
|
|
26350
|
+
List of tuples containing Guid and SyndicatedRegistry
|
|
26351
|
+
"""
|
|
26352
|
+
return pulumi.get(self, "syndicated_registries")
|
|
26353
|
+
|
|
26354
|
+
|
|
26355
|
+
@pulumi.output_type
|
|
26356
|
+
class RegistryResponseSyndicatedRegistries(dict):
|
|
26357
|
+
@staticmethod
|
|
26358
|
+
def __key_warning(key: str):
|
|
26359
|
+
suggest = None
|
|
26360
|
+
if key == "syndicatedRegistry":
|
|
26361
|
+
suggest = "syndicated_registry"
|
|
26362
|
+
elif key == "syndicatedRegistryGuid":
|
|
26363
|
+
suggest = "syndicated_registry_guid"
|
|
26364
|
+
|
|
26365
|
+
if suggest:
|
|
26366
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistryResponseSyndicatedRegistries. Access the value via the '{suggest}' property getter instead.")
|
|
26367
|
+
|
|
26368
|
+
def __getitem__(self, key: str) -> Any:
|
|
26369
|
+
RegistryResponseSyndicatedRegistries.__key_warning(key)
|
|
26370
|
+
return super().__getitem__(key)
|
|
26371
|
+
|
|
26372
|
+
def get(self, key: str, default = None) -> Any:
|
|
26373
|
+
RegistryResponseSyndicatedRegistries.__key_warning(key)
|
|
26374
|
+
return super().get(key, default)
|
|
26375
|
+
|
|
26376
|
+
def __init__(__self__, *,
|
|
26377
|
+
syndicated_registry: Optional['outputs.SyndicatedRegistryResponse'] = None,
|
|
26378
|
+
syndicated_registry_guid: Optional[str] = None):
|
|
26379
|
+
"""
|
|
26380
|
+
:param 'SyndicatedRegistryResponse' syndicated_registry: A registry that is syndicated
|
|
26381
|
+
:param str syndicated_registry_guid: The Guid of the syndicated registry
|
|
26382
|
+
"""
|
|
26383
|
+
if syndicated_registry is not None:
|
|
26384
|
+
pulumi.set(__self__, "syndicated_registry", syndicated_registry)
|
|
26385
|
+
if syndicated_registry_guid is not None:
|
|
26386
|
+
pulumi.set(__self__, "syndicated_registry_guid", syndicated_registry_guid)
|
|
26387
|
+
|
|
26388
|
+
@property
|
|
26389
|
+
@pulumi.getter(name="syndicatedRegistry")
|
|
26390
|
+
def syndicated_registry(self) -> Optional['outputs.SyndicatedRegistryResponse']:
|
|
26391
|
+
"""
|
|
26392
|
+
A registry that is syndicated
|
|
26393
|
+
"""
|
|
26394
|
+
return pulumi.get(self, "syndicated_registry")
|
|
26395
|
+
|
|
26396
|
+
@property
|
|
26397
|
+
@pulumi.getter(name="syndicatedRegistryGuid")
|
|
26398
|
+
def syndicated_registry_guid(self) -> Optional[str]:
|
|
26399
|
+
"""
|
|
26400
|
+
The Guid of the syndicated registry
|
|
26401
|
+
"""
|
|
26402
|
+
return pulumi.get(self, "syndicated_registry_guid")
|
|
26403
|
+
|
|
26338
26404
|
|
|
26339
26405
|
@pulumi.output_type
|
|
26340
26406
|
class RegressionResponse(dict):
|
|
@@ -30273,6 +30339,46 @@ class SynapseSparkResponseProperties(dict):
|
|
|
30273
30339
|
return pulumi.get(self, "workspace_name")
|
|
30274
30340
|
|
|
30275
30341
|
|
|
30342
|
+
@pulumi.output_type
|
|
30343
|
+
class SyndicatedRegistryResponse(dict):
|
|
30344
|
+
"""
|
|
30345
|
+
A registry that is syndicated
|
|
30346
|
+
"""
|
|
30347
|
+
@staticmethod
|
|
30348
|
+
def __key_warning(key: str):
|
|
30349
|
+
suggest = None
|
|
30350
|
+
if key == "registryId":
|
|
30351
|
+
suggest = "registry_id"
|
|
30352
|
+
|
|
30353
|
+
if suggest:
|
|
30354
|
+
pulumi.log.warn(f"Key '{key}' not found in SyndicatedRegistryResponse. Access the value via the '{suggest}' property getter instead.")
|
|
30355
|
+
|
|
30356
|
+
def __getitem__(self, key: str) -> Any:
|
|
30357
|
+
SyndicatedRegistryResponse.__key_warning(key)
|
|
30358
|
+
return super().__getitem__(key)
|
|
30359
|
+
|
|
30360
|
+
def get(self, key: str, default = None) -> Any:
|
|
30361
|
+
SyndicatedRegistryResponse.__key_warning(key)
|
|
30362
|
+
return super().get(key, default)
|
|
30363
|
+
|
|
30364
|
+
def __init__(__self__, *,
|
|
30365
|
+
registry_id: Optional[str] = None):
|
|
30366
|
+
"""
|
|
30367
|
+
A registry that is syndicated
|
|
30368
|
+
:param str registry_id: The Registry Id of the syndicated Registry
|
|
30369
|
+
"""
|
|
30370
|
+
if registry_id is not None:
|
|
30371
|
+
pulumi.set(__self__, "registry_id", registry_id)
|
|
30372
|
+
|
|
30373
|
+
@property
|
|
30374
|
+
@pulumi.getter(name="registryId")
|
|
30375
|
+
def registry_id(self) -> Optional[str]:
|
|
30376
|
+
"""
|
|
30377
|
+
The Registry Id of the syndicated Registry
|
|
30378
|
+
"""
|
|
30379
|
+
return pulumi.get(self, "registry_id")
|
|
30380
|
+
|
|
30381
|
+
|
|
30276
30382
|
@pulumi.output_type
|
|
30277
30383
|
class SystemCreatedAcrAccountResponse(dict):
|
|
30278
30384
|
@staticmethod
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_azure_native/__init__.py,sha256=V1q8HTjJXA1qxNnH16EJYXM-MRm5aYpWM4rxj5KeMQA,1145022
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=UL5vEmfNrBfiaeFQS69cz7xlHoBnPH8PY_UIVNwShcM,10486
|
|
3
3
|
pulumi_azure_native/provider.py,sha256=ijD50GjYD0xTGWJVAR_zi8DRpow_AcfiaEDdwOwh-D8,23052
|
|
4
|
-
pulumi_azure_native/pulumi-plugin.json,sha256=
|
|
4
|
+
pulumi_azure_native/pulumi-plugin.json,sha256=oUcTaTmXvPnfy_rJFqltYBLExs5CbdssnBw3bsh_wYs,89
|
|
5
5
|
pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_azure_native/aad/__init__.py,sha256=O2XPJyft-EiRyZdbKAbADw_hWhoH_Yn8KOwWpJprjs0,669
|
|
7
7
|
pulumi_azure_native/aad/_enums.py,sha256=nEE4b-gxeGR_DXhJA6WTIznl4AA5UmVTKpvu2PV66RE,3419
|
|
@@ -17370,7 +17370,7 @@ pulumi_azure_native/machinelearningservices/v20241001/workspace.py,sha256=XxsG8E
|
|
|
17370
17370
|
pulumi_azure_native/machinelearningservices/v20241001/workspace_connection.py,sha256=KWxLrzTe-yG1u97_qbDaEw4GPBSqwEKuLuowkIYCO7c,16145
|
|
17371
17371
|
pulumi_azure_native/machinelearningservices/v20241001preview/__init__.py,sha256=IiTOvP8oOuVwRE48uj7D8GO8MVyP3FXCwN4shXM6pNM,4752
|
|
17372
17372
|
pulumi_azure_native/machinelearningservices/v20241001preview/_enums.py,sha256=3NJDP4XgROQiojsOLFNOpgcUaNvTJKuorgwdXjVljxA,62125
|
|
17373
|
-
pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py,sha256=
|
|
17373
|
+
pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py,sha256=WdKs9V7vNEmcHTeWhSlP4kRCHEF13WAsnyS2CONwBGc,1567823
|
|
17374
17374
|
pulumi_azure_native/machinelearningservices/v20241001preview/batch_deployment.py,sha256=9HRGpXnR5wxSsJQ6Zvi0maI2RGjqHwn30O0aSI7i7_g,18846
|
|
17375
17375
|
pulumi_azure_native/machinelearningservices/v20241001preview/batch_endpoint.py,sha256=-kJbU5JdwSuGwTgZLig5uXcxVs15bJmq2Bvaw7oEZEI,17709
|
|
17376
17376
|
pulumi_azure_native/machinelearningservices/v20241001preview/capability_host.py,sha256=qyYU1IzdyH8NtxRIdyLaVV3k5HbSk2h-9KSAuoLGsws,9646
|
|
@@ -17471,7 +17471,7 @@ pulumi_azure_native/machinelearningservices/v20241001preview/model_container.py,
|
|
|
17471
17471
|
pulumi_azure_native/machinelearningservices/v20241001preview/model_version.py,sha256=KHeMUZcgAR6xk7513JUu2nOklZVJlq7lJRPy4wepa8A,12028
|
|
17472
17472
|
pulumi_azure_native/machinelearningservices/v20241001preview/online_deployment.py,sha256=tk23jejGz4op5naUJk-xZPwU-yBtFzVa5IyFy8NfnfY,19299
|
|
17473
17473
|
pulumi_azure_native/machinelearningservices/v20241001preview/online_endpoint.py,sha256=L2WZm7GO6BGwgMn2sm5zuadv9fAhwzIVfijS1yCIbNw,17728
|
|
17474
|
-
pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py,sha256=
|
|
17474
|
+
pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py,sha256=3aZKPM6lkCdAwPyTQMItoTPpuUUx8laXJlxLGWPCmwM,1310979
|
|
17475
17475
|
pulumi_azure_native/machinelearningservices/v20241001preview/private_endpoint_connection.py,sha256=UspjWrGt90WKrY15tSQVbZ4aHnF2gtLTHoGJgbg22fc,20582
|
|
17476
17476
|
pulumi_azure_native/machinelearningservices/v20241001preview/rai_policy.py,sha256=L7PUB6CVPLZgTkYLOShcBheblmGtW_EkJNEc6cssw6M,11485
|
|
17477
17477
|
pulumi_azure_native/machinelearningservices/v20241001preview/registry.py,sha256=brSAjoEwKi51nunzPCnIY5Mf5P4OSXL3s2z_LzFhsqk,16005
|
|
@@ -30403,7 +30403,7 @@ pulumi_azure_native/workloads/v20240901/sap_application_server_instance.py,sha25
|
|
|
30403
30403
|
pulumi_azure_native/workloads/v20240901/sap_central_server_instance.py,sha256=eorizuwGPlHaa-R7seqv1ZW7oqM3Ae68X_EUHHfHMzQ,16551
|
|
30404
30404
|
pulumi_azure_native/workloads/v20240901/sap_database_instance.py,sha256=glkxQJ8mHANMOyZ_m_GEUO9doepUAPxuPshRLYxwaMU,14157
|
|
30405
30405
|
pulumi_azure_native/workloads/v20240901/sap_virtual_instance.py,sha256=oMD5HXY2B5ywv0FQt-8INmP3fTt-huBJNeQzF5ZuOJk,24431
|
|
30406
|
-
pulumi_azure_native-2.81.
|
|
30407
|
-
pulumi_azure_native-2.81.
|
|
30408
|
-
pulumi_azure_native-2.81.
|
|
30409
|
-
pulumi_azure_native-2.81.
|
|
30406
|
+
pulumi_azure_native-2.81.0a1736153496.dist-info/METADATA,sha256=aOmDJOKP0svGeW12p8SQBCavTlXbDVqYgYi235IRCI0,3635
|
|
30407
|
+
pulumi_azure_native-2.81.0a1736153496.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
30408
|
+
pulumi_azure_native-2.81.0a1736153496.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
30409
|
+
pulumi_azure_native-2.81.0a1736153496.dist-info/RECORD,,
|
|
File without changes
|