Show / Hide Table of Contents

Class BucketDetailsDefinition

Information about a particular bucket.

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

Properties

BucketType

Declaration
[Required(ErrorMessage = "BucketType is required.")]
[JsonProperty(PropertyName = "bucketType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BucketDetailsDefinition.BucketTypeEnum? BucketType { get; set; }
Property Value
Type Description
BucketDetailsDefinition.BucketTypeEnum?

Type of bucket. SENDER pipelines can be SOURCE, TRANSFER, REJECT, or FAILED. RECEIVER pipelines have a DESTINATION bucket.

Remarks

Required

Id

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

OCID of the bucket.

Remarks

Required

Name

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

Name of the bucket.

Remarks

Required

Namespace

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

Namespace of the bucket.

Remarks

Required

In this article
Back to top