You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.
42
+
- Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.
23
43
24
44
4.1.3 (2018-04-24)
25
45
++++++++++++++++++
@@ -78,16 +98,16 @@ Release History
78
98
- Added a new `allow_low_priority_node` property to `JobManagerTask`, which if `true` allows the `JobManagerTask` to run on a low-priority compute node.
79
99
- `PoolResizeParameter` now takes two optional parameters, `target_dedicated_nodes` and `target_low_priority_nodes`, instead of one required parameter `target_dedicated`.
80
100
At least one of these two parameters must be specified.
81
-
- Added support for uploading task output files to persistent storage, via the `OutputFiles` property on `CloudTask` and `JobManagerTask`.
82
-
- Added support for specifying actions to take based on a task's output file upload status, via the `file_upload_error` property on `ExitConditions`.
101
+
- Added support for uploading task output files to persistent storage, via the `OutputFiles` property on `CloudTask` and `JobManagerTask`.
102
+
- Added support for specifying actions to take based on a task's output file upload status, via the `file_upload_error` property on `ExitConditions`.
83
103
- Added support for determining if a task was a success or a failure via the new `result` property on all task execution information objects.
84
104
- Renamed `scheduling_error` on all task execution information objects to `failure_information`. `TaskFailureInformation` replaces `TaskSchedulingError` and is returned any
85
-
time there is a task failure. This includes all previous scheduling error cases, as well as nonzero task exit codes, and file upload failures from the new output files feature.
105
+
time there is a task failure. This includes all previous scheduling error cases, as well as nonzero task exit codes, and file upload failures from the new output files feature.
86
106
- Renamed `SchedulingErrorCategory` enum to `ErrorCategory`.
87
107
- Renamed `scheduling_error` on `ExitConditions` to `pre_processing_error` to more clearly clarify when the error took place in the task life-cycle.
88
108
- Added support for provisioning application licenses to your pool, via a new `application_licenses` property on `PoolAddParameter`, `CloudPool` and `PoolSpecification`.
89
109
Please note that this feature is in gated public preview, and you must request access to it via a support ticket.
90
-
- The `ssh_private_key` attribute of a `UserAccount` object has been replaced with an expanded `LinuxUserConfiguration` object with additional settings for a user ID and group ID of the
110
+
- The `ssh_private_key` attribute of a `UserAccount` object has been replaced with an expanded `LinuxUserConfiguration` object with additional settings for a user ID and group ID of the
91
111
user account.
92
112
- Removed `unmapped` enum state from `AddTaskStatus`, `CertificateFormat`, `CertificateVisibility`, `CertStoreLocation`, `ComputeNodeFillType`, `OSType`, and `PoolLifetimeOption` as they were not ever used.
93
113
- Improved and clarified documentation.
@@ -124,7 +144,7 @@ Release History
124
144
125
145
- Added support for joining a CloudPool to a virtual network on using the network_configuration property.
126
146
- Added support for application package references on CloudTask and JobManagerTask.
127
-
- Added support for automatically terminating jobs when all tasks complete or when a task fails, via the on_all_tasks_complete property and
147
+
- Added support for automatically terminating jobs when all tasks complete or when a task fails, via the on_all_tasks_complete property and
0 commit comments