Show / Hide Table of Contents

Class UpdateRunObjectStoreScriptUserDefinedStepDetails

The details for updating a Run Object Store Script step.

Inheritance
object
UpdateDrPlanUserDefinedStepDetails
UpdateRunObjectStoreScriptUserDefinedStepDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class UpdateRunObjectStoreScriptUserDefinedStepDetails : UpdateDrPlanUserDefinedStepDetails

Properties

ObjectStorageScriptLocation

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

Required

RunOnInstanceId

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

The OCID of the instance on which this script or command should be executed.

For moving instances: runOnInstanceId must be the OCID of the instance in the region where the instance is currently present.

For non-moving instances: runOnInstanceId must be the OCID of the non-moving instance.

Example: ocid1.instance.oc1..uniqueID

Remarks

Required

In this article
Back to top