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

Endpoint

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

A legal URL to connect to Google Cloud Storage including scheme, server name and port (if not the default port). Default: https://storage.googleapis.com

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

ServiceAccountKeyFile

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

The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.

ServiceAccountKeyFileSecretId

Declaration
[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.

In this article
Back to top