Show / Hide Table of Contents

Class CreateGoogleCloudStorageConnectionDetails

The information about a new Google Cloud Storage Connection.

Inheritance
object
CreateConnectionDetails
CreateGoogleCloudStorageConnectionDetails
Inherited Members
CreateConnectionDetails.DisplayName
CreateConnectionDetails.Description
CreateConnectionDetails.CompartmentId
CreateConnectionDetails.FreeformTags
CreateConnectionDetails.DefinedTags
CreateConnectionDetails.Locks
CreateConnectionDetails.VaultId
CreateConnectionDetails.KeyId
CreateConnectionDetails.NsgIds
CreateConnectionDetails.SubnetId
CreateConnectionDetails.RoutingMethod
CreateConnectionDetails.DoesUseSecretIds
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 CreateGoogleCloudStorageConnectionDetails : CreateConnectionDetails

Properties

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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.

TechnologyType

Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(StringEnumConverter))]
public GoogleCloudStorageConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type Description
GoogleCloudStorageConnection.TechnologyTypeEnum?

The Google Cloud Storage technology type.

Remarks

Required

In this article
Back to top