import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a list of supported character sets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getAdbsCharacterSets({ * location: "West Europe", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getAdbsCharacterSets(args: GetAdbsCharacterSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAdbsCharacterSets. */ export interface GetAdbsCharacterSetsArgs { /** * The Azure Region to query for the character sets in. */ location: string; } /** * A collection of values returned by getAdbsCharacterSets. */ export interface GetAdbsCharacterSetsResult { /** * A `characterSets` block as defined below. */ readonly characterSets: outputs.oracle.GetAdbsCharacterSetsCharacterSet[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; } /** * Gets a list of supported character sets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getAdbsCharacterSets({ * location: "West Europe", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getAdbsCharacterSetsOutput(args: GetAdbsCharacterSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAdbsCharacterSets. */ export interface GetAdbsCharacterSetsOutputArgs { /** * The Azure Region to query for the character sets in. */ location: pulumi.Input; }