Show / Hide Table of Contents

Class CreateDrsFileDetails

Details of the request to create DRS file in a Fleet.

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

Properties

BucketName

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

The Object Storage bucket name where the DRS file is located.

Remarks

Required

DrsFileName

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

The name of the DRS file in Object Store.

Remarks

Required

Namespace

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

The namespace for Object Storage.

Remarks

Required

In this article
Back to top