Show / Hide Table of Contents

Class ImportRunbookVersionDetails

Request to Export Runbook Version.

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

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

ImportOption

Declaration
[JsonProperty(PropertyName = "importOption")]
[JsonConverter(typeof(StringEnumConverter))]
public ImportRunbookDetails.ImportOptionEnum? ImportOption { get; set; }
Property Value
Type Description
ImportRunbookDetails.ImportOptionEnum?

ImportOptions for Runbook.

RequiredValues

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

List of required values.

RunbookId

Declaration
[JsonProperty(PropertyName = "runbookId")]
public string RunbookId { get; set; }
Property Value
Type Description
string

The OCID of the resource.

Version

Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
string

Version number.

In this article
Back to top