-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
QuotaCounterContract.cs
77 lines (70 loc) · 3.74 KB
/
QuotaCounterContract.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using Azure.Core;
namespace Azure.ResourceManager.ApiManagement.Models
{
/// <summary> Quota counter details. </summary>
public partial class QuotaCounterContract
{
/// <summary> Initializes a new instance of QuotaCounterContract. </summary>
/// <param name="counterKey"> The Key value of the Counter. Must not be empty. </param>
/// <param name="periodKey"> Identifier of the Period for which the counter was collected. Must not be empty. </param>
/// <param name="periodStartOn">
/// The date of the start of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
///
/// </param>
/// <param name="periodEndOn">
/// The date of the end of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
///
/// </param>
/// <exception cref="ArgumentNullException"> <paramref name="counterKey"/> or <paramref name="periodKey"/> is null. </exception>
internal QuotaCounterContract(string counterKey, string periodKey, DateTimeOffset periodStartOn, DateTimeOffset periodEndOn)
{
Argument.AssertNotNull(counterKey, nameof(counterKey));
Argument.AssertNotNull(periodKey, nameof(periodKey));
CounterKey = counterKey;
PeriodKey = periodKey;
PeriodStartOn = periodStartOn;
PeriodEndOn = periodEndOn;
}
/// <summary> Initializes a new instance of QuotaCounterContract. </summary>
/// <param name="counterKey"> The Key value of the Counter. Must not be empty. </param>
/// <param name="periodKey"> Identifier of the Period for which the counter was collected. Must not be empty. </param>
/// <param name="periodStartOn">
/// The date of the start of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
///
/// </param>
/// <param name="periodEndOn">
/// The date of the end of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
///
/// </param>
/// <param name="value"> Quota Value Properties. </param>
internal QuotaCounterContract(string counterKey, string periodKey, DateTimeOffset periodStartOn, DateTimeOffset periodEndOn, QuotaCounterValueContractProperties value)
{
CounterKey = counterKey;
PeriodKey = periodKey;
PeriodStartOn = periodStartOn;
PeriodEndOn = periodEndOn;
Value = value;
}
/// <summary> The Key value of the Counter. Must not be empty. </summary>
public string CounterKey { get; }
/// <summary> Identifier of the Period for which the counter was collected. Must not be empty. </summary>
public string PeriodKey { get; }
/// <summary>
/// The date of the start of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
///
/// </summary>
public DateTimeOffset PeriodStartOn { get; }
/// <summary>
/// The date of the end of Counter Period. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
///
/// </summary>
public DateTimeOffset PeriodEndOn { get; }
/// <summary> Quota Value Properties. </summary>
public QuotaCounterValueContractProperties Value { get; }
}
}