WeeklyFrequencyDetails¶
-
class
oci.data_integration.models.
WeeklyFrequencyDetails
(**kwargs)¶ Bases:
oci.data_integration.models.abstract_frequency_details.AbstractFrequencyDetails
Frequency Details model for weekly frequency based on day of week.
Attributes
DAYS_FRIDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. DAYS_MONDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. DAYS_SATURDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. DAYS_SUNDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. DAYS_THURSDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. DAYS_TUESDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. DAYS_WEDNESDAY
A constant which can be used with the days property of a WeeklyFrequencyDetails. 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 WeeklyFrequencyDetails. frequency
Gets the frequency of this AbstractFrequencyDetails. model_type
[Required] Gets the model_type of this AbstractFrequencyDetails. time
Gets the time of this WeeklyFrequencyDetails. Methods
__init__
(**kwargs)Initializes a new WeeklyFrequencyDetails 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. -
DAYS_FRIDAY
= 'FRIDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “FRIDAY”
-
DAYS_MONDAY
= 'MONDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “MONDAY”
-
DAYS_SATURDAY
= 'SATURDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “SATURDAY”
-
DAYS_SUNDAY
= 'SUNDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “SUNDAY”
-
DAYS_THURSDAY
= 'THURSDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “THURSDAY”
-
DAYS_TUESDAY
= 'TUESDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “TUESDAY”
-
DAYS_WEDNESDAY
= 'WEDNESDAY'¶ A constant which can be used with the days property of a WeeklyFrequencyDetails. This constant has a value of “WEDNESDAY”
-
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 WeeklyFrequencyDetails object with values from keyword arguments. The default value of the
model_type
attribute of this class isWEEKLY
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 WeeklyFrequencyDetails. 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’.
- frequency (str) – The value to assign to the frequency property of this WeeklyFrequencyDetails. 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’.
- time (oci.data_integration.models.Time) – The value to assign to the time property of this WeeklyFrequencyDetails.
- days (list[str]) – The value to assign to the days property of this WeeklyFrequencyDetails. Allowed values for items in this list are: “SUNDAY”, “MONDAY”, “TUESDAY”, “WEDNESDAY”, “THURSDAY”, “FRIDAY”, “SATURDAY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
days
¶ Gets the days of this WeeklyFrequencyDetails. A list of days of the week to be scheduled. i.e. execute on Monday and Thursday.
Allowed values for items in this list are: “SUNDAY”, “MONDAY”, “TUESDAY”, “WEDNESDAY”, “THURSDAY”, “FRIDAY”, “SATURDAY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The days of this WeeklyFrequencyDetails. Return type: list[str]
-
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.
-
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 WeeklyFrequencyDetails.
Returns: The time of this WeeklyFrequencyDetails. Return type: oci.data_integration.models.Time
-