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

com.aliyuncs.sae.model.v20190506.DescribeWebCustomDomainResponse Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

The newest version!
/*
 * 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.aliyuncs.sae.model.v20190506;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.sae.transform.v20190506.DescribeWebCustomDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class DescribeWebCustomDomainResponse extends AcsResponse {

	private String accountId;

	private String createdTime;

	private String defaultForwardingAppName;

	private String domainName;

	private String lastModifiedTime;

	private String namespaceId;

	private String protocol;

	private WebCertConfig webCertConfig;

	private WebTLSConfig webTLSConfig;

	private WebWAFConfig webWAFConfig;

	private RouteConfig routeConfig;

	public String getAccountId() {
		return this.accountId;
	}

	public void setAccountId(String accountId) {
		this.accountId = accountId;
	}

	public String getCreatedTime() {
		return this.createdTime;
	}

	public void setCreatedTime(String createdTime) {
		this.createdTime = createdTime;
	}

	public String getDefaultForwardingAppName() {
		return this.defaultForwardingAppName;
	}

	public void setDefaultForwardingAppName(String defaultForwardingAppName) {
		this.defaultForwardingAppName = defaultForwardingAppName;
	}

	public String getDomainName() {
		return this.domainName;
	}

	public void setDomainName(String domainName) {
		this.domainName = domainName;
	}

	public String getLastModifiedTime() {
		return this.lastModifiedTime;
	}

	public void setLastModifiedTime(String lastModifiedTime) {
		this.lastModifiedTime = lastModifiedTime;
	}

	public String getNamespaceId() {
		return this.namespaceId;
	}

	public void setNamespaceId(String namespaceId) {
		this.namespaceId = namespaceId;
	}

	public String getBizProtocol() {
		return this.protocol;
	}

	public void setBizProtocol(String protocol) {
		this.protocol = protocol;
	}

	public WebCertConfig getWebCertConfig() {
		return this.webCertConfig;
	}

	public void setWebCertConfig(WebCertConfig webCertConfig) {
		this.webCertConfig = webCertConfig;
	}

	public WebTLSConfig getWebTLSConfig() {
		return this.webTLSConfig;
	}

	public void setWebTLSConfig(WebTLSConfig webTLSConfig) {
		this.webTLSConfig = webTLSConfig;
	}

	public WebWAFConfig getWebWAFConfig() {
		return this.webWAFConfig;
	}

	public void setWebWAFConfig(WebWAFConfig webWAFConfig) {
		this.webWAFConfig = webWAFConfig;
	}

	public RouteConfig getRouteConfig() {
		return this.routeConfig;
	}

	public void setRouteConfig(RouteConfig routeConfig) {
		this.routeConfig = routeConfig;
	}

	public static class WebCertConfig {

		private String certName;

		private String certificate;

		private String privateKey;

		public String getCertName() {
			return this.certName;
		}

		public void setCertName(String certName) {
			this.certName = certName;
		}

		public String getCertificate() {
			return this.certificate;
		}

		public void setCertificate(String certificate) {
			this.certificate = certificate;
		}

		public String getPrivateKey() {
			return this.privateKey;
		}

		public void setPrivateKey(String privateKey) {
			this.privateKey = privateKey;
		}
	}

	public static class WebTLSConfig {

		private String maxVersion;

		private String minVersion;

		private List cipherSuites;

		public String getMaxVersion() {
			return this.maxVersion;
		}

		public void setMaxVersion(String maxVersion) {
			this.maxVersion = maxVersion;
		}

		public String getMinVersion() {
			return this.minVersion;
		}

		public void setMinVersion(String minVersion) {
			this.minVersion = minVersion;
		}

		public List getCipherSuites() {
			return this.cipherSuites;
		}

		public void setCipherSuites(List cipherSuites) {
			this.cipherSuites = cipherSuites;
		}
	}

	public static class WebWAFConfig {

		private Boolean enableWAF;

		public Boolean getEnableWAF() {
			return this.enableWAF;
		}

		public void setEnableWAF(Boolean enableWAF) {
			this.enableWAF = enableWAF;
		}
	}

	public static class RouteConfig {

		private List routes;

		public List getRoutes() {
			return this.routes;
		}

		public void setRoutes(List routes) {
			this.routes = routes;
		}

		public static class RoutesItem {

			private String path;

			private String applicationName;

			public String getPath() {
				return this.path;
			}

			public void setPath(String path) {
				this.path = path;
			}

			public String getApplicationName() {
				return this.applicationName;
			}

			public void setApplicationName(String applicationName) {
				this.applicationName = applicationName;
			}
		}
	}

	@Override
	public DescribeWebCustomDomainResponse getInstance(UnmarshallerContext context) {
		return	DescribeWebCustomDomainResponseUnmarshaller.unmarshall(this, context);
	}

	@Override
	public boolean checkShowJsonItemName() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy