Q: How to avoid r
Gmina Bukowina Tat
New Yorkers Agains
The present invent
Electric power pro
Efficient producti

Effect of dietary
The present invent
All posts by Mika

Q: PHP/MySQL - Ho
Sacred Heart Schoo
/** * Licensed to
WILT is a digital
Phenomenon and cli
What do you think?
When I read about
Category: Internet
Q: In what order
In addition, our p
/* * 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.iot.model.v20180120; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.iot.transform.v20180120.CreateEdgeInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateEdgeInstanceResponse extends AcsResponse { private String requestId; private List edgeInstances; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List getEdgeInstances() { return this.edgeInstances; } public void setEdgeInstances(List edgeInstances) { this.edgeInstances = edgeInstances; } public static class EdgeInstanceData { private String instanceId; private String systemProductCode; private String instanceName; private String instanceType; private Integer systemDiskSize; private Integer cpuCores; private Long memory; private String region; private String description; private Integer price; private String group; private Integer priority; public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getSystemProductCode() { return this.systemProductCode; } public void setSystemProductCode(String systemProductCode) { this.systemProductCode = systemProductCode; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getInstanceType() { return this.instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; } public Integer getSystemDiskSize() { return this.systemDiskSize; } public void setSystemDiskSize(Integer systemDiskSize) { this.systemDiskSize = systemDiskSize; } public Integer getCpuCores() { return this.cpuCores; } public void setCpuCores(Integer cpuCores) { this.cpuCores = cpuCores; } public Long getMemory() { return this.memory; } public void setMemory(Long memory) { this.memory = memory; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Integer getPrice() { return this.price; } public void setPrice(Integer price) { this.price = price; } public String getGroup() { return this.group; } public void setGroup(String group) { this.group = group; } public Integer getPriority() { return this.priority; } public void setPriority(Integer priority) { this.priority = priority; } } @Override public CreateEdgeInstanceResponse getInstance(UnmarshallerContext context) { return CreateEdgeInstanceResponseUnmarshaller.unmarshall(this, context); } }