azureml-core 1.57.0__py3-none-any.whl → 1.57.0.post2__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.
@@ -1,9 +1,9 @@
1
1
  {
2
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04": "20240709.v1",
3
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "20240709.v1",
4
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "20240709.v1",
5
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "20240709.v1",
6
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20240709.v1",
7
- "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "20240709.v1",
8
- "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20240709.v1"
2
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04": "20240908.v1",
3
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "20240908.v1",
4
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "20240908.v1",
5
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "20240908.v1",
6
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20240908.v1",
7
+ "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "20240908.v1",
8
+ "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20240908.v1"
9
9
  }
@@ -1,45 +1,2 @@
1
1
  azureml-core
2
- azureml-train
3
- azureml-sdk
4
- azureml-defaults
5
- azureml-train-core
6
- azureml-automl-core
7
- azureml-automl-runtime
8
- azureml-training-tabular
9
- azureml-train-automl
10
- azureml-train-automl-client
11
- azureml-train-automl-runtime
12
- azureml-contrib-automl-dnn-forecasting
13
- azureml-automl-dnn-vision
14
2
  azureml-automl-dnn-nlp
15
- azureml-contrib-automl-pipeline-steps
16
- azureml-train-restclients-hyperdrive
17
- azureml-telemetry
18
- azureml-tensorboard
19
- azureml-contrib-notebook
20
- azureml-explain-model
21
- azureml-interpret
22
- azureml-contrib-server
23
- azureml-contrib-services
24
- azureml-contrib-iot
25
- azureml-contrib-run
26
- azureml-datadrift
27
- azureml-widgets
28
- azureml-pipeline
29
- azureml-pipeline-core
30
- azureml-pipeline-steps
31
- azureml-contrib-pipeline-steps
32
- azureml-cli-common
33
- azureml-opendatasets
34
- azureml-accel-models
35
- azureml-mlflow
36
- azureml-contrib-functions
37
- azureml-contrib-dataset
38
- azureml-contrib-reinforcementlearning
39
- azureml-contrib-mir
40
- azureml-contrib-fairness
41
- azureml-contrib-aisc
42
- azureml-dataset-runtime
43
- azureml-synapse
44
- azureml-responsibleai
45
- azureml-automl-common-tools
@@ -230,6 +230,9 @@ class JasmineClient(ExperimentClient):
230
230
  # This is a workaround to convert EnvironmentDefinition => azureml.core.Environment
231
231
  client_models = {"EnvironmentDefinition": EnvironmentDefinition}
232
232
  serializer = Serializer(client_models)
233
+ docker = automl_curated_env_output.environment.docker
234
+ if docker and docker.build_context:
235
+ docker.build_context.location_type = self._init_lower_case(docker.build_context.location_type.value)
233
236
  environment_json = serializer.body(automl_curated_env_output.environment, "EnvironmentDefinition")
234
237
  environment = Environment._deserialize_and_add_to_object(environment_json)
235
238
 
@@ -253,3 +256,6 @@ class JasmineClient(ExperimentClient):
253
256
  input)
254
257
 
255
258
  return validation_output
259
+
260
+ def _init_lower_case(self, s: str):
261
+ return s[0].lower() + s[1:]
@@ -98,6 +98,7 @@ from .meta_api_version_response import MetaApiVersionResponse
98
98
  from .auto_ml_curated_env_input import AutoMLCuratedEnvInput
99
99
  from .python_section import PythonSection
100
100
  from .docker_image_platform import DockerImagePlatform
101
+ from .docker_build_context import DockerBuildContext
101
102
  from .registry_identity import RegistryIdentity
102
103
  from .container_registry import ContainerRegistry
103
104
  from .docker_section import DockerSection
