mirror of https://github.com/pulumi/pulumi.git
82 lines
2.2 KiB
C#
82 lines
2.2 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 project.
|
|
/// </summary>
|
|
[OutputType]
|
|
public sealed class SsisProjectResponse
|
|
{
|
|
/// <summary>
|
|
/// Metadata description.
|
|
/// </summary>
|
|
public readonly string? Description;
|
|
/// <summary>
|
|
/// Environment reference in project
|
|
/// </summary>
|
|
public readonly ImmutableArray<Outputs.SsisEnvironmentReferenceResponse> EnvironmentRefs;
|
|
/// <summary>
|
|
/// Folder id which contains project.
|
|
/// </summary>
|
|
public readonly double? FolderId;
|
|
/// <summary>
|
|
/// Metadata id.
|
|
/// </summary>
|
|
public readonly double? Id;
|
|
/// <summary>
|
|
/// Metadata name.
|
|
/// </summary>
|
|
public readonly string? Name;
|
|
/// <summary>
|
|
/// Parameters in project
|
|
/// </summary>
|
|
public readonly ImmutableArray<Outputs.SsisParameterResponse> Parameters;
|
|
/// <summary>
|
|
/// The type of SSIS object metadata.
|
|
/// Expected value is 'Project'.
|
|
/// </summary>
|
|
public readonly string Type;
|
|
/// <summary>
|
|
/// Project version.
|
|
/// </summary>
|
|
public readonly double? Version;
|
|
|
|
[OutputConstructor]
|
|
private SsisProjectResponse(
|
|
string? description,
|
|
|
|
ImmutableArray<Outputs.SsisEnvironmentReferenceResponse> environmentRefs,
|
|
|
|
double? folderId,
|
|
|
|
double? id,
|
|
|
|
string? name,
|
|
|
|
ImmutableArray<Outputs.SsisParameterResponse> parameters,
|
|
|
|
string type,
|
|
|
|
double? version)
|
|
{
|
|
Description = description;
|
|
EnvironmentRefs = environmentRefs;
|
|
FolderId = folderId;
|
|
Id = id;
|
|
Name = name;
|
|
Parameters = parameters;
|
|
Type = type;
|
|
Version = version;
|
|
}
|
|
}
|
|
}
|