Show / Hide Table of Contents

Class UpdateObjectStorageArchiveSourceDetails

Source details required for updating an archive based function from Object Storage.

Inheritance
object
UpdateArchiveSourceDetails
UpdateObjectStorageArchiveSourceDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FunctionsService.Models
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class UpdateObjectStorageArchiveSourceDetails : UpdateArchiveSourceDetails

Properties

BucketName

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

The name of the Object Storage bucket.

Namespace

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

The Object Storage namespace.

ObjectName

Declaration
[JsonProperty(PropertyName = "objectName")]
public string ObjectName { get; set; }
Property Value
Type Description
string

The name of the Object Storage object.

ObjectVersionId

Declaration
[JsonProperty(PropertyName = "objectVersionId")]
public string ObjectVersionId { get; set; }
Property Value
Type Description
string

VersionId used to identify a particular version of the object. If not specified, the latest version of the object is used.

In this article
Back to top