Show / Hide Table of Contents

Class ImageSourceViaObjectStorageTupleDetails

Inheritance
object
ImageSourceDetails
ImageSourceViaObjectStorageTupleDetails
Inherited Members
ImageSourceDetails.OperatingSystem
ImageSourceDetails.OperatingSystemVersion
ImageSourceDetails.SourceImageType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class ImageSourceViaObjectStorageTupleDetails : ImageSourceDetails

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 for the image.

Remarks

Required

NamespaceName

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

The Object Storage namespace for the image.

Remarks

Required

ObjectName

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

The Object Storage name for the image.

Remarks

Required

In this article
Back to top