Show / Hide Table of Contents

Class DrsFileSummary

A Deployment Rule Set(DRS) is a JAR (Java ARchive) file used in Java applications to enforce security and manage compatibility between different versions of Java applets and web start applications (https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/deployment_rules.html).

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

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

ChecksumType

Declaration
[Required(ErrorMessage = "ChecksumType is required.")]
[JsonProperty(PropertyName = "checksumType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DrsFileSummary.ChecksumTypeEnum? ChecksumType { get; set; }
Property Value
Type Description
DrsFileSummary.ChecksumTypeEnum?

The checksum type for the DRS file in Object Storage.

Remarks

Required

ChecksumValue

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

The checksum value for the DRS file in Object Storage.

Remarks

Required

DrsFileKey

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

The unique identifier of the DRS file in Object Storage.

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

IsDefault

Declaration
[Required(ErrorMessage = "IsDefault is required.")]
[JsonProperty(PropertyName = "isDefault")]
public bool? IsDefault { get; set; }
Property Value
Type Description
bool?

To check if the DRS file is the detfault ones.

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