Show / Hide Table of Contents

Class UpdateObjectStorageScriptLocationDetails

The details for updating an object storage script location for a user-defined step in a DR plan.

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

Properties

Bucket

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

The bucket name inside the object storage namespace.
Example: custom_dr_scripts

Remarks

Required

Namespace

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

The namespace in object storage (Note - this is usually the tenancy name).
Example: myocitenancy

Remarks

Required

Object

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

The object name inside the object storage bucket.
Example: validate_app_start.sh

Remarks

Required

In this article
Back to top