| | 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> Target resource. </summary> |
| | 11 | | public partial class TargetResource |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of TargetResource. </summary> |
| 0 | 14 | | internal TargetResource() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of TargetResource. </summary> |
| | 19 | | /// <param name="id"> The ID of the resource. </param> |
| | 20 | | /// <param name="resourceName"> The name of the resource. </param> |
| | 21 | | /// <param name="resourceType"> The type of the resource. </param> |
| 48 | 22 | | internal TargetResource(string id, string resourceName, string resourceType) |
| | 23 | | { |
| 48 | 24 | | Id = id; |
| 48 | 25 | | ResourceName = resourceName; |
| 48 | 26 | | ResourceType = resourceType; |
| 48 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The ID of the resource. </summary> |
| 8 | 30 | | public string Id { get; } |
| | 31 | | /// <summary> The name of the resource. </summary> |
| 8 | 32 | | public string ResourceName { get; } |
| | 33 | | /// <summary> The type of the resource. </summary> |
| 8 | 34 | | public string ResourceType { get; } |
| | 35 | | } |
| | 36 | | } |