| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | 11 | | { |
| | 12 | | /// <summary> Describes the properties of a run command parameter. </summary> |
| | 13 | | public partial class RunCommandInputParameter |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of RunCommandInputParameter. </summary> |
| | 16 | | /// <param name="name"> The run command parameter name. </param> |
| | 17 | | /// <param name="value"> The run command parameter value. </param> |
| 0 | 18 | | public RunCommandInputParameter(string name, string value) |
| | 19 | | { |
| 0 | 20 | | if (name == null) |
| | 21 | | { |
| 0 | 22 | | throw new ArgumentNullException(nameof(name)); |
| | 23 | | } |
| 0 | 24 | | if (value == null) |
| | 25 | | { |
| 0 | 26 | | throw new ArgumentNullException(nameof(value)); |
| | 27 | | } |
| | 28 | |
|
| 0 | 29 | | Name = name; |
| 0 | 30 | | Value = value; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> The run command parameter name. </summary> |
| 0 | 34 | | public string Name { get; } |
| | 35 | | /// <summary> The run command parameter value. </summary> |
| 0 | 36 | | public string Value { get; } |
| | 37 | | } |
| | 38 | | } |