2022-05-23 21:43:38 +00:00
|
|
|
// *** 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>
|
2022-12-09 13:36:44 +00:00
|
|
|
public static Task InvokeAsync(FuncWithEmptyOutputsArgs args, InvokeOptions? options = null)
|
|
|
|
=> global::Pulumi.Deployment.Instance.InvokeAsync("mypkg::funcWithEmptyOutputs", args ?? new FuncWithEmptyOutputsArgs(), options.WithDefaults());
|
2022-05-23 21:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-27 09:24:21 +00:00
|
|
|
public sealed class FuncWithEmptyOutputsArgs : global::Pulumi.InvokeArgs
|
2022-05-23 21:43:38 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The Name of the FeatureGroup.
|
|
|
|
/// </summary>
|
|
|
|
[Input("name", required: true)]
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
|
|
|
|
public FuncWithEmptyOutputsArgs()
|
|
|
|
{
|
|
|
|
}
|
2022-07-27 09:23:34 +00:00
|
|
|
public static new FuncWithEmptyOutputsArgs Empty => new FuncWithEmptyOutputsArgs();
|
2022-05-23 21:43:38 +00:00
|
|
|
}
|
|
|
|
}
|