Show / Hide Table of Contents

Class ObjectStorageLocation

The object storage location where usage or cost CSVs will be uploaded.

Inheritance
object
ResultLocation
ObjectStorageLocation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.UsageapiService.Models
Assembly: OCI.DotNetSDK.Usageapi.dll
Syntax
public class ObjectStorageLocation : ResultLocation

Properties

BucketName

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

The bucket name where usage or cost CSVs will be uploaded.

Remarks

Required

Namespace

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

The namespace needed to determine the object storage bucket.

Remarks

Required

Region

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

The destination Object Store Region specified by the customer.

Remarks

Required

In this article
Back to top