UNPKG

@pulumi-helpers/component-random-suffix

Version:
17 lines (14 loc) 411 B
import * as pulumi from '@pulumi/pulumi'; interface Props { length?: number; import?: string; } /** * 生成随机后缀(模拟pulumi生成项目名) */ declare class RandomSuffixComponent extends pulumi.ComponentResource { private name; result?: pulumi.Output<string>; constructor(name: string, props: Props, opts?: pulumi.ComponentResourceOptions); } export { RandomSuffixComponent };