All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dts20200101.models.DescribeSynchronizationJobAlertResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dts20200101.models;

import com.aliyun.tea.*;

public class DescribeSynchronizationJobAlertResponseBody extends TeaModel {
    /**
     * 

The mobile phone numbers that receive latency-related alerts.

*/ @NameInMap("DelayAlertPhone") public String delayAlertPhone; /** *

Indicates whether task latency is monitored. Valid values:

*
*

* **enable**: yes

*

* **disable**: no

*/ @NameInMap("DelayAlertStatus") public String delayAlertStatus; /** *

The threshold for triggering latency alerts. Unit: seconds.

*/ @NameInMap("DelayOverSeconds") public String delayOverSeconds; /** *

The error code returned if the call failed.

*/ @NameInMap("ErrCode") public String errCode; /** *

The error message returned if the call failed.

*/ @NameInMap("ErrMessage") public String errMessage; /** *

The mobile phone numbers that receive status-related alerts.

*/ @NameInMap("ErrorAlertPhone") public String errorAlertPhone; /** *

Indicates whether task status is monitored. Valid values:

*
*

* **enable**: yes

*

* **disable**: no

*/ @NameInMap("ErrorAlertStatus") public String errorAlertStatus; /** *

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; /** *

Indicates whether the call was successful.

*/ @NameInMap("Success") public String success; /** *

The synchronization direction. Valid values:

*
*

* **Forward**

*
*

* **Reverse**

*
*

> This parameter is returned only when the topology of data synchronization is two-way synchronization.

*/ @NameInMap("SynchronizationDirection") public String synchronizationDirection; /** *

The ID of the data synchronization instance.

*/ @NameInMap("SynchronizationJobId") public String synchronizationJobId; /** *

The name of the data synchronization task.

*/ @NameInMap("SynchronizationJobName") public String synchronizationJobName; public static DescribeSynchronizationJobAlertResponseBody build(java.util.Map map) throws Exception { DescribeSynchronizationJobAlertResponseBody self = new DescribeSynchronizationJobAlertResponseBody(); return TeaModel.build(map, self); } public DescribeSynchronizationJobAlertResponseBody setDelayAlertPhone(String delayAlertPhone) { this.delayAlertPhone = delayAlertPhone; return this; } public String getDelayAlertPhone() { return this.delayAlertPhone; } public DescribeSynchronizationJobAlertResponseBody setDelayAlertStatus(String delayAlertStatus) { this.delayAlertStatus = delayAlertStatus; return this; } public String getDelayAlertStatus() { return this.delayAlertStatus; } public DescribeSynchronizationJobAlertResponseBody setDelayOverSeconds(String delayOverSeconds) { this.delayOverSeconds = delayOverSeconds; return this; } public String getDelayOverSeconds() { return this.delayOverSeconds; } public DescribeSynchronizationJobAlertResponseBody setErrCode(String errCode) { this.errCode = errCode; return this; } public String getErrCode() { return this.errCode; } public DescribeSynchronizationJobAlertResponseBody setErrMessage(String errMessage) { this.errMessage = errMessage; return this; } public String getErrMessage() { return this.errMessage; } public DescribeSynchronizationJobAlertResponseBody setErrorAlertPhone(String errorAlertPhone) { this.errorAlertPhone = errorAlertPhone; return this; } public String getErrorAlertPhone() { return this.errorAlertPhone; } public DescribeSynchronizationJobAlertResponseBody setErrorAlertStatus(String errorAlertStatus) { this.errorAlertStatus = errorAlertStatus; return this; } public String getErrorAlertStatus() { return this.errorAlertStatus; } public DescribeSynchronizationJobAlertResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeSynchronizationJobAlertResponseBody setSuccess(String success) { this.success = success; return this; } public String getSuccess() { return this.success; } public DescribeSynchronizationJobAlertResponseBody setSynchronizationDirection(String synchronizationDirection) { this.synchronizationDirection = synchronizationDirection; return this; } public String getSynchronizationDirection() { return this.synchronizationDirection; } public DescribeSynchronizationJobAlertResponseBody setSynchronizationJobId(String synchronizationJobId) { this.synchronizationJobId = synchronizationJobId; return this; } public String getSynchronizationJobId() { return this.synchronizationJobId; } public DescribeSynchronizationJobAlertResponseBody setSynchronizationJobName(String synchronizationJobName) { this.synchronizationJobName = synchronizationJobName; return this; } public String getSynchronizationJobName() { return this.synchronizationJobName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy