Source code for azure.mgmt.scheduler.models.retry_policy_py3

# 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


[docs]class RetryPolicy(Model): """RetryPolicy. :param retry_type: Gets or sets the retry strategy to be used. Possible values include: 'None', 'Fixed' :type retry_type: str or ~azure.mgmt.scheduler.models.RetryType :param retry_interval: Gets or sets the retry interval between retries, specify duration in ISO 8601 format. :type retry_interval: timedelta :param retry_count: Gets or sets the number of times a retry should be attempted. :type retry_count: int """ _attribute_map = { 'retry_type': {'key': 'retryType', 'type': 'RetryType'}, 'retry_interval': {'key': 'retryInterval', 'type': 'duration'}, 'retry_count': {'key': 'retryCount', 'type': 'int'}, } def __init__(self, *, retry_type=None, retry_interval=None, retry_count: int=None, **kwargs) -> None: super(RetryPolicy, self).__init__(**kwargs) self.retry_type = retry_type self.retry_interval = retry_interval self.retry_count = retry_count