| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.ResourceManager.Resources.Models |
| | 9 | | { |
| | 10 | | /// <summary> Deployment dependency information. </summary> |
| | 11 | | public partial class BasicDependency |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of BasicDependency. </summary> |
| 0 | 14 | | internal BasicDependency() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of BasicDependency. </summary> |
| | 19 | | /// <param name="id"> The ID of the dependency. </param> |
| | 20 | | /// <param name="resourceType"> The dependency resource type. </param> |
| | 21 | | /// <param name="resourceName"> The dependency resource name. </param> |
| 84 | 22 | | internal BasicDependency(string id, string resourceType, string resourceName) |
| | 23 | | { |
| 84 | 24 | | Id = id; |
| 84 | 25 | | ResourceType = resourceType; |
| 84 | 26 | | ResourceName = resourceName; |
| 84 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The ID of the dependency. </summary> |
| 0 | 30 | | public string Id { get; } |
| | 31 | | /// <summary> The dependency resource type. </summary> |
| 0 | 32 | | public string ResourceType { get; } |
| | 33 | | /// <summary> The dependency resource name. </summary> |
| 0 | 34 | | public string ResourceName { get; } |
| | 35 | | } |
| | 36 | | } |