MonthlyFrequencyDetails¶
-
class
oci.data_integration.models.
MonthlyFrequencyDetails
(**kwargs)¶ Bases:
oci.data_integration.models.abstract_frequency_details.AbstractFrequencyDetails
Frequency Details model for monthly frequency.
Attributes
FREQUENCY_CUSTOM
str(object=’’) -> str FREQUENCY_DAILY
str(object=’’) -> str FREQUENCY_HOURLY
str(object=’’) -> str FREQUENCY_MONTHLY
str(object=’’) -> str FREQUENCY_WEEKLY
str(object=’’) -> str MODEL_TYPE_CUSTOM
str(object=’’) -> str MODEL_TYPE_DAILY
str(object=’’) -> str MODEL_TYPE_HOURLY
str(object=’’) -> str MODEL_TYPE_MONTHLY
str(object=’’) -> str MODEL_TYPE_MONTHLY_RULE
str(object=’’) -> str MODEL_TYPE_WEEKLY
str(object=’’) -> str days
Gets the days of this MonthlyFrequencyDetails. frequency
Gets the frequency of this AbstractFrequencyDetails. interval
Gets the interval of this MonthlyFrequencyDetails. model_type
[Required] Gets the model_type of this AbstractFrequencyDetails. time
Gets the time of this MonthlyFrequencyDetails. Methods
__init__
(**kwargs)Initializes a new MonthlyFrequencyDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
FREQUENCY_CUSTOM
= 'CUSTOM'¶
-
FREQUENCY_DAILY
= 'DAILY'¶
-
FREQUENCY_HOURLY
= 'HOURLY'¶
-
FREQUENCY_MONTHLY
= 'MONTHLY'¶
-
FREQUENCY_WEEKLY
= 'WEEKLY'¶
-
MODEL_TYPE_CUSTOM
= 'CUSTOM'¶
-
MODEL_TYPE_DAILY
= 'DAILY'¶
-
MODEL_TYPE_HOURLY
= 'HOURLY'¶
-
MODEL_TYPE_MONTHLY
= 'MONTHLY'¶
-
MODEL_TYPE_MONTHLY_RULE
= 'MONTHLY_RULE'¶
-
MODEL_TYPE_WEEKLY
= 'WEEKLY'¶
-
__init__
(**kwargs)¶ Initializes a new MonthlyFrequencyDetails object with values from keyword arguments. The default value of the
model_type
attribute of this class isMONTHLY
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - model_type (str) – The value to assign to the model_type property of this MonthlyFrequencyDetails. Allowed values for this property are: “HOURLY”, “DAILY”, “MONTHLY”, “WEEKLY”, “MONTHLY_RULE”, “CUSTOM”
- frequency (str) – The value to assign to the frequency property of this MonthlyFrequencyDetails. Allowed values for this property are: “HOURLY”, “DAILY”, “MONTHLY”, “WEEKLY”, “CUSTOM”
- interval (int) – The value to assign to the interval property of this MonthlyFrequencyDetails.
- time (oci.data_integration.models.Time) – The value to assign to the time property of this MonthlyFrequencyDetails.
- days (list[int]) – The value to assign to the days property of this MonthlyFrequencyDetails.
-
days
¶ Gets the days of this MonthlyFrequencyDetails. A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
Returns: The days of this MonthlyFrequencyDetails. Return type: list[int]
-
frequency
¶ Gets the frequency of this AbstractFrequencyDetails. the frequency of the schedule.
Allowed values for this property are: “HOURLY”, “DAILY”, “MONTHLY”, “WEEKLY”, “CUSTOM”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The frequency of this AbstractFrequencyDetails. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
interval
¶ Gets the interval of this MonthlyFrequencyDetails. This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
Returns: The interval of this MonthlyFrequencyDetails. Return type: int
-
model_type
¶ [Required] Gets the model_type of this AbstractFrequencyDetails. The type of the model
Allowed values for this property are: “HOURLY”, “DAILY”, “MONTHLY”, “WEEKLY”, “MONTHLY_RULE”, “CUSTOM”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The model_type of this AbstractFrequencyDetails. Return type: str
-
time
¶ Gets the time of this MonthlyFrequencyDetails.
Returns: The time of this MonthlyFrequencyDetails. Return type: oci.data_integration.models.Time
-