initial commit

This commit is contained in:
2025-04-18 13:26:52 -07:00
commit b78296ab5b
134 changed files with 11623 additions and 0 deletions

67
sdk/dotnet/GetDataSource.cs generated Normal file
View File

@@ -0,0 +1,67 @@
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** 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.Xyz
{
public static class GetDataSource
{
public static Task<GetDataSourceResult> InvokeAsync(GetDataSourceArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetDataSourceResult>("xyz:index/getDataSource:getDataSource", args ?? new GetDataSourceArgs(), options.WithDefaults());
public static Output<GetDataSourceResult> Invoke(GetDataSourceInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetDataSourceResult>("xyz:index/getDataSource:getDataSource", args ?? new GetDataSourceInvokeArgs(), options.WithDefaults());
public static Output<GetDataSourceResult> Invoke(GetDataSourceInvokeArgs args, InvokeOutputOptions options)
=> global::Pulumi.Deployment.Instance.Invoke<GetDataSourceResult>("xyz:index/getDataSource:getDataSource", args ?? new GetDataSourceInvokeArgs(), options.WithDefaults());
}
public sealed class GetDataSourceArgs : global::Pulumi.InvokeArgs
{
[Input("sampleAttribute", required: true)]
public string SampleAttribute { get; set; } = null!;
public GetDataSourceArgs()
{
}
public static new GetDataSourceArgs Empty => new GetDataSourceArgs();
}
public sealed class GetDataSourceInvokeArgs : global::Pulumi.InvokeArgs
{
[Input("sampleAttribute", required: true)]
public Input<string> SampleAttribute { get; set; } = null!;
public GetDataSourceInvokeArgs()
{
}
public static new GetDataSourceInvokeArgs Empty => new GetDataSourceInvokeArgs();
}
[OutputType]
public sealed class GetDataSourceResult
{
/// <summary>
/// The provider-assigned unique ID for this managed resource.
/// </summary>
public readonly string Id;
public readonly string SampleAttribute;
[OutputConstructor]
private GetDataSourceResult(
string id,
string sampleAttribute)
{
Id = id;
SampleAttribute = sampleAttribute;
}
}
}