@@ -481,6 +482,7 @@ from .rest_client_enums import (
481
482
  ServiceDataAccessAuthIdentity,
482
483
  SqlCredentialTypes,
483
484
  HdfsCredentialType,
485
+ BuildContextLocationType,
484
486
  Framework,
485
487
  Communicator,
486
488
  DataStoreMode,
@@ -631,6 +633,7 @@ __all__ = [
631
633
  'AutoMLCuratedEnvInput',
632
634
  'PythonSection',
633
635
  'DockerImagePlatform',
636
+ 'DockerBuildContext',
634
637
  'RegistryIdentity',
635
638
  'ContainerRegistry',
636
639
  'DockerSection',
@@ -1013,6 +1016,7 @@ __all__ = [
1013
1016
  'ServiceDataAccessAuthIdentity',
1014
1017
  'SqlCredentialTypes',
1015
1018
  'HdfsCredentialType',
1019
+ 'BuildContextLocationType',
1016
1020
  'Framework',
1017
1021
  'Communicator',
1018
1022
  'DataStoreMode',
@@ -0,0 +1,37 @@
1
+ # coding=utf-8
2
+ # --------------------------------------------------------------------------
3
+ # Copyright (c) Microsoft Corporation. All rights reserved.
4
+ # Licensed under the MIT License. See License.txt in the project root for
5
+ # license information.
6
+ #
7
+ # Code generated by Microsoft (R) AutoRest Code Generator 2.3.33.0
8
+ # Changes may cause incorrect behavior and will be lost if the code is
9
+ # regenerated.
10
+ # --------------------------------------------------------------------------
11
+
12
+ from msrest.serialization import Model
13
+
14
+
15
+ class DockerBuildContext(Model):
16
+ """DockerBuildContext.
17
+
18
+ :param location_type: Possible values include: 'Git', 'StorageAccount'
19
+ :type location_type: str or ~_restclient.models.BuildContextLocationType
20
+ :param location: Location of Docker build context.
21
+ :type location: str
22
+ :param dockerfile_path: Relative path of the Dockerfile to use during
23
+ image build. Default value: "Dockerfile" .
24
+ :type dockerfile_path: str
25
+ """
26
+
27
+ _attribute_map = {
28
+ 'location_type': {'key': 'locationType', 'type': 'BuildContextLocationType'},
29
+ 'location': {'key': 'location', 'type': 'str'},
30
+ 'dockerfile_path': {'key': 'dockerfilePath', 'type': 'str'},
31
+ }
32
+
33
+ def __init__(self, location_type=None, location=None, dockerfile_path="Dockerfile"):
34
+ super(DockerBuildContext, self).__init__()
35
+ self.location_type = location_type
36
+ self.location = location
37
+ self.dockerfile_path = dockerfile_path
@@ -24,27 +24,28 @@ class DockerSection(Model):
24
24
  :param base_dockerfile: Base Dockerfile used for Docker-based runs.
25
25
  Mutually exclusive with BaseImage and DockerContext.
26
26
  :type base_dockerfile: str
27
- :param docker_context: URL to Docker build context, in a storage account
28
- or Git repository. Mutually exclusive with BaseImage and BaseDockerfile.
29
- :type docker_context: str
27
+ :param build_context:
28
+ :type build_context: ~_restclient.models.DockerBuildContext
30
29
  :param base_image_registry: Image registry that contains the base image.
31
30
  :type base_image_registry: ~_restclient.models.ContainerRegistry
31
+ :param enabled:
32
+ :type enabled: bool
32
33
  """
33
34
 
34
35
  _attribute_map = {
35
36
  'base_image': {'key': 'baseImage', 'type': 'str'},
36
37
  'platform': {'key': 'platform', 'type': 'DockerImagePlatform'},
37
38
  'base_dockerfile': {'key': 'baseDockerfile', 'type': 'str'},
38
- 'docker_context': {'key': 'dockerContext', 'type': 'str'},
39
+ 'build_context': {'key': 'buildContext', 'type': 'DockerBuildContext'},
39
40
  'base_image_registry': {'key': 'baseImageRegistry', 'type': 'ContainerRegistry'},
40
41
  'enabled': {'key': 'enabled', 'type': 'bool'},
41
42
  }
42
43
 
43
- def __init__(self, base_image=None, platform=None, base_dockerfile=None, docker_context=None, base_image_registry=None, enabled=None):
44
+ def __init__(self, base_image=None, platform=None, base_dockerfile=None, build_context=None, base_image_registry=None, enabled=None):
44
45
  super(DockerSection, self).__init__()
45
46
  self.base_image = base_image
46
47
  self.platform = platform
47
48
  self.base_dockerfile = base_dockerfile
48
- self.docker_context = docker_context
49
+ self.build_context = build_context
49
50
  self.base_image_registry = base_image_registry
50
51
  self.enabled = enabled
@@ -57,6 +57,12 @@ class HdfsCredentialType(Enum):
57
57
  kerberos_password = "KerberosPassword"
58
58
 
59
59
 
60
+ class BuildContextLocationType(Enum):
61
+
62
+ git = "Git"
63
+ storage_account = "StorageAccount"
64
+
65
+
60
66
  class Framework(Enum):
61
67
 
62
68
  python = "Python"
@@ -53,8 +53,7 @@ def get_application_insights_region(workspace_region):
53
53
  "polandcentral": "northeurope",
54
54
  "italynorth": "westeurope",
55
55
  "chinaeast3": "chinaeast2",
56
- "spaincentral": "francecentral",
57
- "israelcentral": "westeurope"
56
+ "spaincentral": "francecentral"
58
57
  }.get(workspace_region, workspace_region)
59
58
 
60
59
 
azureml/core/model.py CHANGED
@@ -639,7 +639,6 @@ class Model(object):
639
639
 
640
640
  if child_paths:
641
641
  for path in child_paths:
642
- model_path = os.path.normpath(model_path)
643
642
  if not os.path.exists(os.path.join(model_path, path)):
644
643
  raise WebserviceException('Error, provided child path "{}" cannot be found'.format(path),
645
644
  logger=module_logger)
azureml/core/runconfig.py CHANGED
@@ -1455,8 +1455,7 @@ class RunConfiguration(_AbstractRunConfigElement):
1455
1455
  raise UserErrorException("Name is required to save the runconfig")
1456
1456
  else:
1457
1457
  # A user might have specified the file location to save.
1458
- parent_dir = os.path.dirname(path)
1459
- parent_dir = os.path.normpath(parent_dir)
1458
+ parent_dir = os.path.dirname(path)
1460
1459
  if os.path.exists(parent_dir) and os.path.isdir(parent_dir):
1461
1460
  project_dir_case = False
1462
1461
  else:
@@ -1529,7 +1528,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1529
1528
  run_config_dir_name = get_run_config_dir_name(path) + "/"
1530
1529
  full_runconfig_path = os.path.join(path, run_config_dir_name + name)
1531
1530
 
1532
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1533
1531
  if os.path.isfile(full_runconfig_path):
1534
1532
  full_runconfig_path = os.path.normpath(full_runconfig_path)
1535
1533
  return RunConfiguration._load_from_path(full_runconfig_path=full_runconfig_path,
@@ -1539,12 +1537,10 @@ class RunConfiguration(_AbstractRunConfigElement):
1539
1537
 
1540
1538
  # Appending .runconfig suffix for backcompat case.
1541
1539
  full_runconfig_path = full_runconfig_path + RUNCONFIGURATION_EXTENSION
1542
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1543
1540
  if not os.path.isfile(full_runconfig_path) and name:
1544
1541
  # check for file not in .azureml or aml_config directory
1545
1542
  full_runconfig_path = os.path.join(path, name + RUNCONFIGURATION_EXTENSION)
1546
1543
 
1547
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1548
1544
  if os.path.isfile(full_runconfig_path):
1549
1545
  # Setting name=name_with_ext, so that any subsequent save happens
1550
1546
  # on the name.runconfig file instead of name
@@ -1570,7 +1566,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1570
1566
  :return: The run configuration object.
1571
1567
  :rtype: RunConfiguration
1572
1568
  """
1573
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1574
1569
  with open(full_runconfig_path, "r") as run_config:
1575
1570
  # Loads with all the comments intact.
1576
1571
  commented_map_dict = ruamelyaml.round_trip_load(run_config)
@@ -1596,15 +1591,11 @@ class RunConfiguration(_AbstractRunConfigElement):
1596
1591
  legacy_full_file_path = os.path.join(path, AML_CONFIG_DIR, name + RUNCONFIGURATION_EXTENSION)
1597
1592
  legacy_full_file_path = os.path.normpath(legacy_full_file_path)
1598
1593
  full_file_path = os.path.join(path, AZUREML_DIR, name + RUNCONFIGURATION_EXTENSION)
1599
- legacy_full_file_path = os.path.normpath(legacy_full_file_path)
1600
1594
  if os.path.isfile(legacy_full_file_path):
1601
1595
  file_found = True
1602
- legacy_full_file_path = os.path.normpath(legacy_full_file_path)
1603
1596
  os.remove(legacy_full_file_path)
1604
- full_file_path = os.path.normpath(full_file_path)
1605
1597
  if os.path.isfile(full_file_path):
1606
1598
  file_found = True
1607
- full_file_path = os.path.normpath(full_file_path)
1608
1599
  os.remove(full_file_path)
1609
1600
 
1610
1601
  if file_found == False:
@@ -1715,7 +1706,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1715
1706
  raise UserErrorException("Compute target = {} doesn't exist at {}".format(
1716
1707
  run_config_object.target, compute_target_path))
1717
1708
 
1718
- compute_target_path = os.path.normpath(compute_target_path)
1719
1709
  with open(compute_target_path, "r") as compute_target_file:
1720
1710
  compute_target_dict = ruamelyaml.round_trip_load(compute_target_file)
1721
1711
  if "baseDockerImage" in compute_target_dict:
@@ -1783,7 +1773,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1783
1773
  raise UserErrorException("Spark dependencies file = {} doesn't exist at {}".format(
1784
1774
  spark_dependencies_file, spark_dependencies_path))
1785
1775
 
1786
- spark_dependencies_path = os.path.normpath(spark_dependencies_path)
1787
1776
  with open(spark_dependencies_path, "r") as spark_file:
1788
1777
  if use_commented_map:
1789
1778
  spark_file_dict = ruamelyaml.round_trip_load(spark_file)
@@ -1840,14 +1829,12 @@ class RunConfiguration(_AbstractRunConfigElement):
1840
1829
  _yaml_set_comment_before_after_key_with_error(
1841
1830
  commented_map_dict, "environment", "The file path that contains the environment configuration.")
1842
1831
 
1843
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1844
1832
  with open(full_runconfig_path, 'w') as outfile:
1845
1833
  ruamelyaml.round_trip_dump(commented_map_dict, outfile)
1846
1834
  full_env_path = os.path.normpath(full_env_path)
1847
1835
  with open(full_env_path, 'w') as outfile:
1848
1836
  ruamelyaml.round_trip_dump(environment_commented_map, outfile)
1849
1837
  else:
1850
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1851
1838
  with open(full_runconfig_path, 'w') as outfile:
1852
1839
  ruamelyaml.round_trip_dump(commented_map_dict, outfile)
1853
1840
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azureml-core
3
- Version: 1.57.0
3
+ Version: 1.57.0.post2
4
4
  Summary: Azure Machine Learning core packages, modules, and classes
5
5
  Home-page: https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py
6
6
  Author: Microsoft Corp
@@ -247,8 +247,8 @@ azureml/_model_management/data/mms_workspace_image_payload_template.json,sha256=
247
247
  azureml/_project/__init__.py,sha256=fXk56x7HrgsyVMGN5yuE08JN9x0JszBhsBNBX5NOneY,412
248
248
  azureml/_project/_commands.py,sha256=gUNeO7UoxFDplcm5dT68t2pAL_rTKRY8_0oZIS0O_ec,39864
249
249
  azureml/_project/_compute_target_commands.py,sha256=nsL0-XPsxLaANF_ZZ73pFDqgTxEe7l2c2c7B7qouPfk,12504
250
- azureml/_project/azureml_base_images.json,sha256=DZ9xcAmNQ_r25ylymdR3Ob_BSXOsJhxYweYLlXMskC0,601
251
- azureml/_project/azureml_sdk_scope.txt,sha256=OM-LZGG5t7Vy3Pe9sg1Ll09U5BbVf7RDyEROVEk8-L0,1067
250
+ azureml/_project/azureml_base_images.json,sha256=g5Ue7rNC_nFYeHmb-KmnHj0kJz1SwcDUicKY4ltv8mo,601
251
+ azureml/_project/azureml_sdk_scope.txt,sha256=LqVLXL5LzukyN3OK_CGFgQfcQFoW5Lu31D2DtZsFIYg,38
252
252
  azureml/_project/file_utilities.py,sha256=nrWTVp1QB_6jhZQ2fJOXDx49UXafRRmd5VzAs9ceBNo,2597
253
253
  azureml/_project/ignore_file.py,sha256=LV_-DZ0qGV95a6UhMZcSeqV_bl0DwKnaHh7iO6Dwu_M,3219
254
254
  azureml/_project/index_location.txt,sha256=y0QQZ0ezioStHt6IkKGm3Z5FCjS7oBAtBH4QkxQOHsQ,32
@@ -269,7 +269,7 @@ azureml/_restclient/constants.py,sha256=cG5T8xtrgPBPwckSmDLo-cXlxWx502xNzRdweNeh
269
269
  azureml/_restclient/environment_client.py,sha256=zKHAs2PhYW1xuau7aqyQzBVDPSnSJKBvkFvlnzmRCgE,10593
270
270
  azureml/_restclient/exceptions.py,sha256=LszbL91f9p3P5QdbVdu8BZDa-AusvGtuvMw9iGsVjxw,3105
271
271
  azureml/_restclient/experiment_client.py,sha256=tTrw3uTBNttHEeENO5_oLkNd9wrB_-60tRERyDubrpA,19719
272
- azureml/_restclient/jasmine_client.py,sha256=cy7sbCyP6r5UEno45u2dZNVS_9D0EoDa-iS7ZvbHawA,10287
272
+ azureml/_restclient/jasmine_client.py,sha256=0WUoX7YTAQzSjpFylBnPa8gFc0QiX3zCgEXBjyTBIDg,10589
273
273
  azureml/_restclient/metrics_client.py,sha256=HmS7CWDDlQGfB823SUMuoUxAdvoyhlkdNy_o6zUSXCc,29055
274
274
  azureml/_restclient/models_client.py,sha256=hc7o6zmjIPSLd8oLdoiVKPeWlszBT3js_LE3jlJWVEc,5884
275
275
  azureml/_restclient/polling.py,sha256=RgfUkBcZwb-GRmwdVnvh2H4fuEOz_29Yo930vO0V5sA,741
@@ -296,7 +296,7 @@ azureml/_restclient/contracts/__init__.py,sha256=DG3ntUPILtNSJGUT5gJdEu_1v8g3_gT
296
296
  azureml/_restclient/contracts/events.py,sha256=q30GtxbyNdnZ7ewTg-tDK3U4zIiEqY-KMnxToVMXL8c,4186
297
297
  azureml/_restclient/contracts/query_params.py,sha256=0v2a6WijXXLR4OjKl0NxCxbxQFA05oT7tQP9U_bljYs,889
298
298
  azureml/_restclient/contracts/utils.py,sha256=zp2l1yHowEFmRewZfBEqvyQMM0lAAGqp0FLsat0i5Ck,1010
299
- azureml/_restclient/models/__init__.py,sha256=ymsg2Ex8meyYUWXcyVOidiDYV_Q8Df2aIx_PUdUhfnk,45132
299
+ azureml/_restclient/models/__init__.py,sha256=OGjuu3pRlwAbRjqJEnqhWQSLa77iDcC52TSpi1YW9I4,45277
300
300
  azureml/_restclient/models/aci_service_create_request.py,sha256=Xd_vnjLuN2_RnNmL-2mCCtt3yLSyQ0L7XYk_zBb4mT4,6503
301
301
  azureml/_restclient/models/aci_service_create_request_container_resource_requirements.py,sha256=KN460jC4NwcYkEWc2IT6KlAFSPqHejRSxOuh9fzoEIQ,1326
302
302
  azureml/_restclient/models/aci_service_create_request_data_collection.py,sha256=TbEbHdGub0qhHw8O1oRSX2yzkAYIE-PYJ393e7nD74Y,1109
@@ -494,13 +494,14 @@ azureml/_restclient/models/diagnose_response_result_value.py,sha256=Kv7kWfa0gb5T
494
494
  azureml/_restclient/models/diagnose_result.py,sha256=nqufMnrGX_ZA8DrllWIhL9w_3y118rUMr2TsR9ol8Qo,1512
495
495
  azureml/_restclient/models/diagnose_workspace_parameters.py,sha256=CZ4BwAwtKYLUA2wvmxEW9zNng-3qGiNzIydoSZpEUQo,945
496
496
  azureml/_restclient/models/dir_tree_node.py,sha256=mOfUOYhJT8WlfwvPDSbDiTrHKU7N1WMISrA2OOh4MdQ,1761
497
+ azureml/_restclient/models/docker_build_context.py,sha256=KgE9Lc5IgarHqP3GH_ONNkjJk5vVLOmaQCenCYCYzuM,1518
497
498
  azureml/_restclient/models/docker_configuration.py,sha256=QFzbK6c7dzv2XFbiC8CM5D6Hasw-VVVK0KLDydGdRzA,1790
498
499
  azureml/_restclient/models/docker_image.py,sha256=m8i9lCsYhm_DtUOlwIaXMCCgjQ_ZGizv8GsArQOut2E,4577
499
500
  azureml/_restclient/models/docker_image_platform.py,sha256=x60-4uWVItBRcfpcNwtOCwcZIHSYkJhAFBQeUq3d1ic,1017
500
501
  azureml/_restclient/models/docker_image_request.py,sha256=TsdRkDCxQrWXSUs6lkKdSaZlu-Y1MbS7UDO4BZGdnvI,3266
501
502
  azureml/_restclient/models/docker_image_response.py,sha256=lmuB2TK4XR-4M-p7d2nbW9-aHnBXwGHmCe6g-ZqKOos,6240
502
503
  azureml/_restclient/models/docker_image_response_target_runtime.py,sha256=iRjChCb4ykBscCtv96Uq6NOGyChkL_ejj3Osl0qBmA0,1672
503
- azureml/_restclient/models/docker_section.py,sha256=41TzgPDp9GDZjHVU1LIRVprhKHTEJRKDEv6hM530oNE,2307
504
+ azureml/_restclient/models/docker_section.py,sha256=HIFhOSpymfLNw3aP-q3QXmj5a60owB510B6KQzoDtrQ,2267
504
505
  azureml/_restclient/models/dynamic_whitelist_settings.py,sha256=FdeTYG8PZG4qkjY6huGCv6QOV9kshpzCrI7zv-pX1KQ,2542
505
506
  azureml/_restclient/models/dynamic_whitelist_settings_dto.py,sha256=IzgaIAuDbkH-ES6YMZG8DrWkUa8UTbq13vx3xI0oxQk,2447
506
507
  azureml/_restclient/models/encryption_properties.py,sha256=SyXgxConCcFWOLX5dRK9NXa_WlBwGy2FIsyYymbiACw,1304
@@ -722,7 +723,7 @@ azureml/_restclient/models/resource_name.py,sha256=4mUiiv2PuXVtP4WTuPj98Ao5Y0QK4
722
723
  azureml/_restclient/models/resource_quota.py,sha256=_gRJMAPEvz1zYNASDV4eWIJVD_VhcrOGRcZl162Dj48,1907
723
724
  azureml/_restclient/models/resource_sku_location_info.py,sha256=2ud80_A7g6QSx7DalLdt2124qYXrRzUDs9nv-Dkz_us,1620
724
725
  azureml/_restclient/models/resource_sku_zone_details.py,sha256=9SyeNU7mqbjXLvxlQrA8Dw5IYaZEnWYN9YVSjQhiFkY,1470
725
- azureml/_restclient/models/rest_client_enums.py,sha256=Rd5K3YezmSt-uFu9VRjcXCy78EXp2yHt4rxAhvnbIBw,10557
726
+ azureml/_restclient/models/rest_client_enums.py,sha256=UpOXcicV6jHpagby3L_gfMI28ICqSMg-zuW3Ml28314,10659
726
727
  azureml/_restclient/models/restriction.py,sha256=VUM11ogA26v1jAMQxws5H7BkxKLrKeZIX7TDZfH0AlU,1768
727
728
  azureml/_restclient/models/retrieve_full_fidelity_metric_request_dto.py,sha256=kS2sg3wtGnizzW--2j6y89oWreC_1K-D0eiUnrnbGZQ,1509
728
729
  azureml/_restclient/models/rgit_hub_package.py,sha256=7iw-4KE55r4KVlF29uOei6LB2L04ehepzd5fUDlaHUw,1171
@@ -1153,7 +1154,7 @@ azureml/_vendor/ruamel/yaml/util.py,sha256=OuYsMZEqNNE8Suzc_6GwJALdQCPLy8VhPe3Qx
1153
1154
  azureml/_workspace/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
1154
1155
  azureml/_workspace/_arm_deployment_orchestrator.py,sha256=SnaR44naFsUkRQKvVElA95lqJr7jH79pUBLWrHkNTQ8,6585
1155
1156
  azureml/_workspace/_private_endpoint_deployment_orchestrator.py,sha256=xwAZPEAwSN-oCwx2dfdgVHBJ3yAC8vTvTP06G7KERwI,7410
1156
- azureml/_workspace/_utils.py,sha256=uNGJBfm54llkyIitC_XLLTqZLxLO8sLobzijQCzzohw,24438
1157
+ azureml/_workspace/_utils.py,sha256=ucOqYmaHoorLcSjvIRhkWX6dma6WX3DqPRyQbCmmXcI,24398
1157
1158
  azureml/_workspace/arm_template_builder.py,sha256=9EvORjIo0buprK7I9cFunFw1ENLPVZLP_-NZFJYKebk,20398
1158
1159
  azureml/_workspace/custom.py,sha256=hWqmadHcUCAwvTyf5-iEfUp99YMt87H4J_tFrwkxMww,19391
1159
1160
  azureml/_workspace/mlservicesworkspacetemplate.json,sha256=qfBAmfALbkvJxNK10SimckoCrsblGlkdMEa5FTc4NNE,4094
@@ -1185,12 +1186,12 @@ azureml/core/environment.py,sha256=YF8TWgsKRdzRUNISKx383SVQQNcdmPzgpZpDoePPk9w,7
1185
1186
  azureml/core/experiment.py,sha256=yC3lVr97RoFXFZGNb1tQUdKJTlK_88jLBjKZXeLun3Q,24537
1186
1187
  azureml/core/keyvault.py,sha256=QchGc35DAimaWzdeEH-1wVatFgFFSWUgMNvtH5othIM,6602
1187
1188
  azureml/core/linked_service.py,sha256=zZEu28ooMIb9fUmuKtqfmNU25GwEvqKciGpDmVoqM5Y,9547
1188
- azureml/core/model.py,sha256=zAIPgnN5ATPEG0eWFCducNvTlOxVM4y-P1mmWrYPpeU,142704
1189
+ azureml/core/model.py,sha256=mvCdvSdTbOM7mUA5hPVZ27rcDgDQBibiG9EZ6lpPRgA,142645
1189
1190
  azureml/core/private_endpoint.py,sha256=rywS6SyNxOFz8EMXC7j3vEyN6jVSf4uTy-DPthA0D0U,6354
1190
1191
  azureml/core/profile.py,sha256=YqmxLsKONfrLMwmkat7fDYYKtMA3F5N1ndnr9jIWTSc,18627
1191
1192
  azureml/core/resource_configuration.py,sha256=BtHJWVf_RqeNRJddVfembTOyXrSF2Tt8EwB7DLK7ZHQ,6001
1192
1193
  azureml/core/run.py,sha256=evL5bH2uCwayelN-xCCG7SR3hch3Cd8UK8uVIDiOZGM,115120
1193
- azureml/core/runconfig.py,sha256=7gvpUItgo65flcqqGKMJgX8AjOTMw_vtZkC-5zg8XKc,100921
1194
+ azureml/core/runconfig.py,sha256=LEKwc13VV-Hz01KqCmIKDB4azkpSRePVO4xiSewDr3w,100007
1194
1195
  azureml/core/script_run.py,sha256=S8-fvK2UkuSReoWDYZKpf4TtD4JV7MD1yPuufzOMBGI,12412
1195
1196
  azureml/core/script_run_config.py,sha256=wlbVeXEsliyZ2YTbxvPFwS2W0qiVRApQrv89T5cPDZE,27688
1196
1197
  azureml/core/util.py,sha256=G8Olw1seYwpkIHnaMgnh-Nb9rfXqWWhsKRUAIjnflX0,1487
@@ -1322,9 +1323,9 @@ azureml/exceptions/__init__.py,sha256=wAB_C_TNpL8FK6GXeygupED6mG5IfSrLx_moV7NHIp
1322
1323
  azureml/exceptions/_azureml_exception.py,sha256=XxvMTrADJiTIHSn8DHj2fmyDUhYyBuVUqxYR3cuibz4,18989
1323
1324
  azureml/history/__init__.py,sha256=8U_yD6fMdk8Ok3Z-GO_ibddTgQEB-aY6BTT8t9aYGZw,274
1324
1325
  azureml/history/_tracking.py,sha256=IcZoVbHsOA01eQ3Ealnxe1YbNNnQi4LA5ccINB1cTrU,18541
1325
- azureml_core-1.57.0.dist-info/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
1326
- azureml_core-1.57.0.dist-info/METADATA,sha256=BP3dctjjbcaSj-SLxnlJnzM3_fHQzR2wD_m7O3fBCO0,3113
1327
- azureml_core-1.57.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
1328
- azureml_core-1.57.0.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
1329
- azureml_core-1.57.0.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
1330
- azureml_core-1.57.0.dist-info/RECORD,,
1326
+ azureml_core-1.57.0.post2.dist-info/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
1327
+ azureml_core-1.57.0.post2.dist-info/METADATA,sha256=JPPLBJzp8U6rCNCVq-kWlVOZEeXrPtUvxizGt9b7_9A,3119
1328
+ azureml_core-1.57.0.post2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
1329
+ azureml_core-1.57.0.post2.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
1330
+ azureml_core-1.57.0.post2.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
1331
+ azureml_core-1.57.0.post2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5