Show / Hide Table of Contents

Class TestBdsObjectStorageConnectionDetails

Test access to specified Object Storage bucket using the API key.

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

Properties

ObjectStorageRegion

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

The name of the region to establish the Object Storage endpoint. Example us-phoenix-1 .

ObjectStorageUri

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

An Oracle Cloud Infrastructure URI to which this connection must be attempted. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.

Remarks

Required

Passphrase

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

Base64 passphrase used to secure the private key which will be created on user behalf.

Remarks

Required

In this article
Back to top