mirror of https://github.com/pulumi/pulumi.git
23 lines
656 B
TypeScript
23 lines
656 B
TypeScript
// *** WARNING: this file was generated by test. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as utilities from "./utilities";
|
|
|
|
/**
|
|
* n/a
|
|
*/
|
|
export function funcWithEmptyOutputs(args: FuncWithEmptyOutputsArgs, opts?: pulumi.InvokeOptions): Promise<void> {
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invoke("mypkg::funcWithEmptyOutputs", {
|
|
"name": args.name,
|
|
}, opts);
|
|
}
|
|
|
|
export interface FuncWithEmptyOutputsArgs {
|
|
/**
|
|
* The Name of the FeatureGroup.
|
|
*/
|
|
name: string;
|
|
}
|