Show / Hide Table of Contents

Class CreateRestIcebergCatalogDetails

The information about a new Rest catalog used in the Iceberg connection.

Inheritance
object
CreateIcebergCatalogDetails
CreateRestIcebergCatalogDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class CreateRestIcebergCatalogDetails : CreateIcebergCatalogDetails

Properties

PropertiesSecretId

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

The OCID of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm

Remarks

Required

Uri

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

The base URL for the REST Catalog API. e.g.: 'https://my-rest-catalog.example.com/api/v1'

Remarks

Required

In this article
Back to top