Show / Hide Table of Contents

Class CreateBdsMetastoreConfigurationDetails

The request body when creating BDS metastore configuration.

Inheritance
object
CreateBdsMetastoreConfigurationDetails
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 CreateBdsMetastoreConfigurationDetails

Properties

BdsApiKeyId

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

The ID of BDS Api Key used for Data Catalog metastore integration.

Remarks

Required

BdsApiKeyPassphrase

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

Base-64 encoded passphrase of the BDS Api Key.

Remarks

Required

ClusterAdminPassword

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

Base-64 encoded password for the cluster admin user.

Remarks

Required

DisplayName

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

The display name of the metastore configuration

MetastoreId

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

The OCID of the Data Catalog metastore.

Remarks

Required

In this article
Back to top