/** * GoldenGate API * Use the Oracle Cloud Infrastructure GoldenGate APIs to perform data replication operations. * OpenAPI spec version: 20200407 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Deployment Data for an OggDeployment * */ export interface OggDeployment { /** * The name given to the GoldenGate service deployment. * The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter. * */ "deploymentName": string; /** * The GoldenGate deployment console username. * */ "adminUsername": string; /** * Version of OGG * */ "oggVersion"?: string; /** * The base64 encoded content of the PEM file containing the SSL certificate. * */ "certificate"?: string; /** * The type of credential store for OGG. * */ "credentialStore"?: model.CredentialStore; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used. * */ "identityDomainId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the deployment password is stored. * */ "passwordSecretId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the deployment ssl private key is stored in PEM format. * */ "keySecretId"?: string; "groupToRolesMapping"?: model.GroupToRolesMappingDetails; } export declare namespace OggDeployment { function getJsonObj(obj: OggDeployment): object; function getDeserializedJsonObj(obj: OggDeployment): object; }