| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System.Collections.Generic; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.AppConfiguration.Models |
| | 11 | | { |
| | 12 | | /// <summary> The parameters for updating a configuration store. </summary> |
| | 13 | | public partial class ConfigurationStoreUpdateParameters |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of ConfigurationStoreUpdateParameters. </summary> |
| 4 | 16 | | public ConfigurationStoreUpdateParameters() |
| | 17 | | { |
| 4 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of ConfigurationStoreUpdateParameters. </summary> |
| | 21 | | /// <param name="identity"> The managed identity information for the configuration store. </param> |
| | 22 | | /// <param name="sku"> The SKU of the configuration store. </param> |
| | 23 | | /// <param name="tags"> The ARM resource tags. </param> |
| | 24 | | /// <param name="encryption"> The encryption settings of the configuration store. </param> |
| 0 | 25 | | internal ConfigurationStoreUpdateParameters(ResourceIdentity identity, Sku sku, IDictionary<string, string> tags |
| | 26 | | { |
| 0 | 27 | | Identity = identity; |
| 0 | 28 | | Sku = sku; |
| 0 | 29 | | Tags = tags; |
| 0 | 30 | | Encryption = encryption; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> The managed identity information for the configuration store. </summary> |
| 0 | 34 | | public ResourceIdentity Identity { get; set; } |
| | 35 | | /// <summary> The SKU of the configuration store. </summary> |
| 20 | 36 | | public Sku Sku { get; set; } |
| | 37 | | /// <summary> The ARM resource tags. </summary> |
| 20 | 38 | | public IDictionary<string, string> Tags { get; set; } |
| | 39 | | /// <summary> The encryption settings of the configuration store. </summary> |
| 0 | 40 | | public EncryptionProperties Encryption { get; set; } |
| | 41 | | } |
| | 42 | | } |