mirror of https://github.com/pulumi/pulumi.git
74 lines
1.8 KiB
C#
74 lines
1.8 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>
|
|
/// Dimensions of a configuration.
|
|
/// </summary>
|
|
[OutputType]
|
|
public sealed class DimensionsResponse
|
|
{
|
|
/// <summary>
|
|
/// Depth of the device.
|
|
/// </summary>
|
|
public readonly double Depth;
|
|
/// <summary>
|
|
/// Height of the device.
|
|
/// </summary>
|
|
public readonly double Height;
|
|
/// <summary>
|
|
/// Length of the device.
|
|
/// </summary>
|
|
public readonly double Length;
|
|
/// <summary>
|
|
/// Unit for the dimensions of length, height and width.
|
|
/// </summary>
|
|
public readonly string LengthHeightUnit;
|
|
/// <summary>
|
|
/// Weight of the device.
|
|
/// </summary>
|
|
public readonly double Weight;
|
|
/// <summary>
|
|
/// Unit for the dimensions of weight.
|
|
/// </summary>
|
|
public readonly string WeightUnit;
|
|
/// <summary>
|
|
/// Width of the device.
|
|
/// </summary>
|
|
public readonly double Width;
|
|
|
|
[OutputConstructor]
|
|
private DimensionsResponse(
|
|
double depth,
|
|
|
|
double height,
|
|
|
|
double length,
|
|
|
|
string lengthHeightUnit,
|
|
|
|
double weight,
|
|
|
|
string weightUnit,
|
|
|
|
double width)
|
|
{
|
|
Depth = depth;
|
|
Height = height;
|
|
Length = length;
|
|
LengthHeightUnit = lengthHeightUnit;
|
|
Weight = weight;
|
|
WeightUnit = weightUnit;
|
|
Width = width;
|
|
}
|
|
}
|
|
}
|