Show / Hide Table of Contents

Class PlatformSpecificArtifact

Patch artifact metadata Details which is platform specific.

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

Properties

Architecture

Declaration
[Required(ErrorMessage = "Architecture is required.")]
[JsonProperty(PropertyName = "architecture")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PlatformSpecificArtifact.ArchitectureEnum? Architecture { get; set; }
Property Value
Type Description
PlatformSpecificArtifact.ArchitectureEnum?

System architecture.

Remarks

Required

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public PatchFileContentDetails Content { get; set; }
Property Value
Type Description
PatchFileContentDetails
Remarks

Required

OsType

Declaration
[Required(ErrorMessage = "OsType is required.")]
[JsonProperty(PropertyName = "osType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PlatformSpecificArtifact.OsTypeEnum? OsType { get; set; }
Property Value
Type Description
PlatformSpecificArtifact.OsTypeEnum?

The OS type the patch is applicable for.

Remarks

Required

In this article
Back to top