Show / Hide Table of Contents

Class UpdateGoogleCloudStorageIcebergStorageDetails

The information to update the Google Cloud Storage storage used in the Iceberg connection.

Inheritance
object
UpdateIcebergStorageDetails
UpdateGoogleCloudStorageIcebergStorageDetails
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 UpdateGoogleCloudStorageIcebergStorageDetails : UpdateIcebergStorageDetails

Properties

Bucket

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

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

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
[JsonProperty(PropertyName = "projectId")]
public string ProjectId { get; set; }
Property Value
Type Description
string

The Google Cloud Project where the bucket exists.

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