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 Vault Associations in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Associations based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureVaultAssociations = oci.oci.getDbmulticloudOracleDbAzureVaultAssociations({ * compartmentId: compartmentId, * displayName: oracleDbAzureVaultAssociationDisplayName, * oracleDbAzureConnectorId: testOracleDbAzureConnector.id, * oracleDbAzureVaultAssociationId: testOracleDbAzureVaultAssociation.id, * oracleDbAzureVaultId: testOracleDbAzureVault.id, * state: oracleDbAzureVaultAssociationState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureVaultAssociations(args: GetDbmulticloudOracleDbAzureVaultAssociationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureVaultAssociations. */ export interface GetDbmulticloudOracleDbAzureVaultAssociationsArgs { /** * 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 Association resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbAzureVaultAssociationsFilter[]; /** * A filter to return Oracle DB Azure Azure Identity Connector resources. */ oracleDbAzureConnectorId?: 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 Association resource. */ oracleDbAzureVaultAssociationId?: 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 getDbmulticloudOracleDbAzureVaultAssociations. */ export interface GetDbmulticloudOracleDbAzureVaultAssociationsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association resource. */ readonly compartmentId: string; /** * Oracle DB Azure Vault Association resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbAzureVaultAssociationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource. */ readonly oracleDbAzureConnectorId?: string; readonly oracleDbAzureVaultAssociationId?: string; /** * The list of oracle_db_azure_vault_association_summary_collection. */ readonly oracleDbAzureVaultAssociationSummaryCollections: outputs.oci.GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociationSummaryCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource. */ readonly oracleDbAzureVaultId?: string; /** * The current lifecycle state of the Oracle DB Azure Vault Association resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Azure Vault Associations in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Associations based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureVaultAssociations = oci.oci.getDbmulticloudOracleDbAzureVaultAssociations({ * compartmentId: compartmentId, * displayName: oracleDbAzureVaultAssociationDisplayName, * oracleDbAzureConnectorId: testOracleDbAzureConnector.id, * oracleDbAzureVaultAssociationId: testOracleDbAzureVaultAssociation.id, * oracleDbAzureVaultId: testOracleDbAzureVault.id, * state: oracleDbAzureVaultAssociationState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureVaultAssociationsOutput(args: GetDbmulticloudOracleDbAzureVaultAssociationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureVaultAssociations. */ export interface GetDbmulticloudOracleDbAzureVaultAssociationsOutputArgs { /** * 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 Association resources that match the specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB Azure Azure Identity Connector resources. */ oracleDbAzureConnectorId?: 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 Association resource. */ oracleDbAzureVaultAssociationId?: 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=getDbmulticloudOracleDbAzureVaultAssociations.d.ts.map