1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class ExitConditions(Model):
"""Specifies how the Batch service should respond when the task completes.
:param exit_codes: A list of individual task exit codes and how the Batch
service should respond to them.
:type exit_codes: list of :class:`ExitCodeMapping
<azure.batch.models.ExitCodeMapping>`
:param exit_code_ranges: A list of task exit codes ranges and how the
Batch service should respond to them.
:type exit_code_ranges: list of :class:`ExitCodeRangeMapping
<azure.batch.models.ExitCodeRangeMapping>`
:param scheduling_error: How the Batch service should respond if the task
fails with a scheduling error.
:type scheduling_error: :class:`ExitOptions
<azure.batch.models.ExitOptions>`
:param default: How the Batch service should respond if the task fails
with an exit condition not covered by any of the other properties – that
is, any nonzero exit code not listed in the exitCodes or exitCodeRanges
collection, or a scheduling error if the schedulingError property is not
present.
:type default: :class:`ExitOptions <azure.batch.models.ExitOptions>`
"""
_attribute_map = {
'exit_codes': {'key': 'exitCodes', 'type': '[ExitCodeMapping]'},
'exit_code_ranges': {'key': 'exitCodeRanges', 'type': '[ExitCodeRangeMapping]'},
'scheduling_error': {'key': 'schedulingError', 'type': 'ExitOptions'},
'default': {'key': 'default', 'type': 'ExitOptions'},
}
def __init__(self, exit_codes=None, exit_code_ranges=None, scheduling_error=None, default=None):
self.exit_codes = exit_codes
self.exit_code_ranges = exit_code_ranges
self.scheduling_error = scheduling_error
self.default = default
|