2 * Copyright 2017 ZTE Corporation.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onap.aai.esr.entity.aai;
18 import java.io.Serializable;
20 import com.google.gson.annotations.SerializedName;
22 public class CloudRegionDetail implements Serializable {
24 public static final long serialVersionUID = 1L;
26 @SerializedName("cloud-owner")
27 private String cloudOwner;
29 @SerializedName("cloud-region-id")
30 private String cloudRegionId;
32 @SerializedName("cloud-type")
33 private String cloudType;
35 @SerializedName("cloud-region-version")
36 private String cloudRegionVersion;
38 @SerializedName("owner-defined-type")
39 private String ownerDefinedType;
41 @SerializedName("cloud-zone")
42 private String cloudZone;
44 @SerializedName("complex-name")
45 private String complexName;
47 @SerializedName("cloud-extra-info")
48 private String cloudExtraInfo;
50 @SerializedName("resource-version")
51 private String resourceVersion;
53 @SerializedName("esr-system-info-list")
54 private EsrSystemInfoList esrSystemInfoList;
56 public String getCloudOwner() {
60 public void setCloudOwner(String cloudOwner) {
61 this.cloudOwner = cloudOwner;
64 public String getCloudRegionId() {
68 public void setCloudRegionId(String cloudRegionId) {
69 this.cloudRegionId = cloudRegionId;
72 public String getCloudType() {
76 public void setCloudType(String cloudType) {
77 this.cloudType = cloudType;
80 public String getCloudRegionVersion() {
81 return cloudRegionVersion;
84 public void setCloudRegionVersion(String cloudRegionVersion) {
85 this.cloudRegionVersion = cloudRegionVersion;
88 public String getOwnerDefinedType() {
89 return ownerDefinedType;
92 public void setOwnerDefinedType(String ownerDefinedType) {
93 this.ownerDefinedType = ownerDefinedType;
96 public String getCloudZone() {
100 public void setCloudZone(String cloudZone) {
101 this.cloudZone = cloudZone;
104 public String getComplexName() {
108 public void setComplexName(String complexName) {
109 this.complexName = complexName;
112 public String getCloudExtraInfo() {
113 return cloudExtraInfo;
116 public void setCloudExtraInfo(String cloudExtraInfo) {
117 this.cloudExtraInfo = cloudExtraInfo;
120 public String getResourceVersion() {
121 return resourceVersion;
124 public void setResourceVersion(String resourceVersion) {
125 this.resourceVersion = resourceVersion;
128 public EsrSystemInfoList getEsrSystemInfoList() {
129 return esrSystemInfoList;
132 public void setEsrSystemInfoList(EsrSystemInfoList esrSystemInfoList) {
133 this.esrSystemInfoList = esrSystemInfoList;