mirror of https://github.com/pulumi/pulumi.git
66 lines
2.1 KiB
C#
66 lines
2.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<FuncWithEmptyOutputsResult> InvokeAsync(FuncWithEmptyOutputsArgs args, InvokeOptions? options = null)
|
|
=> global::Pulumi.Deployment.Instance.InvokeAsync<FuncWithEmptyOutputsResult>("mypkg::funcWithEmptyOutputs", args ?? new FuncWithEmptyOutputsArgs(), options.WithDefaults());
|
|
|
|
/// <summary>
|
|
/// n/a
|
|
/// </summary>
|
|
public static Output<FuncWithEmptyOutputsResult> Invoke(FuncWithEmptyOutputsInvokeArgs args, InvokeOptions? options = null)
|
|
=> global::Pulumi.Deployment.Instance.Invoke<FuncWithEmptyOutputsResult>("mypkg::funcWithEmptyOutputs", args ?? new FuncWithEmptyOutputsInvokeArgs(), 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();
|
|
}
|
|
|
|
public sealed class FuncWithEmptyOutputsInvokeArgs : global::Pulumi.InvokeArgs
|
|
{
|
|
/// <summary>
|
|
/// The Name of the FeatureGroup.
|
|
/// </summary>
|
|
[Input("name", required: true)]
|
|
public Input<string> Name { get; set; } = null!;
|
|
|
|
public FuncWithEmptyOutputsInvokeArgs()
|
|
{
|
|
}
|
|
public static new FuncWithEmptyOutputsInvokeArgs Empty => new FuncWithEmptyOutputsInvokeArgs();
|
|
}
|
|
|
|
|
|
[OutputType]
|
|
public sealed class FuncWithEmptyOutputsResult
|
|
{
|
|
[OutputConstructor]
|
|
private FuncWithEmptyOutputsResult()
|
|
{
|
|
}
|
|
}
|
|
}
|