pulumi/tests/testdata/codegen/simplified-invokes/dotnet/GetAsset.cs

31 lines
1.3 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.Std
{
public static class GetAsset
{
public static async Task<AssetOrArchive> InvokeAsync(double? a = null, InvokeOptions? invokeOptions = null)
{
var builder = ImmutableDictionary.CreateBuilder<string, object?>();
builder["a"] = a;
var args = new global::Pulumi.DictionaryInvokeArgs(builder.ToImmutableDictionary());
return await global::Pulumi.Deployment.Instance.InvokeSingleAsync<AssetOrArchive>("std:index:GetAsset", args, invokeOptions.WithDefaults());
}
public static Output<AssetOrArchive> Invoke(Input<double?>? a = null, InvokeOptions? invokeOptions = null)
{
var builder = ImmutableDictionary.CreateBuilder<string, object?>();
builder["a"] = a;
var args = new global::Pulumi.DictionaryInvokeArgs(builder.ToImmutableDictionary());
return global::Pulumi.Deployment.Instance.InvokeSingle<AssetOrArchive>("std:index:GetAsset", args, invokeOptions.WithDefaults());
}
}
}