azure-mgmt-batchai


Nameazure-mgmt-batchai JSON
Version 7.0.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Batch AI Management Client Library for Python
upload_time2024-10-31 16:34:20
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.7
licenseMIT License
keywords azure azure sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Microsoft Azure SDK for Python

This package has been deprecated and will no longer be maintained after 10-31-2024. This package will only receive security fixes until 10-31-2024. To receive updates on new features and non-security bug fixes, upgrade to the replacement package, [azureml-core](https://pypi.org/project/azureml-core/). Refer to the migration guide (https://learn.microsoft.com/previous-versions/azure/batch-ai/how-to-migrate) for guidance on upgrading.

# Release History

## 7.0.0 (2024-10-31)

### Other Changes

- This package has been deprecated and will no longer be maintained after 10-31-2024. This package will only receive security fixes until 10-31-2024. To receive updates on new features and non-security bug fixes, upgrade to the replacement package, [azureml-core](https://pypi.org/project/azureml-core/). Refer to the migration guide (https://learn.microsoft.com/previous-versions/azure/batch-ai/how-to-migrate) for guidance on upgrading.

## 7.0.0b1 (2021-06-02)

This is beta preview version.
For detailed changelog please refer to equivalent stable version 2.0.0(https://pypi.org/project/azure-mgmt-batchai/2.0.0/)

This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).

**General breaking changes**

- Credential system has been completly revamped:

  - `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/
  - `credentials` parameter has been renamed `credential`

- The `config` attribute no longer exists on a client, configuration should be passed as kwarg. Example: `MyClient(credential, subscription_id, enable_logging=True)`. For a complete set of
  supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)
- You can't import a `version` module anymore, use `__version__` instead
- Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.
- Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).
- Most of the operation kwarg have changed. Some of the most noticeable:

  - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user
  - For a complete set of supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)

**General new features**

- Type annotations support using `typing`. SDKs are mypy ready.
- This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.
- This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry) for an overview.

## 2.0.0 (2018-06-07)

**Breaking changes**

This version uses 2018-05-01 BatchAI API specification which introduced the following braking changes:

- Clusters, FileServers must be created under a workspace;
- Jobs must be created under an experiment;
- Clusters, FileServers and Jobs do not accept location during creation and belong to the same location as the parent
  workspace;
- Clusters, FileServers and Jobs do not support tags;
- BatchAIManagementClient.usage renamed to BatchAIManagementClient.usages;
- Job priority changed a type from int to an enum;
- File.is_directory is replaced with File.file_type;
- Job.priority and JobCreateParameters.priority is replaced with scheduling_priority;
- Removed unsupported MountSettings.file_server_type attribute;
- OutputDirectory.type unsupported attribute removed;
- OutputDirectory.create_new attributes removed, BatchAI will always create output directories if they not exist;
- SetupTask.run_elevated attribute removed, the setup task is always executed under root.

**Features**

- Added support to workspaces to group Clusters, FileServers and Experiments and remove limit on number of allocated
  resources;
- Added support for experiment to group jobs and remove limit on number of jobs;
- Added support for configuring /dev/shm for jobs which use docker containers;
- Added first class support for generic MPI jobs;
- Added first class support for Horovod jobs.

## 1.0.1 (2018-04-16)

**Bugfixes**

- Fix some invalid models in Python 3
- Compatibility of the sdist with wheel 0.31.0

## 1.0.0 (2018-03-19)

**General Breaking changes**

This version uses a next-generation code generator that *might* introduce breaking changes.

- Model signatures now use only keyword-argument syntax. All positional arguments must be re-written as keyword-arguments.
  To keep auto-completion in most cases, models are now generated for Python 2 and Python 3. Python 3 uses the "*" syntax for keyword-only arguments.
- Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.
  While this is not a breaking change, the distinctions are important, and are documented here:
  https://docs.python.org/3/library/enum.html#others
  At a glance:

  - "is" should not be used at all.
  - "format" will return the string value, where "%s" string formatting will return `NameOfEnum.stringvalue`. Format syntax should be prefered.

- New Long Running Operation:

  - Return type changes from `msrestazure.azure_operation.AzureOperationPoller` to `msrest.polling.LROPoller`. External API is the same.
  - Return type is now **always** a `msrest.polling.LROPoller`, regardless of the optional parameters used.
  - The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`,
    without polling, now this returns an LROPoller. After polling, the final resource will be returned as a `ClientRawResponse`.
  - New `polling` parameter. The default behavior is `Polling=True` which will poll using ARM algorithm. When `Polling=False`,
    the response of the initial call will be returned without polling.
  - `polling` parameter accepts instances of subclasses of `msrest.polling.PollingMethod`.
  - `add_done_callback` will no longer raise if called after polling is finished, but will instead execute the callback right away.

**Features**

- added support for job level mounting
- added support for environment variables with secret values
- added support for performance counters reporting in Azure Application Insights
- added support for custom images
- added support for pyTorch deep learning framework
- added API for usage and limits reporting
- added API for listing job files in subdirectories
- now user can choose caching type during NFS creation
- get cluster now reports a path segment generated for storing start task output logs
- get job now reports a path segment generated for job's output directories
- renamed EnvironmentSetting to EnvironmentVariable

## 0.2.0 (2017-10-05)

* credentials_info property got renamed to credentials.
* removed unused class FileServerStatus and Code enum
* renamed enums for CachingType and VmPriority
* removed 'statuses' attribute on FileServer

## 0.1.0 (2017-10-03)

* Initial Release

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-batchai",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "azure, azure sdk",
    "author": "Microsoft Corporation",
    "author_email": "azpysdkhelp@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/70/01/06ff434e73147ebac9de33102d54a13f4dce6c4d20c9eafdd8d037c6018f/azure_mgmt_batchai-7.0.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis package has been deprecated and will no longer be maintained after 10-31-2024. This package will only receive security fixes until 10-31-2024. To receive updates on new features and non-security bug fixes, upgrade to the replacement package, [azureml-core](https://pypi.org/project/azureml-core/). Refer to the migration guide (https://learn.microsoft.com/previous-versions/azure/batch-ai/how-to-migrate) for guidance on upgrading.\n\n# Release History\n\n## 7.0.0 (2024-10-31)\n\n### Other Changes\n\n- This package has been deprecated and will no longer be maintained after 10-31-2024. This package will only receive security fixes until 10-31-2024. To receive updates on new features and non-security bug fixes, upgrade to the replacement package, [azureml-core](https://pypi.org/project/azureml-core/). Refer to the migration guide (https://learn.microsoft.com/previous-versions/azure/batch-ai/how-to-migrate) for guidance on upgrading.\n\n## 7.0.0b1 (2021-06-02)\n\nThis is beta preview version.\nFor detailed changelog please refer to equivalent stable version 2.0.0(https://pypi.org/project/azure-mgmt-batchai/2.0.0/)\n\nThis version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).\n\n**General breaking changes**\n\n- Credential system has been completly revamped:\n\n  - `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/\n  - `credentials` parameter has been renamed `credential`\n\n- The `config` attribute no longer exists on a client, configuration should be passed as kwarg. Example: `MyClient(credential, subscription_id, enable_logging=True)`. For a complete set of\n  supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)\n- You can't import a `version` module anymore, use `__version__` instead\n- Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.\n- Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).\n- Most of the operation kwarg have changed. Some of the most noticeable:\n\n  - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user\n  - For a complete set of supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)\n\n**General new features**\n\n- Type annotations support using `typing`. SDKs are mypy ready.\n- This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.\n- This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry) for an overview.\n\n## 2.0.0 (2018-06-07)\n\n**Breaking changes**\n\nThis version uses 2018-05-01 BatchAI API specification which introduced the following braking changes:\n\n- Clusters, FileServers must be created under a workspace;\n- Jobs must be created under an experiment;\n- Clusters, FileServers and Jobs do not accept location during creation and belong to the same location as the parent\n  workspace;\n- Clusters, FileServers and Jobs do not support tags;\n- BatchAIManagementClient.usage renamed to BatchAIManagementClient.usages;\n- Job priority changed a type from int to an enum;\n- File.is_directory is replaced with File.file_type;\n- Job.priority and JobCreateParameters.priority is replaced with scheduling_priority;\n- Removed unsupported MountSettings.file_server_type attribute;\n- OutputDirectory.type unsupported attribute removed;\n- OutputDirectory.create_new attributes removed, BatchAI will always create output directories if they not exist;\n- SetupTask.run_elevated attribute removed, the setup task is always executed under root.\n\n**Features**\n\n- Added support to workspaces to group Clusters, FileServers and Experiments and remove limit on number of allocated\n  resources;\n- Added support for experiment to group jobs and remove limit on number of jobs;\n- Added support for configuring /dev/shm for jobs which use docker containers;\n- Added first class support for generic MPI jobs;\n- Added first class support for Horovod jobs.\n\n## 1.0.1 (2018-04-16)\n\n**Bugfixes**\n\n- Fix some invalid models in Python 3\n- Compatibility of the sdist with wheel 0.31.0\n\n## 1.0.0 (2018-03-19)\n\n**General Breaking changes**\n\nThis version uses a next-generation code generator that *might* introduce breaking changes.\n\n- Model signatures now use only keyword-argument syntax. All positional arguments must be re-written as keyword-arguments.\n  To keep auto-completion in most cases, models are now generated for Python 2 and Python 3. Python 3 uses the \"*\" syntax for keyword-only arguments.\n- Enum types now use the \"str\" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.\n  While this is not a breaking change, the distinctions are important, and are documented here:\n  https://docs.python.org/3/library/enum.html#others\n  At a glance:\n\n  - \"is\" should not be used at all.\n  - \"format\" will return the string value, where \"%s\" string formatting will return `NameOfEnum.stringvalue`. Format syntax should be prefered.\n\n- New Long Running Operation:\n\n  - Return type changes from `msrestazure.azure_operation.AzureOperationPoller` to `msrest.polling.LROPoller`. External API is the same.\n  - Return type is now **always** a `msrest.polling.LROPoller`, regardless of the optional parameters used.\n  - The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`,\n    without polling, now this returns an LROPoller. After polling, the final resource will be returned as a `ClientRawResponse`.\n  - New `polling` parameter. The default behavior is `Polling=True` which will poll using ARM algorithm. When `Polling=False`,\n    the response of the initial call will be returned without polling.\n  - `polling` parameter accepts instances of subclasses of `msrest.polling.PollingMethod`.\n  - `add_done_callback` will no longer raise if called after polling is finished, but will instead execute the callback right away.\n\n**Features**\n\n- added support for job level mounting\n- added support for environment variables with secret values\n- added support for performance counters reporting in Azure Application Insights\n- added support for custom images\n- added support for pyTorch deep learning framework\n- added API for usage and limits reporting\n- added API for listing job files in subdirectories\n- now user can choose caching type during NFS creation\n- get cluster now reports a path segment generated for storing start task output logs\n- get job now reports a path segment generated for job's output directories\n- renamed EnvironmentSetting to EnvironmentVariable\n\n## 0.2.0 (2017-10-05)\n\n* credentials_info property got renamed to credentials.\n* removed unused class FileServerStatus and Code enum\n* renamed enums for CachingType and VmPriority\n* removed 'statuses' attribute on FileServer\n\n## 0.1.0 (2017-10-03)\n\n* Initial Release\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Batch AI Management Client Library for Python",
    "version": "7.0.0",
    "project_urls": {
        "Homepage": "https://github.com/Azure/azure-sdk-for-python"
    },
    "split_keywords": [
        "azure",
        " azure sdk"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a5cb86669708df549c7d14ecf77b637f129ff08a99aa63e84101bdee0acfa54",
                "md5": "dffb4efdef5f4e911668b6e517388332",
                "sha256": "9ed3f4117f3a182281b524debb7803aa108f0b0301e908a4cb1ed78c49fc9d19"
            },
            "downloads": -1,
            "filename": "azure_mgmt_batchai-7.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dffb4efdef5f4e911668b6e517388332",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 99700,
            "upload_time": "2024-10-31T16:34:21",
            "upload_time_iso_8601": "2024-10-31T16:34:21.333503Z",
            "url": "https://files.pythonhosted.org/packages/1a/5c/b86669708df549c7d14ecf77b637f129ff08a99aa63e84101bdee0acfa54/azure_mgmt_batchai-7.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "700106ff434e73147ebac9de33102d54a13f4dce6c4d20c9eafdd8d037c6018f",
                "md5": "80de34ef064d2d80a3a1e988f7ff1e31",
                "sha256": "5df004fd0c924fc65594947a9cff4f76087dee17c884533a1bbb0b20db27d3a3"
            },
            "downloads": -1,
            "filename": "azure_mgmt_batchai-7.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "80de34ef064d2d80a3a1e988f7ff1e31",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 69149,
            "upload_time": "2024-10-31T16:34:20",
            "upload_time_iso_8601": "2024-10-31T16:34:20.036377Z",
            "url": "https://files.pythonhosted.org/packages/70/01/06ff434e73147ebac9de33102d54a13f4dce6c4d20c9eafdd8d037c6018f/azure_mgmt_batchai-7.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-31 16:34:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Azure",
    "github_project": "azure-sdk-for-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "azure-mgmt-batchai"
}
        
Elapsed time: 0.42573s