Show / Hide Table of Contents

Class CreateMetastoreDetails

Information about a new metastore.

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

Properties

CompartmentId

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

OCID of the compartment which holds the metastore.

Remarks

Required

DefaultExternalTableLocation

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

Location under which external tables will be created by default. This references Object Storage using an HDFS URI format. Example: oci://bucket@namespace/sub-dir/

Remarks

Required

DefaultManagedTableLocation

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

Location under which managed tables will be created by default. This references Object Storage using an HDFS URI format. Example: oci://bucket@namespace/sub-dir/

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

Mutable name of the metastore.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

In this article
Back to top