Source code for azure.eventgrid.models._enums

# 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) Python Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from enum import Enum
from azure.core import CaseInsensitiveEnumMeta


[docs]class ReleaseDelay(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Supported delays for release operation.""" NO_DELAY = "0" """Release the event after 0 seconds.""" TEN_SECONDS = "10" """Release the event after 10 seconds.""" ONE_MINUTE = "60" """Release the event after 60 seconds.""" TEN_MINUTES = "600" """Release the event after 600 seconds.""" ONE_HOUR = "3600" """Release the event after 3600 seconds."""