Condividi tramite


ServiceLevelAgreement Constructors

Definition

Overloads

ServiceLevelAgreement()

Initializes a new instance of the ServiceLevelAgreement class.

ServiceLevelAgreement(Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>)

Initializes a new instance of the ServiceLevelAgreement class.

ServiceLevelAgreement()

Initializes a new instance of the ServiceLevelAgreement class.

public ServiceLevelAgreement ();
Public Sub New ()

Applies to

ServiceLevelAgreement(Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>)

Initializes a new instance of the ServiceLevelAgreement class.

public ServiceLevelAgreement (DateTime? startTime = default, DateTime? expirationTime = default, int? slaMinutes = default);
new Microsoft.Azure.Management.Support.Models.ServiceLevelAgreement : Nullable<DateTime> * Nullable<DateTime> * Nullable<int> -> Microsoft.Azure.Management.Support.Models.ServiceLevelAgreement
Public Sub New (Optional startTime As Nullable(Of DateTime) = Nothing, Optional expirationTime As Nullable(Of DateTime) = Nothing, Optional slaMinutes As Nullable(Of Integer) = Nothing)

Parameters

startTime
Nullable<DateTime>

Time in UTC (ISO 8601 format) when the service level agreement starts.

expirationTime
Nullable<DateTime>

Time in UTC (ISO 8601 format) when the service level agreement expires.

slaMinutes
Nullable<Int32>

Service Level Agreement in minutes.

Applies to