/** * 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 creating an OggDeployment * */ export interface CreateOggDeploymentDetails { /** * The name given to the GoldenGate service deployment. * The name must contain only alphanumeric characters and must start with a letter. * For standby deployment the deployment name is inherited from primary. * */ "deploymentName"?: 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 GoldenGate deployment console username. * */ "adminUsername"?: string; /** * The password associated with the GoldenGate deployment console username. * The password must be 8 to 30 characters long and must contain at least 1 uppercase, 1 lowercase, 1 numeric, * and 1 special character. Special characters such as '$', '^', or '?' are not allowed. * This field will be deprecated and replaced by \"passwordSecretId\". * */ "adminPassword"?: string; /** * The base64 encoded content of the PEM file containing the SSL certificate. * */ "certificate"?: string; /** * The base64 encoded content of the PEM file containing the private key. * */ "key"?: 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; /** * Version of OGG * */ "oggVersion"?: string; "groupToRolesMapping"?: model.GroupToRolesMappingDetails; } export declare namespace CreateOggDeploymentDetails { function getJsonObj(obj: CreateOggDeploymentDetails): object; function getDeserializedJsonObj(obj: CreateOggDeploymentDetails): object; }