| | 1 | | // <auto-generated> |
| | 2 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 3 | | // Licensed under the MIT License. See License.txt in the project root for |
| | 4 | | // license information. |
| | 5 | | // |
| | 6 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | 7 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | 8 | | // regenerated. |
| | 9 | | // </auto-generated> |
| | 10 | |
|
| | 11 | | namespace Microsoft.Azure.ContainerRegistry.Models |
| | 12 | | { |
| | 13 | | using Newtonsoft.Json; |
| | 14 | | using System.Linq; |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Tag attribute details |
| | 18 | | /// </summary> |
| | 19 | | public partial class TagAttributesBase |
| | 20 | | { |
| | 21 | | /// <summary> |
| | 22 | | /// Initializes a new instance of the TagAttributesBase class. |
| | 23 | | /// </summary> |
| 270 | 24 | | public TagAttributesBase() |
| | 25 | | { |
| | 26 | | CustomInit(); |
| 270 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Initializes a new instance of the TagAttributesBase class. |
| | 31 | | /// </summary> |
| | 32 | | /// <param name="name">Tag name</param> |
| | 33 | | /// <param name="digest">Tag digest</param> |
| | 34 | | /// <param name="createdTime">Tag created time</param> |
| | 35 | | /// <param name="lastUpdateTime">Tag last update time</param> |
| | 36 | | /// <param name="signed">Is signed</param> |
| | 37 | | /// <param name="changeableAttributes">Changeable attributes</param> |
| 0 | 38 | | public TagAttributesBase(string name = default(string), string digest = default(string), string createdTime = de |
| | 39 | | { |
| 0 | 40 | | Name = name; |
| 0 | 41 | | Digest = digest; |
| 0 | 42 | | CreatedTime = createdTime; |
| 0 | 43 | | LastUpdateTime = lastUpdateTime; |
| 0 | 44 | | Signed = signed; |
| 0 | 45 | | ChangeableAttributes = changeableAttributes; |
| | 46 | | CustomInit(); |
| 0 | 47 | | } |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// An initialization method that performs custom operations like setting defaults |
| | 51 | | /// </summary> |
| | 52 | | partial void CustomInit(); |
| | 53 | |
|
| | 54 | | /// <summary> |
| | 55 | | /// Gets or sets tag name |
| | 56 | | /// </summary> |
| | 57 | | [JsonProperty(PropertyName = "name")] |
| 286 | 58 | | public string Name { get; set; } |
| | 59 | |
|
| | 60 | | /// <summary> |
| | 61 | | /// Gets or sets tag digest |
| | 62 | | /// </summary> |
| | 63 | | [JsonProperty(PropertyName = "digest")] |
| 284 | 64 | | public string Digest { get; set; } |
| | 65 | |
|
| | 66 | | /// <summary> |
| | 67 | | /// Gets or sets tag created time |
| | 68 | | /// </summary> |
| | 69 | | [JsonProperty(PropertyName = "createdTime")] |
| 282 | 70 | | public string CreatedTime { get; set; } |
| | 71 | |
|
| | 72 | | /// <summary> |
| | 73 | | /// Gets or sets tag last update time |
| | 74 | | /// </summary> |
| | 75 | | [JsonProperty(PropertyName = "lastUpdateTime")] |
| 282 | 76 | | public string LastUpdateTime { get; set; } |
| | 77 | |
|
| | 78 | | /// <summary> |
| | 79 | | /// Gets or sets is signed |
| | 80 | | /// </summary> |
| | 81 | | [JsonProperty(PropertyName = "signed")] |
| 282 | 82 | | public bool? Signed { get; set; } |
| | 83 | |
|
| | 84 | | /// <summary> |
| | 85 | | /// Gets or sets changeable attributes |
| | 86 | | /// </summary> |
| | 87 | | [JsonProperty(PropertyName = "changeableAttributes")] |
| 588 | 88 | | public ChangeableAttributes ChangeableAttributes { get; set; } |
| | 89 | |
|
| | 90 | | } |
| | 91 | | } |