import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a list of supported national 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: exampleAzurermOracleAdbsNationalCharacterSets, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getAdbsNationalCharacterSets(args: GetAdbsNationalCharacterSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAdbsNationalCharacterSets. */ export interface GetAdbsNationalCharacterSetsArgs { /** * The Azure Region to query for the national character sets in. */ location: string; } /** * A collection of values returned by getAdbsNationalCharacterSets. */ export interface GetAdbsNationalCharacterSetsResult { /** * A `characterSets` block as defined below. */ readonly characterSets: outputs.oracle.GetAdbsNationalCharacterSetsCharacterSet[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; } /** * Gets a list of supported national 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: exampleAzurermOracleAdbsNationalCharacterSets, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getAdbsNationalCharacterSetsOutput(args: GetAdbsNationalCharacterSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAdbsNationalCharacterSets. */ export interface GetAdbsNationalCharacterSetsOutputArgs { /** * The Azure Region to query for the national character sets in. */ location: pulumi.Input; }