| | 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> Information regarding paired region. </summary> |
| | 11 | | public partial class PairedRegion |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of PairedRegion. </summary> |
| 0 | 14 | | internal PairedRegion() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of PairedRegion. </summary> |
| | 19 | | /// <param name="name"> The name of the paired region. </param> |
| | 20 | | /// <param name="id"> The fully qualified ID of the location. For example, /subscriptions/00000000-0000-0000-000 |
| | 21 | | /// <param name="subscriptionId"> The subscription ID. </param> |
| 0 | 22 | | internal PairedRegion(string name, string id, string subscriptionId) |
| | 23 | | { |
| 0 | 24 | | Name = name; |
| 0 | 25 | | Id = id; |
| 0 | 26 | | SubscriptionId = subscriptionId; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The name of the paired region. </summary> |
| 0 | 30 | | public string Name { get; } |
| | 31 | | /// <summary> The fully qualified ID of the location. For example, /subscriptions/00000000-0000-0000-0000-000000 |
| 0 | 32 | | public string Id { get; } |
| | 33 | | /// <summary> The subscription ID. </summary> |
| 0 | 34 | | public string SubscriptionId { get; } |
| | 35 | | } |
| | 36 | | } |