Show / Hide Table of Contents

Class ImportRunbookPrecheckDetails

Request for precheck of Runbook import.

Inheritance
object
ImportRunbookPrecheckDetails
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 ImportRunbookPrecheckDetails

Properties

CompartmentId

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

OCID of the compartment to which the resource belongs to.

Remarks

Required

ContentDestination

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

Required

ContentSource

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

Required

ImportAs

Declaration
[JsonProperty(PropertyName = "importAs")]
public RunbookImportAs ImportAs { get; set; }
Property Value
Type Description
RunbookImportAs

RequiredValues

Declaration
[JsonProperty(PropertyName = "requiredValues")]
public List<ImportRunbookPrecheckRequiredValue> RequiredValues { get; set; }
Property Value
Type Description
List<ImportRunbookPrecheckRequiredValue>

List of required values.

In this article
Back to top