InstallOsPatchDetails¶
- 
class oci.bds.models.InstallOsPatchDetails(**kwargs)¶
- Bases: - object- Os patch details for installing a os patches to a cluster. - Methods - __init__(**kwargs)- Initializes a new InstallOsPatchDetails object with values from keyword arguments. - Attributes - cluster_admin_password- [Required] Gets the cluster_admin_password of this InstallOsPatchDetails. - is_dry_run- Gets the is_dry_run of this InstallOsPatchDetails. - os_patch_version- [Required] Gets the os_patch_version of this InstallOsPatchDetails. - patching_configs- Gets the patching_configs of this InstallOsPatchDetails. - 
__init__(**kwargs)¶
- Initializes a new InstallOsPatchDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - os_patch_version (str) – The value to assign to the os_patch_version property of this InstallOsPatchDetails.
- cluster_admin_password (str) – The value to assign to the cluster_admin_password property of this InstallOsPatchDetails.
- patching_configs (oci.bds.models.PatchingConfigs) – The value to assign to the patching_configs property of this InstallOsPatchDetails.
- is_dry_run (bool) – The value to assign to the is_dry_run property of this InstallOsPatchDetails.
 
 - 
cluster_admin_password¶
- [Required] Gets the cluster_admin_password of this InstallOsPatchDetails. Base-64 encoded password for the cluster admin user. - Returns: - The cluster_admin_password of this InstallOsPatchDetails. - Return type: - str 
 - 
is_dry_run¶
- Gets the is_dry_run of this InstallOsPatchDetails. Perform dry run for the patch and stop. - Returns: - The is_dry_run of this InstallOsPatchDetails. - Return type: - bool 
 - 
os_patch_version¶
- [Required] Gets the os_patch_version of this InstallOsPatchDetails. The target os patch version. - Returns: - The os_patch_version of this InstallOsPatchDetails. - Return type: - str 
 - 
patching_configs¶
- Gets the patching_configs of this InstallOsPatchDetails. - Returns: - The patching_configs of this InstallOsPatchDetails. - Return type: - oci.bds.models.PatchingConfigs 
 
-