import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Oracle Db Azure Keys in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Keys based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureKeys = oci.oci.getDbmulticloudOracleDbAzureKeys({ * compartmentId: compartmentId, * displayName: oracleDbAzureKeyDisplayName, * oracleDbAzureKeyId: testOracleDbAzureKey.id, * oracleDbAzureVaultId: testOracleDbAzureVault.id, * state: oracleDbAzureKeyState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureKeys(args: GetDbmulticloudOracleDbAzureKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureKeys. */ export interface GetDbmulticloudOracleDbAzureKeysArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return Oracle DB Azure Vault Keys resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbAzureKeysFilter[]; /** * A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ oracleDbAzureKeyId?: string; /** * A filter to return Oracle DB Azure Vault resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource. */ oracleDbAzureVaultId?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getDbmulticloudOracleDbAzureKeys. */ export interface GetDbmulticloudOracleDbAzureKeysResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Key resource. */ readonly compartmentId: string; /** * Oracle DB Azure Vault Key resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbAzureKeysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly oracleDbAzureKeyId?: string; /** * The list of oracle_db_azure_key_summary_collection. */ readonly oracleDbAzureKeySummaryCollections: outputs.oci.GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource. */ readonly oracleDbAzureVaultId?: string; /** * The current lifecycle state of the Oracle DB Azure Vault Key resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Azure Keys in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Keys based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureKeys = oci.oci.getDbmulticloudOracleDbAzureKeys({ * compartmentId: compartmentId, * displayName: oracleDbAzureKeyDisplayName, * oracleDbAzureKeyId: testOracleDbAzureKey.id, * oracleDbAzureVaultId: testOracleDbAzureVault.id, * state: oracleDbAzureKeyState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureKeysOutput(args: GetDbmulticloudOracleDbAzureKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureKeys. */ export interface GetDbmulticloudOracleDbAzureKeysOutputArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return Oracle DB Azure Vault Keys resources that match the specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ oracleDbAzureKeyId?: pulumi.Input; /** * A filter to return Oracle DB Azure Vault resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource. */ oracleDbAzureVaultId?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAzureKeys.d.ts.map