| | | 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.Network.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Response for the CheckPrivateLinkServiceVisibility API service call. </summary> |
| | | 11 | | public partial class PrivateLinkServiceVisibility |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of PrivateLinkServiceVisibility. </summary> |
| | 0 | 14 | | internal PrivateLinkServiceVisibility() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of PrivateLinkServiceVisibility. </summary> |
| | | 19 | | /// <param name="visible"> Private Link Service Visibility (True/False). </param> |
| | 4 | 20 | | internal PrivateLinkServiceVisibility(bool? visible) |
| | | 21 | | { |
| | 4 | 22 | | Visible = visible; |
| | 4 | 23 | | } |
| | | 24 | | |
| | | 25 | | /// <summary> Private Link Service Visibility (True/False). </summary> |
| | 4 | 26 | | public bool? Visible { get; } |
| | | 27 | | } |
| | | 28 | | } |