File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/database/models/db_system_os_patch_history_entry.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class DbSystemOsPatchHistoryEntry(object): """ The record of an OS patch action on a DB system. """ #: A constant which can be used with the action property of a DbSystemOsPatchHistoryEntry. #: This constant has a value of "PRECHECK" ACTION_PRECHECK = "PRECHECK" #: A constant which can be used with the action property of a DbSystemOsPatchHistoryEntry. #: This constant has a value of "APPLY" ACTION_APPLY = "APPLY" #: A constant which can be used with the lifecycle_state property of a DbSystemOsPatchHistoryEntry. #: This constant has a value of "IN_PROGRESS" LIFECYCLE_STATE_IN_PROGRESS = "IN_PROGRESS" #: A constant which can be used with the lifecycle_state property of a DbSystemOsPatchHistoryEntry. #: This constant has a value of "SUCCEEDED" LIFECYCLE_STATE_SUCCEEDED = "SUCCEEDED" #: A constant which can be used with the lifecycle_state property of a DbSystemOsPatchHistoryEntry. #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" def __init__(self, **kwargs): """ Initializes a new DbSystemOsPatchHistoryEntry object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param action: The value to assign to the action property of this DbSystemOsPatchHistoryEntry. Allowed values for this property are: "PRECHECK", "APPLY", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type action: str :param db_system_id: The value to assign to the db_system_id property of this DbSystemOsPatchHistoryEntry. :type db_system_id: str :param id: The value to assign to the id property of this DbSystemOsPatchHistoryEntry. :type id: str :param lifecycle_state: The value to assign to the lifecycle_state property of this DbSystemOsPatchHistoryEntry. Allowed values for this property are: "IN_PROGRESS", "SUCCEEDED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param lifecycle_details: The value to assign to the lifecycle_details property of this DbSystemOsPatchHistoryEntry. :type lifecycle_details: str :param os_patch_details: The value to assign to the os_patch_details property of this DbSystemOsPatchHistoryEntry. :type os_patch_details: oci.database.models.DbSystemOsPatchDetailsCollection :param time_started: The value to assign to the time_started property of this DbSystemOsPatchHistoryEntry. :type time_started: datetime :param time_ended: The value to assign to the time_ended property of this DbSystemOsPatchHistoryEntry. :type time_ended: datetime """ self.swagger_types = { 'action': 'str', 'db_system_id': 'str', 'id': 'str', 'lifecycle_state': 'str', 'lifecycle_details': 'str', 'os_patch_details': 'DbSystemOsPatchDetailsCollection', 'time_started': 'datetime', 'time_ended': 'datetime' } self.attribute_map = { 'action': 'action', 'db_system_id': 'dbSystemId', 'id': 'id', 'lifecycle_state': 'lifecycleState', 'lifecycle_details': 'lifecycleDetails', 'os_patch_details': 'osPatchDetails', 'time_started': 'timeStarted', 'time_ended': 'timeEnded' } self._action = None self._db_system_id = None self._id = None self._lifecycle_state = None self._lifecycle_details = None self._os_patch_details = None self._time_started = None self._time_ended = None @property def action(self): """ **[Required]** Gets the action of this DbSystemOsPatchHistoryEntry. The action being performed or was completed. Allowed values for this property are: "PRECHECK", "APPLY", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The action of this DbSystemOsPatchHistoryEntry. :rtype: str """ return self._action @action.setter def action(self, action): """ Sets the action of this DbSystemOsPatchHistoryEntry. The action being performed or was completed. :param action: The action of this DbSystemOsPatchHistoryEntry. :type: str """ allowed_values = ["PRECHECK", "APPLY"] if not value_allowed_none_or_none_sentinel(action, allowed_values): action = 'UNKNOWN_ENUM_VALUE' self._action = action @property def db_system_id(self): """ **[Required]** Gets the db_system_id of this DbSystemOsPatchHistoryEntry. The `OCID`__ of the DB system. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The db_system_id of this DbSystemOsPatchHistoryEntry. :rtype: str """ return self._db_system_id @db_system_id.setter def db_system_id(self, db_system_id): """ Sets the db_system_id of this DbSystemOsPatchHistoryEntry. The `OCID`__ of the DB system. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param db_system_id: The db_system_id of this DbSystemOsPatchHistoryEntry. :type: str """ self._db_system_id = db_system_id @property def id(self): """ **[Required]** Gets the id of this DbSystemOsPatchHistoryEntry. The `OCID`__ of the OS patch history entry. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The id of this DbSystemOsPatchHistoryEntry. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this DbSystemOsPatchHistoryEntry. The `OCID`__ of the OS patch history entry. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param id: The id of this DbSystemOsPatchHistoryEntry. :type: str """ self._id = id @property def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this DbSystemOsPatchHistoryEntry. The current state of the action. Allowed values for this property are: "IN_PROGRESS", "SUCCEEDED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The lifecycle_state of this DbSystemOsPatchHistoryEntry. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this DbSystemOsPatchHistoryEntry. The current state of the action. :param lifecycle_state: The lifecycle_state of this DbSystemOsPatchHistoryEntry. :type: str """ allowed_values = ["IN_PROGRESS", "SUCCEEDED", "FAILED"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state @property def lifecycle_details(self): """ Gets the lifecycle_details of this DbSystemOsPatchHistoryEntry. A descriptive text associated with the lifecycleState. Typically contains additional displayable text. :return: The lifecycle_details of this DbSystemOsPatchHistoryEntry. :rtype: str """ return self._lifecycle_details @lifecycle_details.setter def lifecycle_details(self, lifecycle_details): """ Sets the lifecycle_details of this DbSystemOsPatchHistoryEntry. A descriptive text associated with the lifecycleState. Typically contains additional displayable text. :param lifecycle_details: The lifecycle_details of this DbSystemOsPatchHistoryEntry. :type: str """ self._lifecycle_details = lifecycle_details @property def os_patch_details(self): """ **[Required]** Gets the os_patch_details of this DbSystemOsPatchHistoryEntry. :return: The os_patch_details of this DbSystemOsPatchHistoryEntry. :rtype: oci.database.models.DbSystemOsPatchDetailsCollection """ return self._os_patch_details @os_patch_details.setter def os_patch_details(self, os_patch_details): """ Sets the os_patch_details of this DbSystemOsPatchHistoryEntry. :param os_patch_details: The os_patch_details of this DbSystemOsPatchHistoryEntry. :type: oci.database.models.DbSystemOsPatchDetailsCollection """ self._os_patch_details = os_patch_details @property def time_started(self): """ **[Required]** Gets the time_started of this DbSystemOsPatchHistoryEntry. The date and time when the patch action started. :return: The time_started of this DbSystemOsPatchHistoryEntry. :rtype: datetime """ return self._time_started @time_started.setter def time_started(self, time_started): """ Sets the time_started of this DbSystemOsPatchHistoryEntry. The date and time when the patch action started. :param time_started: The time_started of this DbSystemOsPatchHistoryEntry. :type: datetime """ self._time_started = time_started @property def time_ended(self): """ Gets the time_ended of this DbSystemOsPatchHistoryEntry. The date and time when the patch action completed :return: The time_ended of this DbSystemOsPatchHistoryEntry. :rtype: datetime """ return self._time_ended @time_ended.setter def time_ended(self, time_ended): """ Sets the time_ended of this DbSystemOsPatchHistoryEntry. The date and time when the patch action completed :param time_ended: The time_ended of this DbSystemOsPatchHistoryEntry. :type: datetime """ self._time_ended = time_ended def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings