UpdateServiceAvailabilityFactorBatchingStrategyDetails¶
- 
class oci.fleet_software_update.models.UpdateServiceAvailabilityFactorBatchingStrategyDetails(**kwargs)¶
- Bases: - oci.fleet_software_update.models.update_batching_strategy_details.UpdateBatchingStrategyDetails- Service Availability Factor batching strategy details to use during PRECHECK and APPLY Cycle Actions. - Attributes - TYPE_FIFTY_FIFTY- str(object=’’) -> str - TYPE_NONE- str(object=’’) -> str - TYPE_NON_ROLLING- str(object=’’) -> str - TYPE_SEQUENTIAL- str(object=’’) -> str - TYPE_SERVICE_AVAILABILITY_FACTOR- str(object=’’) -> str - is_force_rolling- Gets the is_force_rolling of this UpdateServiceAvailabilityFactorBatchingStrategyDetails. - percentage- Gets the percentage of this UpdateServiceAvailabilityFactorBatchingStrategyDetails. - type- Gets the type of this UpdateBatchingStrategyDetails. - Methods - __init__(**kwargs)- Initializes a new UpdateServiceAvailabilityFactorBatchingStrategyDetails 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_FIFTY_FIFTY= 'FIFTY_FIFTY'¶
 - 
TYPE_NONE= 'NONE'¶
 - 
TYPE_NON_ROLLING= 'NON_ROLLING'¶
 - 
TYPE_SEQUENTIAL= 'SEQUENTIAL'¶
 - 
TYPE_SERVICE_AVAILABILITY_FACTOR= 'SERVICE_AVAILABILITY_FACTOR'¶
 - 
__init__(**kwargs)¶
- Initializes a new UpdateServiceAvailabilityFactorBatchingStrategyDetails object with values from keyword arguments. The default value of the - typeattribute of this class is- SERVICE_AVAILABILITY_FACTORand it should not be changed. 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 UpdateServiceAvailabilityFactorBatchingStrategyDetails. Allowed values for this property are: “SEQUENTIAL”, “FIFTY_FIFTY”, “SERVICE_AVAILABILITY_FACTOR”, “NON_ROLLING”, “NONE”
- percentage (int) – The value to assign to the percentage property of this UpdateServiceAvailabilityFactorBatchingStrategyDetails.
- is_force_rolling (bool) – The value to assign to the is_force_rolling property of this UpdateServiceAvailabilityFactorBatchingStrategyDetails.
 
 - 
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. 
 - 
is_force_rolling¶
- Gets the is_force_rolling of this UpdateServiceAvailabilityFactorBatchingStrategyDetails. True to force rolling patching. - Returns: - The is_force_rolling of this UpdateServiceAvailabilityFactorBatchingStrategyDetails. - Return type: - bool 
 - 
percentage¶
- Gets the percentage of this UpdateServiceAvailabilityFactorBatchingStrategyDetails. Percentage of availability in the service during the Patch operation. - Returns: - The percentage of this UpdateServiceAvailabilityFactorBatchingStrategyDetails. - Return type: - int 
 - 
type¶
- Gets the type of this UpdateBatchingStrategyDetails. Supported batching strategies. - Allowed values for this property are: “SEQUENTIAL”, “FIFTY_FIFTY”, “SERVICE_AVAILABILITY_FACTOR”, “NON_ROLLING”, “NONE” - Returns: - The type of this UpdateBatchingStrategyDetails. - Return type: - str 
 
-