// *** WARNING: this file was generated by test. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;

namespace Pulumi.Mypkg
{
    public static class FuncWithEmptyOutputs
    {
        /// <summary>
        /// n/a
        /// </summary>
        public static Task InvokeAsync(FuncWithEmptyOutputsArgs args, InvokeOptions? options = null)
            => global::Pulumi.Deployment.Instance.InvokeAsync("mypkg::funcWithEmptyOutputs", args ?? new FuncWithEmptyOutputsArgs(), options.WithDefaults());
    }


    public sealed class FuncWithEmptyOutputsArgs : global::Pulumi.InvokeArgs
    {
        /// <summary>
        /// The Name of the FeatureGroup.
        /// </summary>
        [Input("name", required: true)]
        public string Name { get; set; } = null!;

        public FuncWithEmptyOutputsArgs()
        {
        }
        public static new FuncWithEmptyOutputsArgs Empty => new FuncWithEmptyOutputsArgs();
    }
}