-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathDevCenterImageReference.cs
34 lines (28 loc) · 1.41 KB
/
DevCenterImageReference.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure.Core;
namespace Azure.ResourceManager.DevCenter.Models
{
/// <summary> Image reference information. </summary>
public partial class DevCenterImageReference
{
/// <summary> Initializes a new instance of DevCenterImageReference. </summary>
public DevCenterImageReference()
{
}
/// <summary> Initializes a new instance of DevCenterImageReference. </summary>
/// <param name="id"> Image ID, or Image version ID. When Image ID is provided, its latest version will be used. </param>
/// <param name="exactVersion"> The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use. </param>
internal DevCenterImageReference(ResourceIdentifier id, string exactVersion)
{
Id = id;
ExactVersion = exactVersion;
}
/// <summary> Image ID, or Image version ID. When Image ID is provided, its latest version will be used. </summary>
public ResourceIdentifier Id { get; set; }
/// <summary> The actual version of the image after use. When id references a gallery image latest version, this will indicate the actual version in use. </summary>
public string ExactVersion { get; }
}
}