mirror of https://github.com/pulumi/pulumi.git
53 lines
1.4 KiB
C#
53 lines
1.4 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 reference.
|
|
/// </summary>
|
|
[OutputType]
|
|
public sealed class SsisEnvironmentReferenceResponse
|
|
{
|
|
/// <summary>
|
|
/// Environment folder name.
|
|
/// </summary>
|
|
public readonly string? EnvironmentFolderName;
|
|
/// <summary>
|
|
/// Environment name.
|
|
/// </summary>
|
|
public readonly string? EnvironmentName;
|
|
/// <summary>
|
|
/// Environment reference id.
|
|
/// </summary>
|
|
public readonly double? Id;
|
|
/// <summary>
|
|
/// Reference type
|
|
/// </summary>
|
|
public readonly string? ReferenceType;
|
|
|
|
[OutputConstructor]
|
|
private SsisEnvironmentReferenceResponse(
|
|
string? environmentFolderName,
|
|
|
|
string? environmentName,
|
|
|
|
double? id,
|
|
|
|
string? referenceType)
|
|
{
|
|
EnvironmentFolderName = environmentFolderName;
|
|
EnvironmentName = environmentName;
|
|
Id = id;
|
|
ReferenceType = referenceType;
|
|
}
|
|
}
|
|
}
|