Show / Hide Table of Contents

Class InstallOsPatchDetails

Os patch details for installing a os patches to a cluster.

Inheritance
object
InstallOsPatchDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class InstallOsPatchDetails

Properties

ClusterAdminPassword

Declaration
[Required(ErrorMessage = "ClusterAdminPassword is required.")]
[JsonProperty(PropertyName = "clusterAdminPassword")]
public string ClusterAdminPassword { get; set; }
Property Value
Type Description
string

Base-64 encoded password for the cluster admin user.

Remarks

Required

IsDryRun

Declaration
[JsonProperty(PropertyName = "isDryRun")]
public bool? IsDryRun { get; set; }
Property Value
Type Description
bool?

Perform dry run for the patch and stop.

OsPatchVersion

Declaration
[Required(ErrorMessage = "OsPatchVersion is required.")]
[JsonProperty(PropertyName = "osPatchVersion")]
public string OsPatchVersion { get; set; }
Property Value
Type Description
string

The target os patch version.

Remarks

Required

PatchingConfigs

Declaration
[JsonProperty(PropertyName = "patchingConfigs")]
public PatchingConfigs PatchingConfigs { get; set; }
Property Value
Type Description
PatchingConfigs
In this article
Back to top