Show / Hide Table of Contents

Class CreateGoogleCloudStorageIcebergStorageDetails

The information about a new Google Cloud Storage storage used in the Iceberg connection.

Inheritance
object
CreateIcebergStorageDetails
CreateGoogleCloudStorageIcebergStorageDetails
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 CreateGoogleCloudStorageIcebergStorageDetails : CreateIcebergStorageDetails

Properties

Bucket

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

Google Cloud Storage bucket where Iceberg stores metadata and data files.

Remarks

Required

ProjectId

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

The Google Cloud Project where the bucket exists.

Remarks

Required

ServiceAccountKeyFileSecretId

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

The OCID of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage.

Remarks

Required

In this article
Back to top