RefreshScheduleDetails¶
-
class
oci.generative_ai.models.RefreshScheduleDetails(**kwargs)¶ Bases:
objectSpecifies a refresh schedule. Null represents no automated synchronization schedule.
Attributes
TYPE_INTERVALA constant which can be used with the type property of a RefreshScheduleDetails. TYPE_NONEA constant which can be used with the type property of a RefreshScheduleDetails. TYPE_ON_CREATEA constant which can be used with the type property of a RefreshScheduleDetails. type[Required] Gets the type of this RefreshScheduleDetails. Methods
__init__(**kwargs)Initializes a new RefreshScheduleDetails 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. -
TYPE_INTERVAL= 'INTERVAL'¶ A constant which can be used with the type property of a RefreshScheduleDetails. This constant has a value of “INTERVAL”
-
TYPE_NONE= 'NONE'¶ A constant which can be used with the type property of a RefreshScheduleDetails. This constant has a value of “NONE”
-
TYPE_ON_CREATE= 'ON_CREATE'¶ A constant which can be used with the type property of a RefreshScheduleDetails. This constant has a value of “ON_CREATE”
-
__init__(**kwargs)¶ Initializes a new RefreshScheduleDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: type (str) – The value to assign to the type property of this RefreshScheduleDetails. Allowed values for this property are: “INTERVAL”, “ON_CREATE”, “NONE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
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.
-
type¶ [Required] Gets the type of this RefreshScheduleDetails. Specifies the type of refresh schedule.
Allowed values for this property are: “INTERVAL”, “ON_CREATE”, “NONE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this RefreshScheduleDetails. Return type: str
-