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

com.tencentcloudapi.vod.v20180717.models.DescribeEventConfigResponse Maven / Gradle / Ivy

There is a newer version: 3.0.1076
Show newest version
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.vod.v20180717.models;

import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class DescribeEventConfigResponse extends AbstractModel {

    /**
    * How to receive event notifications. 
  • PUSH: [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948);
  • PULL: [Reliable notification based on message queue ](https://www.tencentcloud.com/document/product/266/33948).
  • */ @SerializedName("Mode") @Expose private String Mode; /** * The address used to receive 3.0 format callbacks when using the [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948) reception method. */ @SerializedName("NotificationUrl") @Expose private String NotificationUrl; /** * Whether to receive the [Video Upload Completed](https://www.tencentcloud.com/document/product/266/33950) event notification. "OFF" is to ignore the event notification, and "ON" is to receive the event notification. */ @SerializedName("UploadMediaCompleteEventSwitch") @Expose private String UploadMediaCompleteEventSwitch; /** * Whether to receive [Video deletion completed](https://www.tencentcloud.com/document/product/266/33952) event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification . */ @SerializedName("DeleteMediaCompleteEventSwitch") @Expose private String DeleteMediaCompleteEventSwitch; /** * Whether to receive the Persistence completed event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification. */ @SerializedName("PersistenceCompleteEventSwitch") @Expose private String PersistenceCompleteEventSwitch; /** * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. */ @SerializedName("RequestId") @Expose private String RequestId; /** * Get How to receive event notifications.
  • PUSH: [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948);
  • PULL: [Reliable notification based on message queue ](https://www.tencentcloud.com/document/product/266/33948).
  • * @return Mode How to receive event notifications.
  • PUSH: [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948);
  • PULL: [Reliable notification based on message queue ](https://www.tencentcloud.com/document/product/266/33948).
  • */ public String getMode() { return this.Mode; } /** * Set How to receive event notifications.
  • PUSH: [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948);
  • PULL: [Reliable notification based on message queue ](https://www.tencentcloud.com/document/product/266/33948).
  • * @param Mode How to receive event notifications.
  • PUSH: [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948);
  • PULL: [Reliable notification based on message queue ](https://www.tencentcloud.com/document/product/266/33948).
  • */ public void setMode(String Mode) { this.Mode = Mode; } /** * Get The address used to receive 3.0 format callbacks when using the [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948) reception method. * @return NotificationUrl The address used to receive 3.0 format callbacks when using the [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948) reception method. */ public String getNotificationUrl() { return this.NotificationUrl; } /** * Set The address used to receive 3.0 format callbacks when using the [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948) reception method. * @param NotificationUrl The address used to receive 3.0 format callbacks when using the [HTTP callback notification](https://www.tencentcloud.com/document/product/266/33948) reception method. */ public void setNotificationUrl(String NotificationUrl) { this.NotificationUrl = NotificationUrl; } /** * Get Whether to receive the [Video Upload Completed](https://www.tencentcloud.com/document/product/266/33950) event notification. "OFF" is to ignore the event notification, and "ON" is to receive the event notification. * @return UploadMediaCompleteEventSwitch Whether to receive the [Video Upload Completed](https://www.tencentcloud.com/document/product/266/33950) event notification. "OFF" is to ignore the event notification, and "ON" is to receive the event notification. */ public String getUploadMediaCompleteEventSwitch() { return this.UploadMediaCompleteEventSwitch; } /** * Set Whether to receive the [Video Upload Completed](https://www.tencentcloud.com/document/product/266/33950) event notification. "OFF" is to ignore the event notification, and "ON" is to receive the event notification. * @param UploadMediaCompleteEventSwitch Whether to receive the [Video Upload Completed](https://www.tencentcloud.com/document/product/266/33950) event notification. "OFF" is to ignore the event notification, and "ON" is to receive the event notification. */ public void setUploadMediaCompleteEventSwitch(String UploadMediaCompleteEventSwitch) { this.UploadMediaCompleteEventSwitch = UploadMediaCompleteEventSwitch; } /** * Get Whether to receive [Video deletion completed](https://www.tencentcloud.com/document/product/266/33952) event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification . * @return DeleteMediaCompleteEventSwitch Whether to receive [Video deletion completed](https://www.tencentcloud.com/document/product/266/33952) event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification . */ public String getDeleteMediaCompleteEventSwitch() { return this.DeleteMediaCompleteEventSwitch; } /** * Set Whether to receive [Video deletion completed](https://www.tencentcloud.com/document/product/266/33952) event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification . * @param DeleteMediaCompleteEventSwitch Whether to receive [Video deletion completed](https://www.tencentcloud.com/document/product/266/33952) event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification . */ public void setDeleteMediaCompleteEventSwitch(String DeleteMediaCompleteEventSwitch) { this.DeleteMediaCompleteEventSwitch = DeleteMediaCompleteEventSwitch; } /** * Get Whether to receive the Persistence completed event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification. * @return PersistenceCompleteEventSwitch Whether to receive the Persistence completed event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification. */ public String getPersistenceCompleteEventSwitch() { return this.PersistenceCompleteEventSwitch; } /** * Set Whether to receive the Persistence completed event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification. * @param PersistenceCompleteEventSwitch Whether to receive the Persistence completed event notification, "OFF" means to ignore the event notification, "ON" means to receive the event notification. */ public void setPersistenceCompleteEventSwitch(String PersistenceCompleteEventSwitch) { this.PersistenceCompleteEventSwitch = PersistenceCompleteEventSwitch; } /** * Get The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. * @return RequestId The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. */ public String getRequestId() { return this.RequestId; } /** * Set The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. * @param RequestId The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. */ public void setRequestId(String RequestId) { this.RequestId = RequestId; } public DescribeEventConfigResponse() { } /** * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy, * and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy. */ public DescribeEventConfigResponse(DescribeEventConfigResponse source) { if (source.Mode != null) { this.Mode = new String(source.Mode); } if (source.NotificationUrl != null) { this.NotificationUrl = new String(source.NotificationUrl); } if (source.UploadMediaCompleteEventSwitch != null) { this.UploadMediaCompleteEventSwitch = new String(source.UploadMediaCompleteEventSwitch); } if (source.DeleteMediaCompleteEventSwitch != null) { this.DeleteMediaCompleteEventSwitch = new String(source.DeleteMediaCompleteEventSwitch); } if (source.PersistenceCompleteEventSwitch != null) { this.PersistenceCompleteEventSwitch = new String(source.PersistenceCompleteEventSwitch); } if (source.RequestId != null) { this.RequestId = new String(source.RequestId); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "Mode", this.Mode); this.setParamSimple(map, prefix + "NotificationUrl", this.NotificationUrl); this.setParamSimple(map, prefix + "UploadMediaCompleteEventSwitch", this.UploadMediaCompleteEventSwitch); this.setParamSimple(map, prefix + "DeleteMediaCompleteEventSwitch", this.DeleteMediaCompleteEventSwitch); this.setParamSimple(map, prefix + "PersistenceCompleteEventSwitch", this.PersistenceCompleteEventSwitch); this.setParamSimple(map, prefix + "RequestId", this.RequestId); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy