UNPKG

@huaweicloudos/pulumi

Version:

A Pulumi package for creating and managing Huaweicloud cloud resources.

50 lines (49 loc) 1.61 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the list of RDS SQLServer collations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as huaweicloud from "@pulumi/huaweicloud"; * * const collations = pulumi.output(huaweicloud.Rds.getSqlserverCollations()); * ``` */ export declare function getSqlserverCollations(args?: GetSqlserverCollationsArgs, opts?: pulumi.InvokeOptions): Promise<GetSqlserverCollationsResult>; /** * A collection of arguments for invoking getSqlserverCollations. */ export interface GetSqlserverCollationsArgs { /** * Specifies the region in which to query the data source. * If omitted, the provider-level region will be used. */ region?: string; } /** * A collection of values returned by getSqlserverCollations. */ export interface GetSqlserverCollationsResult { /** * Indicates the character set information list. */ readonly charSets: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly region: string; } export declare function getSqlserverCollationsOutput(args?: GetSqlserverCollationsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSqlserverCollationsResult>; /** * A collection of arguments for invoking getSqlserverCollations. */ export interface GetSqlserverCollationsOutputArgs { /** * Specifies the region in which to query the data source. * If omitted, the provider-level region will be used. */ region?: pulumi.Input<string>; }