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
|
# 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 JobScheduleExecutionInformation(Model):
"""Specifies how tasks should be run in a job associated with a job schedule.
:param next_run_time: The next time at which a job will be created under
this schedule.
:type next_run_time: datetime
:param recent_job: Information about the most recent job under the job
schedule.
:type recent_job: :class:`RecentJob <azure.batch.models.RecentJob>`
:param end_time: The time at which the schedule ended. This property is
set only if the job schedule is in the completed state.
:type end_time: datetime
"""
_attribute_map = {
'next_run_time': {'key': 'nextRunTime', 'type': 'iso-8601'},
'recent_job': {'key': 'recentJob', 'type': 'RecentJob'},
'end_time': {'key': 'endTime', 'type': 'iso-8601'},
}
def __init__(self, next_run_time=None, recent_job=None, end_time=None):
self.next_run_time = next_run_time
self.recent_job = recent_job
self.end_time = end_time
|