QuotaCounterContract Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
QuotaCounterContract() |
Initializes a new instance of the QuotaCounterContract class. |
QuotaCounterContract(String, String, DateTime, DateTime, QuotaCounterValueContractProperties) |
Initializes a new instance of the QuotaCounterContract class. |
QuotaCounterContract()
Initializes a new instance of the QuotaCounterContract class.
public QuotaCounterContract ();
Public Sub New ()
Applies to
QuotaCounterContract(String, String, DateTime, DateTime, QuotaCounterValueContractProperties)
Initializes a new instance of the QuotaCounterContract class.
public QuotaCounterContract (string counterKey, string periodKey, DateTime periodStartTime, DateTime periodEndTime, Microsoft.Azure.Management.ApiManagement.Models.QuotaCounterValueContractProperties value = default);
new Microsoft.Azure.Management.ApiManagement.Models.QuotaCounterContract : string * string * DateTime * DateTime * Microsoft.Azure.Management.ApiManagement.Models.QuotaCounterValueContractProperties -> Microsoft.Azure.Management.ApiManagement.Models.QuotaCounterContract
Public Sub New (counterKey As String, periodKey As String, periodStartTime As DateTime, periodEndTime As DateTime, Optional value As QuotaCounterValueContractProperties = Nothing)
Parameters
- counterKey
- String
The Key value of the Counter. Must not be empty.
- periodKey
- String
Identifier of the Period for which the counter was collected. Must not be empty.
- periodStartTime
- DateTime
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.
- periodEndTime
- DateTime
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.
Quota Value Properties
Applies to
Azure SDK for .NET