2022-05-23 21:43:38 +00:00
|
|
|
// 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"
|
2023-06-14 16:34:49 +00:00
|
|
|
"output-funcs/mypkg/internal"
|
2022-05-23 21:43:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// n/a
|
2022-12-09 13:36:44 +00:00
|
|
|
func FuncWithEmptyOutputs(ctx *pulumi.Context, args *FuncWithEmptyOutputsArgs, opts ...pulumi.InvokeOption) error {
|
2023-06-14 16:34:49 +00:00
|
|
|
opts = internal.PkgInvokeDefaultOpts(opts)
|
2022-12-09 13:36:44 +00:00
|
|
|
var rv struct{}
|
2022-05-23 21:43:38 +00:00
|
|
|
err := ctx.Invoke("mypkg::funcWithEmptyOutputs", args, &rv, opts...)
|
2022-12-09 13:36:44 +00:00
|
|
|
return err
|
2022-05-23 21:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FuncWithEmptyOutputsArgs struct {
|
|
|
|
// The Name of the FeatureGroup.
|
|
|
|
Name string `pulumi:"name"`
|
|
|
|
}
|