![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.vod.v20180717.models.ModifyVodDomainAccelerateConfigRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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 ModifyVodDomainAccelerateConfigRequest extends AbstractModel {
/**
* Domain name for acceleration setting
*/
@SerializedName("Domain")
@Expose
private String Domain;
/**
* Region. Valid values:
`Chinese Mainland`
`Outside Chinese Mainland`
`Global`
*/
@SerializedName("Area")
@Expose
private String Area;
/**
* Whether to enable or disable domain name acceleration for the selected region. Valid values:
`Enabled`: enable
`Disabled`: disable
*/
@SerializedName("Status")
@Expose
private String Status;
/**
* The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.
*/
@SerializedName("SubAppId")
@Expose
private Long SubAppId;
/**
* Get Domain name for acceleration setting
* @return Domain Domain name for acceleration setting
*/
public String getDomain() {
return this.Domain;
}
/**
* Set Domain name for acceleration setting
* @param Domain Domain name for acceleration setting
*/
public void setDomain(String Domain) {
this.Domain = Domain;
}
/**
* Get Region. Valid values:
`Chinese Mainland`
`Outside Chinese Mainland`
`Global`
* @return Area Region. Valid values:
`Chinese Mainland`
`Outside Chinese Mainland`
`Global`
*/
public String getArea() {
return this.Area;
}
/**
* Set Region. Valid values:
`Chinese Mainland`
`Outside Chinese Mainland`
`Global`
* @param Area Region. Valid values:
`Chinese Mainland`
`Outside Chinese Mainland`
`Global`
*/
public void setArea(String Area) {
this.Area = Area;
}
/**
* Get Whether to enable or disable domain name acceleration for the selected region. Valid values:
`Enabled`: enable
`Disabled`: disable
* @return Status Whether to enable or disable domain name acceleration for the selected region. Valid values:
`Enabled`: enable
`Disabled`: disable
*/
public String getStatus() {
return this.Status;
}
/**
* Set Whether to enable or disable domain name acceleration for the selected region. Valid values:
`Enabled`: enable
`Disabled`: disable
* @param Status Whether to enable or disable domain name acceleration for the selected region. Valid values:
`Enabled`: enable
`Disabled`: disable
*/
public void setStatus(String Status) {
this.Status = Status;
}
/**
* Get The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.
* @return SubAppId The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.
*/
public Long getSubAppId() {
return this.SubAppId;
}
/**
* Set The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.
* @param SubAppId The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.
*/
public void setSubAppId(Long SubAppId) {
this.SubAppId = SubAppId;
}
public ModifyVodDomainAccelerateConfigRequest() {
}
/**
* 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 ModifyVodDomainAccelerateConfigRequest(ModifyVodDomainAccelerateConfigRequest source) {
if (source.Domain != null) {
this.Domain = new String(source.Domain);
}
if (source.Area != null) {
this.Area = new String(source.Area);
}
if (source.Status != null) {
this.Status = new String(source.Status);
}
if (source.SubAppId != null) {
this.SubAppId = new Long(source.SubAppId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Domain", this.Domain);
this.setParamSimple(map, prefix + "Area", this.Area);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamSimple(map, prefix + "SubAppId", this.SubAppId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy