Show / Hide Table of Contents

Class InstallPackagesOnManagedInstanceGroupDetails

The names of the packages to be installed on the managed instance group.

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

Properties

IsLatest

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

Indicates whether this is the latest package version.

PackageNames

Declaration
[Required(ErrorMessage = "PackageNames is required.")]
[JsonProperty(PropertyName = "packageNames")]
public List<string> PackageNames { get; set; }
Property Value
Type Description
List<string>

The list of package names.

Remarks

Required

WorkRequestDetails

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