| | | 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.KeyVault.Models |
| | | 12 | | { |
| | | 13 | | using Newtonsoft.Json; |
| | | 14 | | using System.Collections; |
| | | 15 | | using System.Collections.Generic; |
| | | 16 | | using System.Linq; |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// The storage account item containing storage account metadata. |
| | | 20 | | /// </summary> |
| | | 21 | | public partial class StorageAccountItem |
| | | 22 | | { |
| | | 23 | | /// <summary> |
| | | 24 | | /// Initializes a new instance of the StorageAccountItem class. |
| | | 25 | | /// </summary> |
| | 9 | 26 | | public StorageAccountItem() |
| | | 27 | | { |
| | | 28 | | CustomInit(); |
| | 9 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> |
| | | 32 | | /// Initializes a new instance of the StorageAccountItem class. |
| | | 33 | | /// </summary> |
| | | 34 | | /// <param name="id">Storage identifier.</param> |
| | | 35 | | /// <param name="resourceId">Storage account resource Id.</param> |
| | | 36 | | /// <param name="attributes">The storage account management |
| | | 37 | | /// attributes.</param> |
| | | 38 | | /// <param name="tags">Application specific metadata in the form of |
| | | 39 | | /// key-value pairs.</param> |
| | 0 | 40 | | public StorageAccountItem(string id = default(string), string resourceId = default(string), StorageAccountAttrib |
| | | 41 | | { |
| | 0 | 42 | | Id = id; |
| | 0 | 43 | | ResourceId = resourceId; |
| | 0 | 44 | | Attributes = attributes; |
| | 0 | 45 | | Tags = tags; |
| | | 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 storage identifier. |
| | | 56 | | /// </summary> |
| | | 57 | | [JsonProperty(PropertyName = "id")] |
| | 24 | 58 | | public string Id { get; private set; } |
| | | 59 | | |
| | | 60 | | /// <summary> |
| | | 61 | | /// Gets storage account resource Id. |
| | | 62 | | /// </summary> |
| | | 63 | | [JsonProperty(PropertyName = "resourceId")] |
| | 0 | 64 | | public string ResourceId { get; private set; } |
| | | 65 | | |
| | | 66 | | /// <summary> |
| | | 67 | | /// Gets the storage account management attributes. |
| | | 68 | | /// </summary> |
| | | 69 | | [JsonProperty(PropertyName = "attributes")] |
| | 18 | 70 | | public StorageAccountAttributes Attributes { get; private set; } |
| | | 71 | | |
| | | 72 | | /// <summary> |
| | | 73 | | /// Gets application specific metadata in the form of key-value pairs. |
| | | 74 | | /// </summary> |
| | | 75 | | [JsonProperty(PropertyName = "tags")] |
| | 0 | 76 | | public IDictionary<string, string> Tags { get; private set; } |
| | | 77 | | |
| | | 78 | | } |
| | | 79 | | } |