Show / Hide Table of Contents

Class CreateUbuntuStandAloneProfileDetails

Provides the information used to create an Ubuntu standalone registration profile.

Inheritance
object
CreateProfileDetails
CreateUbuntuStandAloneProfileDetails
Inherited Members
CreateProfileDetails.DisplayName
CreateProfileDetails.CompartmentId
CreateProfileDetails.Description
CreateProfileDetails.ManagementStationId
CreateProfileDetails.RegistrationType
CreateProfileDetails.IsDefaultProfile
CreateProfileDetails.FreeformTags
CreateProfileDetails.DefinedTags
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 CreateUbuntuStandAloneProfileDetails : CreateProfileDetails

Properties

ArchType

Declaration
[Required(ErrorMessage = "ArchType is required.")]
[JsonProperty(PropertyName = "archType")]
[JsonConverter(typeof(StringEnumConverter))]
public ArchType? ArchType { get; set; }
Property Value
Type Description
ArchType?

The architecture type.

Remarks

Required

OsFamily

Declaration
[Required(ErrorMessage = "OsFamily is required.")]
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(StringEnumConverter))]
public OsFamily? OsFamily { get; set; }
Property Value
Type Description
OsFamily?

The operating system family.

Remarks

Required

VendorName

Declaration
[Required(ErrorMessage = "VendorName is required.")]
[JsonProperty(PropertyName = "vendorName")]
[JsonConverter(typeof(StringEnumConverter))]
public VendorName? VendorName { get; set; }
Property Value
Type Description
VendorName?

The vendor of the operating system for the instance.

Remarks

Required

In this article
Back to top