import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Oracle Resource Anchor. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getResourceAnchor({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getResourceAnchor(args: GetResourceAnchorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResourceAnchor. */ export interface GetResourceAnchorArgs { /** * The name of this Oracle Resource Anchor. */ name: string; /** * The name of the Resource Group where the Oracle Resource Anchor exists. */ resourceGroupName: string; } /** * A collection of values returned by getResourceAnchor. */ export interface GetResourceAnchorResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Oracle Cloud Infrastructure compartment [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) which was created or linked by customer with Resource Anchor. */ readonly linkedCompartmentId: string; /** * The Azure Region where the Oracle Resource Anchor exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Oracle Resource Anchor. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Oracle Resource Anchor. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getResourceAnchor({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getResourceAnchorOutput(args: GetResourceAnchorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResourceAnchor. */ export interface GetResourceAnchorOutputArgs { /** * The name of this Oracle Resource Anchor. */ name: pulumi.Input; /** * The name of the Resource Group where the Oracle Resource Anchor exists. */ resourceGroupName: pulumi.Input; }