pulumi/tests/testdata/codegen/output-funcs/dotnet/FuncWithEmptyOutputs.cs

36 lines
1.1 KiB
C#

// *** 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();
}
}