mirror of https://github.com/pulumi/pulumi.git
23 lines
624 B
Go
23 lines
624 B
Go
// Code generated by test DO NOT EDIT.
|
|
// *** WARNING: Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
package mypkg
|
|
|
|
import (
|
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
|
"output-funcs-go-generics-only/mypkg/internal"
|
|
)
|
|
|
|
// n/a
|
|
func FuncWithEmptyOutputs(ctx *pulumi.Context, args *FuncWithEmptyOutputsArgs, opts ...pulumi.InvokeOption) error {
|
|
opts = internal.PkgInvokeDefaultOpts(opts)
|
|
var rv struct{}
|
|
err := ctx.Invoke("mypkg::funcWithEmptyOutputs", args, &rv, opts...)
|
|
return err
|
|
}
|
|
|
|
type FuncWithEmptyOutputsArgs struct {
|
|
// The Name of the FeatureGroup.
|
|
Name string `pulumi:"name"`
|
|
}
|