pulumi/tests/testdata/codegen/output-funcs/dotnet/Outputs/SsisEnvironmentResponse.cs

68 lines
1.7 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.Outputs
{
/// <summary>
/// Ssis environment.
/// </summary>
[OutputType]
public sealed class SsisEnvironmentResponse
{
/// <summary>
/// Metadata description.
/// </summary>
public readonly string? Description;
/// <summary>
/// Folder id which contains environment.
/// </summary>
public readonly double? FolderId;
/// <summary>
/// Metadata id.
/// </summary>
public readonly double? Id;
/// <summary>
/// Metadata name.
/// </summary>
public readonly string? Name;
/// <summary>
/// The type of SSIS object metadata.
/// Expected value is 'Environment'.
/// </summary>
public readonly string Type;
/// <summary>
/// Variable in environment
/// </summary>
public readonly ImmutableArray<Outputs.SsisVariableResponse> Variables;
[OutputConstructor]
private SsisEnvironmentResponse(
string? description,
double? folderId,
double? id,
string? name,
string type,
ImmutableArray<Outputs.SsisVariableResponse> variables)
{
Description = description;
FolderId = folderId;
Id = id;
Name = name;
Type = type;
Variables = variables;
}
}
}