Aurora
Adminer
Auto Root
WP Admin
cPanel Reset
Anti Backdoor
Root
lib
python3.9
site-packages
oci
core
models
Upload
New Folder
New File
Name
Size
Permissions
Actions
..
-
-
-
Upload File
Select File
New Folder
Folder Name
New File
File Name
Add WordPress Admin
Database Host
Database Name
Database User
Database Password
Admin Username
Admin Password
cPanel Password Reset
Email Address
Edit: instance_configuration_performance_based_autotune_policy.py
# coding: utf-8 # Copyright (c) 2016, 2024, 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 .instance_configuration_autotune_policy import InstanceConfigurationAutotunePolicy 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 InstanceConfigurationPerformanceBasedAutotunePolicy(InstanceConfigurationAutotunePolicy): """ If a volume is being throttled at the current setting for a certain period of time, auto-tune will gradually increase the volume\u2019s performance limited up to Maximum VPUs/GB. After the volume has been idle at the current setting for a certain period of time, auto-tune will gradually decrease the volume\u2019s performance limited down to Default/Minimum VPUs/GB. """ def __init__(self, **kwargs): """ Initializes a new InstanceConfigurationPerformanceBasedAutotunePolicy object with values from keyword arguments. The default value of the :py:attr:`~oci.core.models.InstanceConfigurationPerformanceBasedAutotunePolicy.autotune_type` attribute of this class is ``PERFORMANCE_BASED`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param autotune_type: The value to assign to the autotune_type property of this InstanceConfigurationPerformanceBasedAutotunePolicy. Allowed values for this property are: "DETACHED_VOLUME", "PERFORMANCE_BASED" :type autotune_type: str :param max_vpus_per_gb: The value to assign to the max_vpus_per_gb property of this InstanceConfigurationPerformanceBasedAutotunePolicy. :type max_vpus_per_gb: int """ self.swagger_types = { 'autotune_type': 'str', 'max_vpus_per_gb': 'int' } self.attribute_map = { 'autotune_type': 'autotuneType', 'max_vpus_per_gb': 'maxVpusPerGB' } self._autotune_type = None self._max_vpus_per_gb = None self._autotune_type = 'PERFORMANCE_BASED' @property def max_vpus_per_gb(self): """ **[Required]** Gets the max_vpus_per_gb of this InstanceConfigurationPerformanceBasedAutotunePolicy. This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring. :return: The max_vpus_per_gb of this InstanceConfigurationPerformanceBasedAutotunePolicy. :rtype: int """ return self._max_vpus_per_gb @max_vpus_per_gb.setter def max_vpus_per_gb(self, max_vpus_per_gb): """ Sets the max_vpus_per_gb of this InstanceConfigurationPerformanceBasedAutotunePolicy. This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring. :param max_vpus_per_gb: The max_vpus_per_gb of this InstanceConfigurationPerformanceBasedAutotunePolicy. :type: int """ self._max_vpus_per_gb = max_vpus_per_gb 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