com.tencentcloudapi.cdn.v20180606.models.ScdnAclConfig Maven / Gradle / Ivy
/*
* 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.cdn.v20180606.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 ScdnAclConfig extends AbstractModel {
/**
* Whether to enable SCDN access. Values:
`on`: Enable
`off`: Disable
*/
@SerializedName("Switch")
@Expose
private String Switch;
/**
* This field is disused. Please use `AdvancedScriptData` instead.
Note: this field may return `null`, indicating that no valid values can be obtained.
*/
@SerializedName("ScriptData")
@Expose
private ScdnAclGroup [] ScriptData;
/**
* Error page configuration
Note: this field may return `null`, indicating that no valid values can be obtained.
*/
@SerializedName("ErrorPage")
@Expose
private ScdnErrorPage ErrorPage;
/**
* ACL rule group, which is required when the access control is on.
Note: This field may return `null`, indicating that no valid value can be obtained.
*/
@SerializedName("AdvancedScriptData")
@Expose
private AdvancedScdnAclGroup [] AdvancedScriptData;
/**
* Get Whether to enable SCDN access. Values:
`on`: Enable
`off`: Disable
* @return Switch Whether to enable SCDN access. Values:
`on`: Enable
`off`: Disable
*/
public String getSwitch() {
return this.Switch;
}
/**
* Set Whether to enable SCDN access. Values:
`on`: Enable
`off`: Disable
* @param Switch Whether to enable SCDN access. Values:
`on`: Enable
`off`: Disable
*/
public void setSwitch(String Switch) {
this.Switch = Switch;
}
/**
* Get This field is disused. Please use `AdvancedScriptData` instead.
Note: this field may return `null`, indicating that no valid values can be obtained.
* @return ScriptData This field is disused. Please use `AdvancedScriptData` instead.
Note: this field may return `null`, indicating that no valid values can be obtained.
*/
public ScdnAclGroup [] getScriptData() {
return this.ScriptData;
}
/**
* Set This field is disused. Please use `AdvancedScriptData` instead.
Note: this field may return `null`, indicating that no valid values can be obtained.
* @param ScriptData This field is disused. Please use `AdvancedScriptData` instead.
Note: this field may return `null`, indicating that no valid values can be obtained.
*/
public void setScriptData(ScdnAclGroup [] ScriptData) {
this.ScriptData = ScriptData;
}
/**
* Get Error page configuration
Note: this field may return `null`, indicating that no valid values can be obtained.
* @return ErrorPage Error page configuration
Note: this field may return `null`, indicating that no valid values can be obtained.
*/
public ScdnErrorPage getErrorPage() {
return this.ErrorPage;
}
/**
* Set Error page configuration
Note: this field may return `null`, indicating that no valid values can be obtained.
* @param ErrorPage Error page configuration
Note: this field may return `null`, indicating that no valid values can be obtained.
*/
public void setErrorPage(ScdnErrorPage ErrorPage) {
this.ErrorPage = ErrorPage;
}
/**
* Get ACL rule group, which is required when the access control is on.
Note: This field may return `null`, indicating that no valid value can be obtained.
* @return AdvancedScriptData ACL rule group, which is required when the access control is on.
Note: This field may return `null`, indicating that no valid value can be obtained.
*/
public AdvancedScdnAclGroup [] getAdvancedScriptData() {
return this.AdvancedScriptData;
}
/**
* Set ACL rule group, which is required when the access control is on.
Note: This field may return `null`, indicating that no valid value can be obtained.
* @param AdvancedScriptData ACL rule group, which is required when the access control is on.
Note: This field may return `null`, indicating that no valid value can be obtained.
*/
public void setAdvancedScriptData(AdvancedScdnAclGroup [] AdvancedScriptData) {
this.AdvancedScriptData = AdvancedScriptData;
}
public ScdnAclConfig() {
}
/**
* 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 ScdnAclConfig(ScdnAclConfig source) {
if (source.Switch != null) {
this.Switch = new String(source.Switch);
}
if (source.ScriptData != null) {
this.ScriptData = new ScdnAclGroup[source.ScriptData.length];
for (int i = 0; i < source.ScriptData.length; i++) {
this.ScriptData[i] = new ScdnAclGroup(source.ScriptData[i]);
}
}
if (source.ErrorPage != null) {
this.ErrorPage = new ScdnErrorPage(source.ErrorPage);
}
if (source.AdvancedScriptData != null) {
this.AdvancedScriptData = new AdvancedScdnAclGroup[source.AdvancedScriptData.length];
for (int i = 0; i < source.AdvancedScriptData.length; i++) {
this.AdvancedScriptData[i] = new AdvancedScdnAclGroup(source.AdvancedScriptData[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Switch", this.Switch);
this.setParamArrayObj(map, prefix + "ScriptData.", this.ScriptData);
this.setParamObj(map, prefix + "ErrorPage.", this.ErrorPage);
this.setParamArrayObj(map, prefix + "AdvancedScriptData.", this.AdvancedScriptData);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy