AsIsResourceAssessmentStrategy¶
-
class
oci.cloud_migrations.models.
AsIsResourceAssessmentStrategy
(**kwargs)¶ Bases:
oci.cloud_migrations.models.resource_assessment_strategy.ResourceAssessmentStrategy
The ‘As-Is’ based strategy.
Attributes
RESOURCE_TYPE_ALL
str(object=’’) -> str RESOURCE_TYPE_CPU
str(object=’’) -> str RESOURCE_TYPE_MEMORY
str(object=’’) -> str STRATEGY_TYPE_AS_IS
str(object=’’) -> str STRATEGY_TYPE_AVERAGE
str(object=’’) -> str STRATEGY_TYPE_PEAK
str(object=’’) -> str STRATEGY_TYPE_PERCENTILE
str(object=’’) -> str adjustment_multiplier
Gets the adjustment_multiplier of this AsIsResourceAssessmentStrategy. resource_type
[Required] Gets the resource_type of this ResourceAssessmentStrategy. strategy_type
[Required] Gets the strategy_type of this ResourceAssessmentStrategy. Methods
__init__
(**kwargs)Initializes a new AsIsResourceAssessmentStrategy 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. -
RESOURCE_TYPE_ALL
= 'ALL'¶
-
RESOURCE_TYPE_CPU
= 'CPU'¶
-
RESOURCE_TYPE_MEMORY
= 'MEMORY'¶
-
STRATEGY_TYPE_AS_IS
= 'AS_IS'¶
-
STRATEGY_TYPE_AVERAGE
= 'AVERAGE'¶
-
STRATEGY_TYPE_PEAK
= 'PEAK'¶
-
STRATEGY_TYPE_PERCENTILE
= 'PERCENTILE'¶
-
__init__
(**kwargs)¶ Initializes a new AsIsResourceAssessmentStrategy object with values from keyword arguments. The default value of the
strategy_type
attribute of this class isAS_IS
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - resource_type (str) – The value to assign to the resource_type property of this AsIsResourceAssessmentStrategy. Allowed values for this property are: “CPU”, “MEMORY”, “ALL”
- strategy_type (str) – The value to assign to the strategy_type property of this AsIsResourceAssessmentStrategy. Allowed values for this property are: “AS_IS”, “AVERAGE”, “PEAK”, “PERCENTILE”
- adjustment_multiplier (float) – The value to assign to the adjustment_multiplier property of this AsIsResourceAssessmentStrategy.
-
adjustment_multiplier
¶ Gets the adjustment_multiplier of this AsIsResourceAssessmentStrategy. The real resource usage is multiplied to this number before making any recommendation.
Returns: The adjustment_multiplier of this AsIsResourceAssessmentStrategy. Return type: float
-
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.
-
resource_type
¶ [Required] Gets the resource_type of this ResourceAssessmentStrategy. The type of resource.
Allowed values for this property are: “CPU”, “MEMORY”, “ALL”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The resource_type of this ResourceAssessmentStrategy. Return type: str
-
strategy_type
¶ [Required] Gets the strategy_type of this ResourceAssessmentStrategy. The type of strategy used for migration.
Allowed values for this property are: “AS_IS”, “AVERAGE”, “PEAK”, “PERCENTILE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The strategy_type of this ResourceAssessmentStrategy. Return type: str
-