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

67 lines
1.9 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.Myedgeorder.Outputs
{
/// <summary>
/// Description related properties of a product system.
/// </summary>
[OutputType]
public sealed class DescriptionResponse
{
/// <summary>
/// Attributes for the product system.
/// </summary>
public readonly ImmutableArray<string> Attributes;
/// <summary>
/// Type of description.
/// </summary>
public readonly string DescriptionType;
/// <summary>
/// Keywords for the product system.
/// </summary>
public readonly ImmutableArray<string> Keywords;
/// <summary>
/// Links for the product system.
/// </summary>
public readonly ImmutableArray<Outputs.LinkResponse> Links;
/// <summary>
/// Long description of the product system.
/// </summary>
public readonly string LongDescription;
/// <summary>
/// Short description of the product system.
/// </summary>
public readonly string ShortDescription;
[OutputConstructor]
private DescriptionResponse(
ImmutableArray<string> attributes,
string descriptionType,
ImmutableArray<string> keywords,
ImmutableArray<Outputs.LinkResponse> links,
string longDescription,
string shortDescription)
{
Attributes = attributes;
DescriptionType = descriptionType;
Keywords = keywords;
Links = links;
LongDescription = longDescription;
ShortDescription = shortDescription;
}
}
}