Month¶
-
class
oci.database.models.
Month
(**kwargs)¶ Bases:
object
Month of the year.
Attributes
NAME_APRIL
A constant which can be used with the name property of a Month. NAME_AUGUST
A constant which can be used with the name property of a Month. NAME_DECEMBER
A constant which can be used with the name property of a Month. NAME_FEBRUARY
A constant which can be used with the name property of a Month. NAME_JANUARY
A constant which can be used with the name property of a Month. NAME_JULY
A constant which can be used with the name property of a Month. NAME_JUNE
A constant which can be used with the name property of a Month. NAME_MARCH
A constant which can be used with the name property of a Month. NAME_MAY
A constant which can be used with the name property of a Month. NAME_NOVEMBER
A constant which can be used with the name property of a Month. NAME_OCTOBER
A constant which can be used with the name property of a Month. NAME_SEPTEMBER
A constant which can be used with the name property of a Month. name
[Required] Gets the name of this Month. Methods
__init__
(**kwargs)Initializes a new Month object with values from keyword arguments. -
NAME_APRIL
= 'APRIL'¶ A constant which can be used with the name property of a Month. This constant has a value of “APRIL”
-
NAME_AUGUST
= 'AUGUST'¶ A constant which can be used with the name property of a Month. This constant has a value of “AUGUST”
-
NAME_DECEMBER
= 'DECEMBER'¶ A constant which can be used with the name property of a Month. This constant has a value of “DECEMBER”
-
NAME_FEBRUARY
= 'FEBRUARY'¶ A constant which can be used with the name property of a Month. This constant has a value of “FEBRUARY”
-
NAME_JANUARY
= 'JANUARY'¶ A constant which can be used with the name property of a Month. This constant has a value of “JANUARY”
-
NAME_JULY
= 'JULY'¶ A constant which can be used with the name property of a Month. This constant has a value of “JULY”
-
NAME_JUNE
= 'JUNE'¶ A constant which can be used with the name property of a Month. This constant has a value of “JUNE”
-
NAME_MARCH
= 'MARCH'¶ A constant which can be used with the name property of a Month. This constant has a value of “MARCH”
-
NAME_MAY
= 'MAY'¶ A constant which can be used with the name property of a Month. This constant has a value of “MAY”
-
NAME_NOVEMBER
= 'NOVEMBER'¶ A constant which can be used with the name property of a Month. This constant has a value of “NOVEMBER”
-
NAME_OCTOBER
= 'OCTOBER'¶ A constant which can be used with the name property of a Month. This constant has a value of “OCTOBER”
-
NAME_SEPTEMBER
= 'SEPTEMBER'¶ A constant which can be used with the name property of a Month. This constant has a value of “SEPTEMBER”
-
__init__
(**kwargs)¶ Initializes a new Month object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: name (str) – The value to assign to the name property of this Month. Allowed values for this property are: “JANUARY”, “FEBRUARY”, “MARCH”, “APRIL”, “MAY”, “JUNE”, “JULY”, “AUGUST”, “SEPTEMBER”, “OCTOBER”, “NOVEMBER”, “DECEMBER”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
name
¶ [Required] Gets the name of this Month. Name of the month of the year.
Allowed values for this property are: “JANUARY”, “FEBRUARY”, “MARCH”, “APRIL”, “MAY”, “JUNE”, “JULY”, “AUGUST”, “SEPTEMBER”, “OCTOBER”, “NOVEMBER”, “DECEMBER”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The name of this Month. Return type: str
-