import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This source triggers action to create, update and delete replica for a vault in Oracle Cloud Infrastructure Kms service. * * A vault replica is a mirror of that vault in a different region in the same realm. * The vault replica and all the resources have same OCID with corresponding original ones. * * This only supports virtual private vault for now. * This supports only one replica in a region for a vault. Multiple replica will be supported in the future. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReplication = new oci.kms.VaultVerification("test_replication", { * vaultId: testVault.id, * replicaRegion: replicaRegion, * }); * ``` */ export declare class VaultVerification extends pulumi.CustomResource { /** * Get an existing VaultVerification resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: VaultVerificationState, opts?: pulumi.CustomResourceOptions): VaultVerification; /** * Returns true if the given object is an instance of VaultVerification. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VaultVerification; readonly cryptoEndpoint: pulumi.Output; readonly managementEndpoint: pulumi.Output; /** * (Updatable) The region to be created replica to. When updated, * replica will be deleted from old region, and created to updated region. */ readonly replicaRegion: pulumi.Output; readonly replicaVaultMetadata: pulumi.Output; /** * The OCID of the primary vault to create replica from. */ readonly vaultId: pulumi.Output; readonly vaultReplicaStatus: pulumi.Output; /** * Create a VaultVerification resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VaultVerificationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VaultVerification resources. */ export interface VaultVerificationState { cryptoEndpoint?: pulumi.Input; managementEndpoint?: pulumi.Input; /** * (Updatable) The region to be created replica to. When updated, * replica will be deleted from old region, and created to updated region. */ replicaRegion?: pulumi.Input; replicaVaultMetadata?: pulumi.Input; /** * The OCID of the primary vault to create replica from. */ vaultId?: pulumi.Input; vaultReplicaStatus?: pulumi.Input; } /** * The set of arguments for constructing a VaultVerification resource. */ export interface VaultVerificationArgs { /** * (Updatable) The region to be created replica to. When updated, * replica will be deleted from old region, and created to updated region. */ replicaRegion: pulumi.Input; replicaVaultMetadata?: pulumi.Input; /** * The OCID of the primary vault to create replica from. */ vaultId: pulumi.Input; } //# sourceMappingURL=vaultVerification.d.ts.map