File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/os_management_hub/models/available_windows_update_summary.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: 20220901 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 AvailableWindowsUpdateSummary(object): """ An object that defines an available update for a Windows instance. """ #: A constant which can be used with the update_type property of a AvailableWindowsUpdateSummary. #: This constant has a value of "SECURITY" UPDATE_TYPE_SECURITY = "SECURITY" #: A constant which can be used with the update_type property of a AvailableWindowsUpdateSummary. #: This constant has a value of "BUGFIX" UPDATE_TYPE_BUGFIX = "BUGFIX" #: A constant which can be used with the update_type property of a AvailableWindowsUpdateSummary. #: This constant has a value of "ENHANCEMENT" UPDATE_TYPE_ENHANCEMENT = "ENHANCEMENT" #: A constant which can be used with the update_type property of a AvailableWindowsUpdateSummary. #: This constant has a value of "OTHER" UPDATE_TYPE_OTHER = "OTHER" def __init__(self, **kwargs): """ Initializes a new AvailableWindowsUpdateSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param name: The value to assign to the name property of this AvailableWindowsUpdateSummary. :type name: str :param update_id: The value to assign to the update_id property of this AvailableWindowsUpdateSummary. :type update_id: str :param update_type: The value to assign to the update_type property of this AvailableWindowsUpdateSummary. Allowed values for this property are: "SECURITY", "BUGFIX", "ENHANCEMENT", "OTHER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type update_type: str :param installable: The value to assign to the installable property of this AvailableWindowsUpdateSummary. :type installable: str :param is_reboot_required_for_installation: The value to assign to the is_reboot_required_for_installation property of this AvailableWindowsUpdateSummary. :type is_reboot_required_for_installation: bool """ self.swagger_types = { 'name': 'str', 'update_id': 'str', 'update_type': 'str', 'installable': 'str', 'is_reboot_required_for_installation': 'bool' } self.attribute_map = { 'name': 'name', 'update_id': 'updateId', 'update_type': 'updateType', 'installable': 'installable', 'is_reboot_required_for_installation': 'isRebootRequiredForInstallation' } self._name = None self._update_id = None self._update_type = None self._installable = None self._is_reboot_required_for_installation = None @property def name(self): """ **[Required]** Gets the name of this AvailableWindowsUpdateSummary. Name of the Windows update. :return: The name of this AvailableWindowsUpdateSummary. :rtype: str """ return self._name @name.setter def name(self, name): """ Sets the name of this AvailableWindowsUpdateSummary. Name of the Windows update. :param name: The name of this AvailableWindowsUpdateSummary. :type: str """ self._name = name @property def update_id(self): """ **[Required]** Gets the update_id of this AvailableWindowsUpdateSummary. Unique identifier for the Windows update. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. Example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed' :return: The update_id of this AvailableWindowsUpdateSummary. :rtype: str """ return self._update_id @update_id.setter def update_id(self, update_id): """ Sets the update_id of this AvailableWindowsUpdateSummary. Unique identifier for the Windows update. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. Example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed' :param update_id: The update_id of this AvailableWindowsUpdateSummary. :type: str """ self._update_id = update_id @property def update_type(self): """ **[Required]** Gets the update_type of this AvailableWindowsUpdateSummary. The type of Windows update. Allowed values for this property are: "SECURITY", "BUGFIX", "ENHANCEMENT", "OTHER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The update_type of this AvailableWindowsUpdateSummary. :rtype: str """ return self._update_type @update_type.setter def update_type(self, update_type): """ Sets the update_type of this AvailableWindowsUpdateSummary. The type of Windows update. :param update_type: The update_type of this AvailableWindowsUpdateSummary. :type: str """ allowed_values = ["SECURITY", "BUGFIX", "ENHANCEMENT", "OTHER"] if not value_allowed_none_or_none_sentinel(update_type, allowed_values): update_type = 'UNKNOWN_ENUM_VALUE' self._update_type = update_type @property def installable(self): """ Gets the installable of this AvailableWindowsUpdateSummary. Indicates whether the update can be installed using the service. :return: The installable of this AvailableWindowsUpdateSummary. :rtype: str """ return self._installable @installable.setter def installable(self, installable): """ Sets the installable of this AvailableWindowsUpdateSummary. Indicates whether the update can be installed using the service. :param installable: The installable of this AvailableWindowsUpdateSummary. :type: str """ self._installable = installable @property def is_reboot_required_for_installation(self): """ Gets the is_reboot_required_for_installation of this AvailableWindowsUpdateSummary. Indicates whether a reboot is required to complete the installation of this update. :return: The is_reboot_required_for_installation of this AvailableWindowsUpdateSummary. :rtype: bool """ return self._is_reboot_required_for_installation @is_reboot_required_for_installation.setter def is_reboot_required_for_installation(self, is_reboot_required_for_installation): """ Sets the is_reboot_required_for_installation of this AvailableWindowsUpdateSummary. Indicates whether a reboot is required to complete the installation of this update. :param is_reboot_required_for_installation: The is_reboot_required_for_installation of this AvailableWindowsUpdateSummary. :type: bool """ self._is_reboot_required_for_installation = is_reboot_required_for_installation 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