-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
RedisEnterprisePrivateLinkServiceConnectionState.cs
36 lines (31 loc) · 1.94 KB
/
RedisEnterprisePrivateLinkServiceConnectionState.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.RedisEnterprise.Models
{
/// <summary> A collection of information about the state of the connection between service consumer and provider. </summary>
public partial class RedisEnterprisePrivateLinkServiceConnectionState
{
/// <summary> Initializes a new instance of <see cref="RedisEnterprisePrivateLinkServiceConnectionState"/>. </summary>
public RedisEnterprisePrivateLinkServiceConnectionState()
{
}
/// <summary> Initializes a new instance of <see cref="RedisEnterprisePrivateLinkServiceConnectionState"/>. </summary>
/// <param name="status"> Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service. </param>
/// <param name="description"> The reason for approval/rejection of the connection. </param>
/// <param name="actionsRequired"> A message indicating if changes on the service provider require any updates on the consumer. </param>
internal RedisEnterprisePrivateLinkServiceConnectionState(RedisEnterprisePrivateEndpointServiceConnectionStatus? status, string description, string actionsRequired)
{
Status = status;
Description = description;
ActionsRequired = actionsRequired;
}
/// <summary> Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service. </summary>
public RedisEnterprisePrivateEndpointServiceConnectionStatus? Status { get; set; }
/// <summary> The reason for approval/rejection of the connection. </summary>
public string Description { get; set; }
/// <summary> A message indicating if changes on the service provider require any updates on the consumer. </summary>
public string ActionsRequired { get; set; }
}
}