Realize the function of VIM API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / CloudRegion.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package org.onap.aai.esr.entity.aai;
17
18 import java.io.Serializable;
19
20 import com.fasterxml.jackson.annotation.JsonProperty;
21 import com.google.gson.annotations.SerializedName;
22
23 public class CloudRegion implements Serializable {
24   
25   public static final long serialVersionUID = 1L;
26
27   @SerializedName("cloud-owner")
28   private String cloudOwner;
29   
30   @SerializedName("cloud-region-id")
31   private String cloudRegionId;
32   
33   @SerializedName("cloud-type")
34   private String cloudType;
35   
36   @SerializedName("cloud-region-version")
37   private String cloudRegionVersion;
38   
39   @SerializedName("owner-defined-type")
40   private String ownerDefinedType;
41   
42   @SerializedName("cloud-zone")
43   private String cloudZone;
44   
45   @SerializedName("complex-name")
46   private String complexName;
47   
48   @SerializedName("cloud-extra-info")
49   private String cloudExtraInfo;
50   
51   @SerializedName("resouce-version")
52   private String resouceVersion;
53   
54   @SerializedName("esr-system-info-list")
55   private EsrSystemInfoList esrSystemInfoList;
56
57   public String getCloudOwner() {
58     return cloudOwner;
59   }
60
61   public void setCloudOwner(String cloudOwner) {
62     this.cloudOwner = cloudOwner;
63   }
64
65   public String getCloudRegionId() {
66     return cloudRegionId;
67   }
68
69   public void setCloudRegionId(String cloudRegionId) {
70     this.cloudRegionId = cloudRegionId;
71   }
72
73   public String getCloudType() {
74     return cloudType;
75   }
76
77   public void setCloudType(String cloudType) {
78     this.cloudType = cloudType;
79   }
80
81   public String getCloudRegionVersion() {
82     return cloudRegionVersion;
83   }
84
85   public void setCloudRegionVersion(String cloudRegionVersion) {
86     this.cloudRegionVersion = cloudRegionVersion;
87   }
88
89   public String getOwnerDefinedType() {
90     return ownerDefinedType;
91   }
92
93   public void setOwnerDefinedType(String ownerDefinedType) {
94     this.ownerDefinedType = ownerDefinedType;
95   }
96
97   public String getCloudZone() {
98     return cloudZone;
99   }
100
101   public void setCloudZone(String cloudZone) {
102     this.cloudZone = cloudZone;
103   }
104
105   public String getComplexName() {
106     return complexName;
107   }
108
109   public void setComplexName(String complexName) {
110     this.complexName = complexName;
111   }
112
113   public String getCloudExtraInfo() {
114     return cloudExtraInfo;
115   }
116
117   public void setCloudExtraInfo(String cloudExtraInfo) {
118     this.cloudExtraInfo = cloudExtraInfo;
119   }
120
121   public String getResouceVersion() {
122     return resouceVersion;
123   }
124
125   public void setResouceVersion(String resouceVersion) {
126     this.resouceVersion = resouceVersion;
127   }
128
129   public EsrSystemInfoList getEsrSystemInfoList() {
130     return esrSystemInfoList;
131   }
132
133   public void setEsrSystemInfoList(EsrSystemInfoList esrSystemInfoList) {
134     this.esrSystemInfoList = esrSystemInfoList;
135   }
136
137 }