index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class CreateDesktopRequest extends RpcAcsRequest<CreateDesktopResponse> { public CreateDesktopRequest() { super("CloudDesktop", "2017-03-01", "CreateDesktop", "CloudDesktop"); } private String imageType; private Integer period; private String imageId; private String clientToken; private Long ownerId; private String cycle; private String vSwitchId; private String userDiskSize; private String vpcId; private String userGroup; private String zoneId; private String userDiskType; private String chargeType; private String typeItemId; private String userName; public String getImageType() { return this.imageType; } public void setImageType(String imageType) { this.imageType = imageType; if(imageType != null){ putQueryParameter("ImageType", imageType); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public String getImageId() { return this.imageId; } public void setImageId(String imageId) { this.imageId = imageId; if(imageId != null){ putQueryParameter("ImageId", imageId); } } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getCycle() { return this.cycle; } public void setCycle(String cycle) { this.cycle = cycle; if(cycle != null){ putQueryParameter("Cycle", cycle); } } public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; if(vSwitchId != null){ putQueryParameter("VSwitchId", vSwitchId); } } public String getUserDiskSize() { return this.userDiskSize; } public void setUserDiskSize(String userDiskSize) { this.userDiskSize = userDiskSize; if(userDiskSize != null){ putQueryParameter("UserDiskSize", userDiskSize); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } public String getUserGroup() { return this.userGroup; } public void setUserGroup(String userGroup) { this.userGroup = userGroup; if(userGroup != null){ putQueryParameter("UserGroup", userGroup); } } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; if(zoneId != null){ putQueryParameter("ZoneId", zoneId); } } public String getUserDiskType() { return this.userDiskType; } public void setUserDiskType(String userDiskType) { this.userDiskType = userDiskType; if(userDiskType != null){ putQueryParameter("UserDiskType", userDiskType); } } public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; if(chargeType != null){ putQueryParameter("ChargeType", chargeType); } } public String getTypeItemId() { return this.typeItemId; } public void setTypeItemId(String typeItemId) { this.typeItemId = typeItemId; if(typeItemId != null){ putQueryParameter("TypeItemId", typeItemId); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<CreateDesktopResponse> getResponseClass() { return CreateDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.CreateDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Long orderId; private String desktopId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Long getOrderId() { return this.orderId; } public void setOrderId(Long orderId) { this.orderId = orderId; } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; } @Override public CreateDesktopResponse getInstance(UnmarshallerContext context) { return CreateDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateImageRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class CreateImageRequest extends RpcAcsRequest<CreateImageResponse> { public CreateImageRequest() { super("CloudDesktop", "2017-03-01", "CreateImage", "CloudDesktop"); } private String snapshotId; private String imageName; private String imageDescription; public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; if(snapshotId != null){ putQueryParameter("SnapshotId", snapshotId); } } public String getImageName() { return this.imageName; } public void setImageName(String imageName) { this.imageName = imageName; if(imageName != null){ putQueryParameter("ImageName", imageName); } } public String getImageDescription() { return this.imageDescription; } public void setImageDescription(String imageDescription) { this.imageDescription = imageDescription; if(imageDescription != null){ putQueryParameter("ImageDescription", imageDescription); } } @Override public Class<CreateImageResponse> getResponseClass() { return CreateImageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateImageResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.CreateImageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateImageResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public CreateImageResponse getInstance(UnmarshallerContext context) { return CreateImageResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateSnapshotRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class CreateSnapshotRequest extends RpcAcsRequest<CreateSnapshotResponse> { public CreateSnapshotRequest() { super("CloudDesktop", "2017-03-01", "CreateSnapshot", "CloudDesktop"); } private String targetDisk; private String snapshotName; private String desktopId; private String snapshotDescription; public String getTargetDisk() { return this.targetDisk; } public void setTargetDisk(String targetDisk) { this.targetDisk = targetDisk; if(targetDisk != null){ putQueryParameter("TargetDisk", targetDisk); } } public String getSnapshotName() { return this.snapshotName; } public void setSnapshotName(String snapshotName) { this.snapshotName = snapshotName; if(snapshotName != null){ putQueryParameter("SnapshotName", snapshotName); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public String getSnapshotDescription() { return this.snapshotDescription; } public void setSnapshotDescription(String snapshotDescription) { this.snapshotDescription = snapshotDescription; if(snapshotDescription != null){ putQueryParameter("SnapshotDescription", snapshotDescription); } } @Override public Class<CreateSnapshotResponse> getResponseClass() { return CreateSnapshotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateSnapshotResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.CreateSnapshotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSnapshotResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private String snapshotId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } @Override public CreateSnapshotResponse getInstance(UnmarshallerContext context) { return CreateSnapshotResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateUserRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class CreateUserRequest extends RpcAcsRequest<CreateUserResponse> { public CreateUserRequest() { super("CloudDesktop", "2017-03-01", "CreateUser", "CloudDesktop"); } private String email; private String userName; public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putQueryParameter("Email", email); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<CreateUserResponse> getResponseClass() { return CreateUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateUserResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.CreateUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateUserResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private UserInfo userInfo; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public UserInfo getUserInfo() { return this.userInfo; } public void setUserInfo(UserInfo userInfo) { this.userInfo = userInfo; } public static class UserInfo { private String userName; private String email; private String whenCreated; private String whenChanged; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public String getWhenCreated() { return this.whenCreated; } public void setWhenCreated(String whenCreated) { this.whenCreated = whenCreated; } public String getWhenChanged() { return this.whenChanged; } public void setWhenChanged(String whenChanged) { this.whenChanged = whenChanged; } } @Override public CreateUserResponse getInstance(UnmarshallerContext context) { return CreateUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DeleteDesktopRequest extends RpcAcsRequest<DeleteDesktopResponse> { public DeleteDesktopRequest() { super("CloudDesktop", "2017-03-01", "DeleteDesktop", "CloudDesktop"); } private String desktopId; private Long ownerId; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<DeleteDesktopResponse> getResponseClass() { return DeleteDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DeleteDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public DeleteDesktopResponse getInstance(UnmarshallerContext context) { return DeleteDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteImageRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class DeleteImageRequest extends RpcAcsRequest<DeleteImageResponse> { public DeleteImageRequest() { super("CloudDesktop", "2017-03-01", "DeleteImage", "CloudDesktop"); } private List<String> imageIds; public List<String> getImageIds() { return this.imageIds; } public void setImageIds(List<String> imageIds) { this.imageIds = imageIds; if (imageIds != null) { for (int i = 0; i < imageIds.size(); i++) { putQueryParameter("ImageId." + (i + 1) , imageIds.get(i)); } } } @Override public Class<DeleteImageResponse> getResponseClass() { return DeleteImageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteImageResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DeleteImageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteImageResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private List<ImageIdModel> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<ImageIdModel> getResult() { return this.result; } public void setResult(List<ImageIdModel> result) { this.result = result; } public static class ImageIdModel { private String imageId; private Boolean success; private String errorCode; private String message; public String getImageId() { return this.imageId; } public void setImageId(String imageId) { this.imageId = imageId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public DeleteImageResponse getInstance(UnmarshallerContext context) { return DeleteImageResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteSnapshotRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class DeleteSnapshotRequest extends RpcAcsRequest<DeleteSnapshotResponse> { public DeleteSnapshotRequest() { super("CloudDesktop", "2017-03-01", "DeleteSnapshot", "CloudDesktop"); } private List<String> snapshotIds; public List<String> getSnapshotIds() { return this.snapshotIds; } public void setSnapshotIds(List<String> snapshotIds) { this.snapshotIds = snapshotIds; if (snapshotIds != null) { for (int i = 0; i < snapshotIds.size(); i++) { putQueryParameter("SnapshotId." + (i + 1) , snapshotIds.get(i)); } } } @Override public Class<DeleteSnapshotResponse> getResponseClass() { return DeleteSnapshotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteSnapshotResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DeleteSnapshotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteSnapshotResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private List<SnapshotIdModel> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public List<SnapshotIdModel> getResult() { return this.result; } public void setResult(List<SnapshotIdModel> result) { this.result = result; } public static class SnapshotIdModel { private String snapshotId; private Boolean success; private String errorCode; private String message; public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public DeleteSnapshotResponse getInstance(UnmarshallerContext context) { return DeleteSnapshotResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteUserRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class DeleteUserRequest extends RpcAcsRequest<DeleteUserResponse> { public DeleteUserRequest() { super("CloudDesktop", "2017-03-01", "DeleteUser", "CloudDesktop"); } private List<String> userNames; public List<String> getUserNames() { return this.userNames; } public void setUserNames(List<String> userNames) { this.userNames = userNames; if (userNames != null) { for (int i = 0; i < userNames.size(); i++) { putQueryParameter("UserName." + (i + 1) , userNames.get(i)); } } } @Override public Class<DeleteUserResponse> getResponseClass() { return DeleteUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DeleteUserResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DeleteUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteUserResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private List<UserAction> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public List<UserAction> getResult() { return this.result; } public void setResult(List<UserAction> result) { this.result = result; } public static class UserAction { private String userName; private Boolean success; private String errorCode; private String message; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public DeleteUserResponse getInstance(UnmarshallerContext context) { return DeleteUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeActivityDirectoryUsersRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeActivityDirectoryUsersRequest extends RpcAcsRequest<DescribeActivityDirectoryUsersResponse> { public DescribeActivityDirectoryUsersRequest() { super("CloudDesktop", "2017-03-01", "DescribeActivityDirectoryUsers", "CloudDesktop"); } private String userName; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<DescribeActivityDirectoryUsersResponse> getResponseClass() { return DescribeActivityDirectoryUsersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeActivityDirectoryUsersResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeActivityDirectoryUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeActivityDirectoryUsersResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private List<UserInfo> users; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<UserInfo> getUsers() { return this.users; } public void setUsers(List<UserInfo> users) { this.users = users; } public static class UserInfo { private String userName; private String email; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } } @Override public DescribeActivityDirectoryUsersResponse getInstance(UnmarshallerContext context) { return DescribeActivityDirectoryUsersResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeAutoSnapshotRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeAutoSnapshotRequest extends RpcAcsRequest<DescribeAutoSnapshotResponse> { public DescribeAutoSnapshotRequest() { super("CloudDesktop", "2017-03-01", "DescribeAutoSnapshot", "CloudDesktop"); } private String desktopId; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } @Override public Class<DescribeAutoSnapshotResponse> getResponseClass() { return DescribeAutoSnapshotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeAutoSnapshotResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeAutoSnapshotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAutoSnapshotResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private String systemSnapshotDateTime; private String dataSnapshotDateTime; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getSystemSnapshotDateTime() { return this.systemSnapshotDateTime; } public void setSystemSnapshotDateTime(String systemSnapshotDateTime) { this.systemSnapshotDateTime = systemSnapshotDateTime; } public String getDataSnapshotDateTime() { return this.dataSnapshotDateTime; } public void setDataSnapshotDateTime(String dataSnapshotDateTime) { this.dataSnapshotDateTime = dataSnapshotDateTime; } @Override public DescribeAutoSnapshotResponse getInstance(UnmarshallerContext context) { return DescribeAutoSnapshotResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeAvailableResourceRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeAvailableResourceRequest extends RpcAcsRequest<DescribeAvailableResourceResponse> { public DescribeAvailableResourceRequest() { super("CloudDesktop", "2017-03-01", "DescribeAvailableResource", "CloudDesktop"); } private String zoneId; private String chargeType; private String typeItemId; public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; if(zoneId != null){ putQueryParameter("ZoneId", zoneId); } } public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; if(chargeType != null){ putQueryParameter("ChargeType", chargeType); } } public String getTypeItemId() { return this.typeItemId; } public void setTypeItemId(String typeItemId) { this.typeItemId = typeItemId; if(typeItemId != null){ putQueryParameter("TypeItemId", typeItemId); } } @Override public Class<DescribeAvailableResourceResponse> getResponseClass() { return DescribeAvailableResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeAvailableResourceResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeAvailableResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAvailableResourceResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Boolean available; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getAvailable() { return this.available; } public void setAvailable(Boolean available) { this.available = available; } @Override public DescribeAvailableResourceResponse getInstance(UnmarshallerContext context) { return DescribeAvailableResourceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeCompanyAliasRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeCompanyAliasRequest extends RpcAcsRequest<DescribeCompanyAliasResponse> { public DescribeCompanyAliasRequest() { super("CloudDesktop", "2017-03-01", "DescribeCompanyAlias", "CloudDesktop"); } @Override public Class<DescribeCompanyAliasResponse> getResponseClass() { return DescribeCompanyAliasResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeCompanyAliasResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeCompanyAliasResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCompanyAliasResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private String companyAlias; private String whenCreated; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getCompanyAlias() { return this.companyAlias; } public void setCompanyAlias(String companyAlias) { this.companyAlias = companyAlias; } public String getWhenCreated() { return this.whenCreated; } public void setWhenCreated(String whenCreated) { this.whenCreated = whenCreated; } @Override public DescribeCompanyAliasResponse getInstance(UnmarshallerContext context) { return DescribeCompanyAliasResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopOwnerRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeDesktopOwnerRequest extends RpcAcsRequest<DescribeDesktopOwnerResponse> { public DescribeDesktopOwnerRequest() { super("CloudDesktop", "2017-03-01", "DescribeDesktopOwner", "CloudDesktop"); } @Override public Class<DescribeDesktopOwnerResponse> getResponseClass() { return DescribeDesktopOwnerResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopOwnerResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeDesktopOwnerResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDesktopOwnerResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private String adType; private String status; private String domainName; private String adAdminName; private String adIp; private String adBackupIp; private String dnsIp; private String dnsBackupIp; private String ownerSecurityGroupId; private String ownerVpcId; private String serviceId; private String serviceSecurityGroupId; private String cmUrl; private String companyCode; private String adOU; private String adGroup; private String adTrustDomain; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getAdType() { return this.adType; } public void setAdType(String adType) { this.adType = adType; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getAdAdminName() { return this.adAdminName; } public void setAdAdminName(String adAdminName) { this.adAdminName = adAdminName; } public String getAdIp() { return this.adIp; } public void setAdIp(String adIp) { this.adIp = adIp; } public String getAdBackupIp() { return this.adBackupIp; } public void setAdBackupIp(String adBackupIp) { this.adBackupIp = adBackupIp; } public String getDnsIp() { return this.dnsIp; } public void setDnsIp(String dnsIp) { this.dnsIp = dnsIp; } public String getDnsBackupIp() { return this.dnsBackupIp; } public void setDnsBackupIp(String dnsBackupIp) { this.dnsBackupIp = dnsBackupIp; } public String getOwnerSecurityGroupId() { return this.ownerSecurityGroupId; } public void setOwnerSecurityGroupId(String ownerSecurityGroupId) { this.ownerSecurityGroupId = ownerSecurityGroupId; } public String getOwnerVpcId() { return this.ownerVpcId; } public void setOwnerVpcId(String ownerVpcId) { this.ownerVpcId = ownerVpcId; } public String getServiceId() { return this.serviceId; } public void setServiceId(String serviceId) { this.serviceId = serviceId; } public String getServiceSecurityGroupId() { return this.serviceSecurityGroupId; } public void setServiceSecurityGroupId(String serviceSecurityGroupId) { this.serviceSecurityGroupId = serviceSecurityGroupId; } public String getCmUrl() { return this.cmUrl; } public void setCmUrl(String cmUrl) { this.cmUrl = cmUrl; } public String getCompanyCode() { return this.companyCode; } public void setCompanyCode(String companyCode) { this.companyCode = companyCode; } public String getAdOU() { return this.adOU; } public void setAdOU(String adOU) { this.adOU = adOU; } public String getAdGroup() { return this.adGroup; } public void setAdGroup(String adGroup) { this.adGroup = adGroup; } public String getAdTrustDomain() { return this.adTrustDomain; } public void setAdTrustDomain(String adTrustDomain) { this.adTrustDomain = adTrustDomain; } @Override public DescribeDesktopOwnerResponse getInstance(UnmarshallerContext context) { return DescribeDesktopOwnerResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopTypeItemsRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeDesktopTypeItemsRequest extends RpcAcsRequest<DescribeDesktopTypeItemsResponse> { public DescribeDesktopTypeItemsRequest() { super("CloudDesktop", "2017-03-01", "DescribeDesktopTypeItems", "CloudDesktop"); } private String desktopType; private String typeItemId; public String getDesktopType() { return this.desktopType; } public void setDesktopType(String desktopType) { this.desktopType = desktopType; if(desktopType != null){ putQueryParameter("DesktopType", desktopType); } } public String getTypeItemId() { return this.typeItemId; } public void setTypeItemId(String typeItemId) { this.typeItemId = typeItemId; if(typeItemId != null){ putQueryParameter("TypeItemId", typeItemId); } } @Override public Class<DescribeDesktopTypeItemsResponse> getResponseClass() { return DescribeDesktopTypeItemsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopTypeItemsResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeDesktopTypeItemsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDesktopTypeItemsResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private List<DesktopItem> desktopTypeItems; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public List<DesktopItem> getDesktopTypeItems() { return this.desktopTypeItems; } public void setDesktopTypeItems(List<DesktopItem> desktopTypeItems) { this.desktopTypeItems = desktopTypeItems; } public static class DesktopItem { private String typeItemId; private String desktopType; private Integer cpu; private Integer memory; private Integer gpu; private String gpuSpec; private String sysDiskType; private Integer sysDiskSize; private String userDiskType; private Integer userDiskSize; public String getTypeItemId() { return this.typeItemId; } public void setTypeItemId(String typeItemId) { this.typeItemId = typeItemId; } public String getDesktopType() { return this.desktopType; } public void setDesktopType(String desktopType) { this.desktopType = desktopType; } public Integer getCpu() { return this.cpu; } public void setCpu(Integer cpu) { this.cpu = cpu; } public Integer getMemory() { return this.memory; } public void setMemory(Integer memory) { this.memory = memory; } public Integer getGpu() { return this.gpu; } public void setGpu(Integer gpu) { this.gpu = gpu; } public String getGpuSpec() { return this.gpuSpec; } public void setGpuSpec(String gpuSpec) { this.gpuSpec = gpuSpec; } public String getSysDiskType() { return this.sysDiskType; } public void setSysDiskType(String sysDiskType) { this.sysDiskType = sysDiskType; } public Integer getSysDiskSize() { return this.sysDiskSize; } public void setSysDiskSize(Integer sysDiskSize) { this.sysDiskSize = sysDiskSize; } public String getUserDiskType() { return this.userDiskType; } public void setUserDiskType(String userDiskType) { this.userDiskType = userDiskType; } public Integer getUserDiskSize() { return this.userDiskSize; } public void setUserDiskSize(Integer userDiskSize) { this.userDiskSize = userDiskSize; } } @Override public DescribeDesktopTypeItemsResponse getInstance(UnmarshallerContext context) { return DescribeDesktopTypeItemsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopVNCRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeDesktopVNCRequest extends RpcAcsRequest<DescribeDesktopVNCResponse> { public DescribeDesktopVNCRequest() { super("CloudDesktop", "2017-03-01", "DescribeDesktopVNC", "CloudDesktop"); } private String desktopId; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } @Override public Class<DescribeDesktopVNCResponse> getResponseClass() { return DescribeDesktopVNCResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopVNCResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeDesktopVNCResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDesktopVNCResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private String vnc; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getVnc() { return this.vnc; } public void setVnc(String vnc) { this.vnc = vnc; } @Override public DescribeDesktopVNCResponse getInstance(UnmarshallerContext context) { return DescribeDesktopVNCResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopsOverviewRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeDesktopsOverviewRequest extends RpcAcsRequest<DescribeDesktopsOverviewResponse> { public DescribeDesktopsOverviewRequest() { super("CloudDesktop", "2017-03-01", "DescribeDesktopsOverview", "CloudDesktop"); } @Override public Class<DescribeDesktopsOverviewResponse> getResponseClass() { return DescribeDesktopsOverviewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopsOverviewResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeDesktopsOverviewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDesktopsOverviewResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private Integer total; private Integer expired; private Integer nearExpired; private List<SwitchInfo> switchInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getExpired() { return this.expired; } public void setExpired(Integer expired) { this.expired = expired; } public Integer getNearExpired() { return this.nearExpired; } public void setNearExpired(Integer nearExpired) { this.nearExpired = nearExpired; } public List<SwitchInfo> getSwitchInfos() { return this.switchInfos; } public void setSwitchInfos(List<SwitchInfo> switchInfos) { this.switchInfos = switchInfos; } public static class SwitchInfo { private String switchId; private Integer desktopCount; public String getSwitchId() { return this.switchId; } public void setSwitchId(String switchId) { this.switchId = switchId; } public Integer getDesktopCount() { return this.desktopCount; } public void setDesktopCount(Integer desktopCount) { this.desktopCount = desktopCount; } } @Override public DescribeDesktopsOverviewResponse getInstance(UnmarshallerContext context) { return DescribeDesktopsOverviewResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopsRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeDesktopsRequest extends RpcAcsRequest<DescribeDesktopsResponse> { public DescribeDesktopsRequest() { super("CloudDesktop", "2017-03-01", "DescribeDesktops", "CloudDesktop"); } private String desktopName; private Integer pageSize; private Integer page; private String userName; private String desktopIp; public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; if(desktopName != null){ putQueryParameter("DesktopName", desktopName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } public String getDesktopIp() { return this.desktopIp; } public void setDesktopIp(String desktopIp) { this.desktopIp = desktopIp; if(desktopIp != null){ putQueryParameter("DesktopIp", desktopIp); } } @Override public Class<DescribeDesktopsResponse> getResponseClass() { return DescribeDesktopsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeDesktopsResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeDesktopsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDesktopsResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private Integer total; private Integer pageSize; private Integer pageCount; private Integer page; private List<DesktopAttributes> desktops; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageCount() { return this.pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; } public List<DesktopAttributes> getDesktops() { return this.desktops; } public void setDesktops(List<DesktopAttributes> desktops) { this.desktops = desktops; } public static class DesktopAttributes { private String desktopId; private String desktopName; private String userName; private String regionId; private String zoneId; private String status; private String imageId; private String imageName; private String imagePlatform; private String imageArch; private String imageSize; private String desktopType; private String cpu; private String memory; private String eipAddress; private String eipInstanceId; private String internetChargeType; private String internetBandwidth; private String vpcId; private String switchId; private String desktopIpAddress; private String desktopChargeType; private String createDate; private String expiredDate; private Boolean enable; private String errorCode; private String errorMessage; private String policy; private String userGroup; private List<DiskInfo> diskInfos; private List<String> securityGroups; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; } public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getImageId() { return this.imageId; } public void setImageId(String imageId) { this.imageId = imageId; } public String getImageName() { return this.imageName; } public void setImageName(String imageName) { this.imageName = imageName; } public String getImagePlatform() { return this.imagePlatform; } public void setImagePlatform(String imagePlatform) { this.imagePlatform = imagePlatform; } public String getImageArch() { return this.imageArch; } public void setImageArch(String imageArch) { this.imageArch = imageArch; } public String getImageSize() { return this.imageSize; } public void setImageSize(String imageSize) { this.imageSize = imageSize; } public String getDesktopType() { return this.desktopType; } public void setDesktopType(String desktopType) { this.desktopType = desktopType; } public String getCpu() { return this.cpu; } public void setCpu(String cpu) { this.cpu = cpu; } public String getMemory() { return this.memory; } public void setMemory(String memory) { this.memory = memory; } public String getEipAddress() { return this.eipAddress; } public void setEipAddress(String eipAddress) { this.eipAddress = eipAddress; } public String getEipInstanceId() { return this.eipInstanceId; } public void setEipInstanceId(String eipInstanceId) { this.eipInstanceId = eipInstanceId; } public String getInternetChargeType() { return this.internetChargeType; } public void setInternetChargeType(String internetChargeType) { this.internetChargeType = internetChargeType; } public String getInternetBandwidth() { return this.internetBandwidth; } public void setInternetBandwidth(String internetBandwidth) { this.internetBandwidth = internetBandwidth; } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } public String getSwitchId() { return this.switchId; } public void setSwitchId(String switchId) { this.switchId = switchId; } public String getDesktopIpAddress() { return this.desktopIpAddress; } public void setDesktopIpAddress(String desktopIpAddress) { this.desktopIpAddress = desktopIpAddress; } public String getDesktopChargeType() { return this.desktopChargeType; } public void setDesktopChargeType(String desktopChargeType) { this.desktopChargeType = desktopChargeType; } public String getCreateDate() { return this.createDate; } public void setCreateDate(String createDate) { this.createDate = createDate; } public String getExpiredDate() { return this.expiredDate; } public void setExpiredDate(String expiredDate) { this.expiredDate = expiredDate; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public String getPolicy() { return this.policy; } public void setPolicy(String policy) { this.policy = policy; } public String getUserGroup() { return this.userGroup; } public void setUserGroup(String userGroup) { this.userGroup = userGroup; } public List<DiskInfo> getDiskInfos() { return this.diskInfos; } public void setDiskInfos(List<DiskInfo> diskInfos) { this.diskInfos = diskInfos; } public List<String> getSecurityGroups() { return this.securityGroups; } public void setSecurityGroups(List<String> securityGroups) { this.securityGroups = securityGroups; } public static class DiskInfo { private String id; private String category; private String type; private Integer size; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public Integer getSize() { return this.size; } public void setSize(Integer size) { this.size = size; } } } @Override public DescribeDesktopsResponse getInstance(UnmarshallerContext context) { return DescribeDesktopsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeImagesRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeImagesRequest extends RpcAcsRequest<DescribeImagesResponse> { public DescribeImagesRequest() { super("CloudDesktop", "2017-03-01", "DescribeImages", "CloudDesktop"); } private String imageType; private String imageId; private String toDate; private String imageName; private Integer pageSize; private Integer page; private String typeItemId; private String fromDate; public String getImageType() { return this.imageType; } public void setImageType(String imageType) { this.imageType = imageType; if(imageType != null){ putQueryParameter("ImageType", imageType); } } public String getImageId() { return this.imageId; } public void setImageId(String imageId) { this.imageId = imageId; if(imageId != null){ putQueryParameter("ImageId", imageId); } } public String getToDate() { return this.toDate; } public void setToDate(String toDate) { this.toDate = toDate; if(toDate != null){ putQueryParameter("ToDate", toDate); } } public String getImageName() { return this.imageName; } public void setImageName(String imageName) { this.imageName = imageName; if(imageName != null){ putQueryParameter("ImageName", imageName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getTypeItemId() { return this.typeItemId; } public void setTypeItemId(String typeItemId) { this.typeItemId = typeItemId; if(typeItemId != null){ putQueryParameter("TypeItemId", typeItemId); } } public String getFromDate() { return this.fromDate; } public void setFromDate(String fromDate) { this.fromDate = fromDate; if(fromDate != null){ putQueryParameter("FromDate", fromDate); } } @Override public Class<DescribeImagesResponse> getResponseClass() { return DescribeImagesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeImagesResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeImagesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeImagesResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String errorCode; private Integer total; private Integer pageSize; private Integer pageCount; private Integer page; private List<ImageAttributes> images; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageCount() { return this.pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; } public List<ImageAttributes> getImages() { return this.images; } public void setImages(List<ImageAttributes> images) { this.images = images; } public static class ImageAttributes { private String imageId; private String imageName; private String imageDescription; private String platform; private String architecture; private String creationTime; private String status; private String process; private String instanceType; public String getImageId() { return this.imageId; } public void setImageId(String imageId) { this.imageId = imageId; } public String getImageName() { return this.imageName; } public void setImageName(String imageName) { this.imageName = imageName; } public String getImageDescription() { return this.imageDescription; } public void setImageDescription(String imageDescription) { this.imageDescription = imageDescription; } public String getPlatform() { return this.platform; } public void setPlatform(String platform) { this.platform = platform; } public String getArchitecture() { return this.architecture; } public void setArchitecture(String architecture) { this.architecture = architecture; } public String getCreationTime() { return this.creationTime; } public void setCreationTime(String creationTime) { this.creationTime = creationTime; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getProcess() { return this.process; } public void setProcess(String process) { this.process = process; } public String getInstanceType() { return this.instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; } } @Override public DescribeImagesResponse getInstance(UnmarshallerContext context) { return DescribeImagesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeRegionsRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeRegionsRequest extends RpcAcsRequest<DescribeRegionsResponse> { public DescribeRegionsRequest() { super("CloudDesktop", "2017-03-01", "DescribeRegions", "CloudDesktop"); } @Override public Class<DescribeRegionsResponse> getResponseClass() { return DescribeRegionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeRegionsResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeRegionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRegionsResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private List<Region> regions; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<Region> getRegions() { return this.regions; } public void setRegions(List<Region> regions) { this.regions = regions; } public static class Region { private String regionId; private String endPoint; private String localName; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getEndPoint() { return this.endPoint; } public void setEndPoint(String endPoint) { this.endPoint = endPoint; } public String getLocalName() { return this.localName; } public void setLocalName(String localName) { this.localName = localName; } } @Override public DescribeRegionsResponse getInstance(UnmarshallerContext context) { return DescribeRegionsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeSAMLConfigRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeSAMLConfigRequest extends RpcAcsRequest<DescribeSAMLConfigResponse> { public DescribeSAMLConfigRequest() { super("CloudDesktop", "2017-03-01", "DescribeSAMLConfig", "CloudDesktop"); } @Override public Class<DescribeSAMLConfigResponse> getResponseClass() { return DescribeSAMLConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeSAMLConfigResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeSAMLConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSAMLConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Boolean samlEnable; private String metadataDocument; private String samlAuth; private String samlCheck; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSamlEnable() { return this.samlEnable; } public void setSamlEnable(Boolean samlEnable) { this.samlEnable = samlEnable; } public String getMetadataDocument() { return this.metadataDocument; } public void setMetadataDocument(String metadataDocument) { this.metadataDocument = metadataDocument; } public String getSamlAuth() { return this.samlAuth; } public void setSamlAuth(String samlAuth) { this.samlAuth = samlAuth; } public String getSamlCheck() { return this.samlCheck; } public void setSamlCheck(String samlCheck) { this.samlCheck = samlCheck; } @Override public DescribeSAMLConfigResponse getInstance(UnmarshallerContext context) { return DescribeSAMLConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeSAMLSpMetadataRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeSAMLSpMetadataRequest extends RpcAcsRequest<DescribeSAMLSpMetadataResponse> { public DescribeSAMLSpMetadataRequest() { super("CloudDesktop", "2017-03-01", "DescribeSAMLSpMetadata", "CloudDesktop"); } @Override public Class<DescribeSAMLSpMetadataResponse> getResponseClass() { return DescribeSAMLSpMetadataResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeSAMLSpMetadataResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeSAMLSpMetadataResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSAMLSpMetadataResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private String metadataDocument; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getMetadataDocument() { return this.metadataDocument; } public void setMetadataDocument(String metadataDocument) { this.metadataDocument = metadataDocument; } @Override public DescribeSAMLSpMetadataResponse getInstance(UnmarshallerContext context) { return DescribeSAMLSpMetadataResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeSnapshotRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeSnapshotRequest extends RpcAcsRequest<DescribeSnapshotResponse> { public DescribeSnapshotRequest() { super("CloudDesktop", "2017-03-01", "DescribeSnapshot", "CloudDesktop"); } private String desktopName; private String snapshotId; private String toDate; private Integer pageSize; private String snapshotName; private Integer page; private String snapshotDescription; private String fromDate; public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; if(desktopName != null){ putQueryParameter("DesktopName", desktopName); } } public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; if(snapshotId != null){ putQueryParameter("SnapshotId", snapshotId); } } public String getToDate() { return this.toDate; } public void setToDate(String toDate) { this.toDate = toDate; if(toDate != null){ putQueryParameter("ToDate", toDate); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getSnapshotName() { return this.snapshotName; } public void setSnapshotName(String snapshotName) { this.snapshotName = snapshotName; if(snapshotName != null){ putQueryParameter("SnapshotName", snapshotName); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getSnapshotDescription() { return this.snapshotDescription; } public void setSnapshotDescription(String snapshotDescription) { this.snapshotDescription = snapshotDescription; if(snapshotDescription != null){ putQueryParameter("SnapshotDescription", snapshotDescription); } } public String getFromDate() { return this.fromDate; } public void setFromDate(String fromDate) { this.fromDate = fromDate; if(fromDate != null){ putQueryParameter("FromDate", fromDate); } } @Override public Class<DescribeSnapshotResponse> getResponseClass() { return DescribeSnapshotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeSnapshotResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeSnapshotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSnapshotResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Integer total; private Integer pageSize; private Integer pageCount; private Integer page; private List<SnapshotAttributes> snapshots; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageCount() { return this.pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; } public List<SnapshotAttributes> getSnapshots() { return this.snapshots; } public void setSnapshots(List<SnapshotAttributes> snapshots) { this.snapshots = snapshots; } public static class SnapshotAttributes { private String snapshotId; private String snapshotName; private String desktopName; private String userName; private String description; private String sourceDiskSize; private String sourceDiskType; private String sourceDiskId; private String creationTime; private String status; private String instanceType; private String process; public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } public String getSnapshotName() { return this.snapshotName; } public void setSnapshotName(String snapshotName) { this.snapshotName = snapshotName; } public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getSourceDiskSize() { return this.sourceDiskSize; } public void setSourceDiskSize(String sourceDiskSize) { this.sourceDiskSize = sourceDiskSize; } public String getSourceDiskType() { return this.sourceDiskType; } public void setSourceDiskType(String sourceDiskType) { this.sourceDiskType = sourceDiskType; } public String getSourceDiskId() { return this.sourceDiskId; } public void setSourceDiskId(String sourceDiskId) { this.sourceDiskId = sourceDiskId; } public String getCreationTime() { return this.creationTime; } public void setCreationTime(String creationTime) { this.creationTime = creationTime; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getInstanceType() { return this.instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; } public String getProcess() { return this.process; } public void setProcess(String process) { this.process = process; } } @Override public DescribeSnapshotResponse getInstance(UnmarshallerContext context) { return DescribeSnapshotResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeUserActionsRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeUserActionsRequest extends RpcAcsRequest<DescribeUserActionsResponse> { public DescribeUserActionsRequest() { super("CloudDesktop", "2017-03-01", "DescribeUserActions", "CloudDesktop"); } private String desktopName; private String toDate; private Integer pageSize; private Integer page; private String userName; private String fromDate; public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; if(desktopName != null){ putQueryParameter("DesktopName", desktopName); } } public String getToDate() { return this.toDate; } public void setToDate(String toDate) { this.toDate = toDate; if(toDate != null){ putQueryParameter("ToDate", toDate); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } public String getFromDate() { return this.fromDate; } public void setFromDate(String fromDate) { this.fromDate = fromDate; if(fromDate != null){ putQueryParameter("FromDate", fromDate); } } @Override public Class<DescribeUserActionsResponse> getResponseClass() { return DescribeUserActionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeUserActionsResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeUserActionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserActionsResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Integer total; private Integer pageSize; private Integer pageCount; private Integer page; private List<UserActionInfo> userActions; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageCount() { return this.pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; } public List<UserActionInfo> getUserActions() { return this.userActions; } public void setUserActions(List<UserActionInfo> userActions) { this.userActions = userActions; } public static class UserActionInfo { private String desktopName; private String userName; private String event; private String eventDateTime; private Boolean result; private String resultDetail; private String clientIp; private String clientType; private String clientVersion; private String agentVersion; public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEvent() { return this.event; } public void setEvent(String event) { this.event = event; } public String getEventDateTime() { return this.eventDateTime; } public void setEventDateTime(String eventDateTime) { this.eventDateTime = eventDateTime; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getResultDetail() { return this.resultDetail; } public void setResultDetail(String resultDetail) { this.resultDetail = resultDetail; } public String getClientIp() { return this.clientIp; } public void setClientIp(String clientIp) { this.clientIp = clientIp; } public String getClientType() { return this.clientType; } public void setClientType(String clientType) { this.clientType = clientType; } public String getClientVersion() { return this.clientVersion; } public void setClientVersion(String clientVersion) { this.clientVersion = clientVersion; } public String getAgentVersion() { return this.agentVersion; } public void setAgentVersion(String agentVersion) { this.agentVersion = agentVersion; } } @Override public DescribeUserActionsResponse getInstance(UnmarshallerContext context) { return DescribeUserActionsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeUserRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeUserRequest extends RpcAcsRequest<DescribeUserResponse> { public DescribeUserRequest() { super("CloudDesktop", "2017-03-01", "DescribeUser", "CloudDesktop"); } private String userName; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<DescribeUserResponse> getResponseClass() { return DescribeUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeUserResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private UserInfo userInfo; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public UserInfo getUserInfo() { return this.userInfo; } public void setUserInfo(UserInfo userInfo) { this.userInfo = userInfo; } public static class UserInfo { private String userName; private String email; private Integer flag; private Boolean locked; private String whenCreated; private String whenChanged; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public Integer getFlag() { return this.flag; } public void setFlag(Integer flag) { this.flag = flag; } public Boolean getLocked() { return this.locked; } public void setLocked(Boolean locked) { this.locked = locked; } public String getWhenCreated() { return this.whenCreated; } public void setWhenCreated(String whenCreated) { this.whenCreated = whenCreated; } public String getWhenChanged() { return this.whenChanged; } public void setWhenChanged(String whenChanged) { this.whenChanged = whenChanged; } } @Override public DescribeUserResponse getInstance(UnmarshallerContext context) { return DescribeUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeUsersRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class DescribeUsersRequest extends RpcAcsRequest<DescribeUsersResponse> { public DescribeUsersRequest() { super("CloudDesktop", "2017-03-01", "DescribeUsers", "CloudDesktop"); } private Integer pageSize; private String email; private Integer pageNumber; private String userName; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putQueryParameter("Email", email); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<DescribeUsersResponse> getResponseClass() { return DescribeUsersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/DescribeUsersResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.DescribeUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUsersResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<UserInfo> users; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<UserInfo> getUsers() { return this.users; } public void setUsers(List<UserInfo> users) { this.users = users; } public static class UserInfo { private String userName; private String email; private Integer flag; private Boolean locked; private String whenCreated; private String whenChanged; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public Integer getFlag() { return this.flag; } public void setFlag(Integer flag) { this.flag = flag; } public Boolean getLocked() { return this.locked; } public void setLocked(Boolean locked) { this.locked = locked; } public String getWhenCreated() { return this.whenCreated; } public void setWhenCreated(String whenCreated) { this.whenCreated = whenCreated; } public String getWhenChanged() { return this.whenChanged; } public void setWhenChanged(String whenChanged) { this.whenChanged = whenChanged; } } @Override public DescribeUsersResponse getInstance(UnmarshallerContext context) { return DescribeUsersResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopAdminPasswordRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifyDesktopAdminPasswordRequest extends RpcAcsRequest<ModifyDesktopAdminPasswordResponse> { public ModifyDesktopAdminPasswordRequest() { super("CloudDesktop", "2017-03-01", "ModifyDesktopAdminPassword", "CloudDesktop"); } private String password; private String desktopId; public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putQueryParameter("Password", password); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } @Override public Class<ModifyDesktopAdminPasswordResponse> getResponseClass() { return ModifyDesktopAdminPasswordResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopAdminPasswordResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifyDesktopAdminPasswordResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyDesktopAdminPasswordResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifyDesktopAdminPasswordResponse getInstance(UnmarshallerContext context) { return ModifyDesktopAdminPasswordResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifyDesktopRequest extends RpcAcsRequest<ModifyDesktopResponse> { public ModifyDesktopRequest() { super("CloudDesktop", "2017-03-01", "ModifyDesktop", "CloudDesktop"); } private String desktopName; private String desktopId; public String getDesktopName() { return this.desktopName; } public void setDesktopName(String desktopName) { this.desktopName = desktopName; if(desktopName != null){ putQueryParameter("DesktopName", desktopName); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } @Override public Class<ModifyDesktopResponse> getResponseClass() { return ModifyDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifyDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifyDesktopResponse getInstance(UnmarshallerContext context) { return ModifyDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopUserGroupRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifyDesktopUserGroupRequest extends RpcAcsRequest<ModifyDesktopUserGroupResponse> { public ModifyDesktopUserGroupRequest() { super("CloudDesktop", "2017-03-01", "ModifyDesktopUserGroup", "CloudDesktop"); } private Boolean reboot; private String userGroup; private String desktopId; public Boolean getReboot() { return this.reboot; } public void setReboot(Boolean reboot) { this.reboot = reboot; if(reboot != null){ putQueryParameter("Reboot", reboot.toString()); } } public String getUserGroup() { return this.userGroup; } public void setUserGroup(String userGroup) { this.userGroup = userGroup; if(userGroup != null){ putQueryParameter("UserGroup", userGroup); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } @Override public Class<ModifyDesktopUserGroupResponse> getResponseClass() { return ModifyDesktopUserGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopUserGroupResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifyDesktopUserGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyDesktopUserGroupResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifyDesktopUserGroupResponse getInstance(UnmarshallerContext context) { return ModifyDesktopUserGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopUserRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifyDesktopUserRequest extends RpcAcsRequest<ModifyDesktopUserResponse> { public ModifyDesktopUserRequest() { super("CloudDesktop", "2017-03-01", "ModifyDesktopUser", "CloudDesktop"); } private String userGroup; private String desktopId; private String userName; public String getUserGroup() { return this.userGroup; } public void setUserGroup(String userGroup) { this.userGroup = userGroup; if(userGroup != null){ putQueryParameter("UserGroup", userGroup); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<ModifyDesktopUserResponse> getResponseClass() { return ModifyDesktopUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyDesktopUserResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifyDesktopUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyDesktopUserResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifyDesktopUserResponse getInstance(UnmarshallerContext context) { return ModifyDesktopUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyImageInfoRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifyImageInfoRequest extends RpcAcsRequest<ModifyImageInfoResponse> { public ModifyImageInfoRequest() { super("CloudDesktop", "2017-03-01", "ModifyImageInfo", "CloudDesktop"); } private String imageId; private String description; public String getImageId() { return this.imageId; } public void setImageId(String imageId) { this.imageId = imageId; if(imageId != null){ putQueryParameter("ImageId", imageId); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } @Override public Class<ModifyImageInfoResponse> getResponseClass() { return ModifyImageInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyImageInfoResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifyImageInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyImageInfoResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifyImageInfoResponse getInstance(UnmarshallerContext context) { return ModifyImageInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifySAMLConfigRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifySAMLConfigRequest extends RpcAcsRequest<ModifySAMLConfigResponse> { public ModifySAMLConfigRequest() { super("CloudDesktop", "2017-03-01", "ModifySAMLConfig", "CloudDesktop"); } private Boolean samlEnable; private String fileName; private String samlAuth; private String fileKey; private String samlCheck; public Boolean getSamlEnable() { return this.samlEnable; } public void setSamlEnable(Boolean samlEnable) { this.samlEnable = samlEnable; if(samlEnable != null){ putQueryParameter("SamlEnable", samlEnable.toString()); } } public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; if(fileName != null){ putQueryParameter("FileName", fileName); } } public String getSamlAuth() { return this.samlAuth; } public void setSamlAuth(String samlAuth) { this.samlAuth = samlAuth; if(samlAuth != null){ putQueryParameter("SamlAuth", samlAuth); } } public String getFileKey() { return this.fileKey; } public void setFileKey(String fileKey) { this.fileKey = fileKey; if(fileKey != null){ putQueryParameter("FileKey", fileKey); } } public String getSamlCheck() { return this.samlCheck; } public void setSamlCheck(String samlCheck) { this.samlCheck = samlCheck; if(samlCheck != null){ putQueryParameter("SamlCheck", samlCheck); } } @Override public Class<ModifySAMLConfigResponse> getResponseClass() { return ModifySAMLConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifySAMLConfigResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifySAMLConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifySAMLConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifySAMLConfigResponse getInstance(UnmarshallerContext context) { return ModifySAMLConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifySnapshotInfoRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifySnapshotInfoRequest extends RpcAcsRequest<ModifySnapshotInfoResponse> { public ModifySnapshotInfoRequest() { super("CloudDesktop", "2017-03-01", "ModifySnapshotInfo", "CloudDesktop"); } private String snapshotId; private String snapshotDescription; public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; if(snapshotId != null){ putQueryParameter("SnapshotId", snapshotId); } } public String getSnapshotDescription() { return this.snapshotDescription; } public void setSnapshotDescription(String snapshotDescription) { this.snapshotDescription = snapshotDescription; if(snapshotDescription != null){ putQueryParameter("SnapshotDescription", snapshotDescription); } } @Override public Class<ModifySnapshotInfoResponse> getResponseClass() { return ModifySnapshotInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifySnapshotInfoResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifySnapshotInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifySnapshotInfoResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ModifySnapshotInfoResponse getInstance(UnmarshallerContext context) { return ModifySnapshotInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyUserRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ModifyUserRequest extends RpcAcsRequest<ModifyUserResponse> { public ModifyUserRequest() { super("CloudDesktop", "2017-03-01", "ModifyUser", "CloudDesktop"); } private String email; private String userName; public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putQueryParameter("Email", email); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<ModifyUserResponse> getResponseClass() { return ModifyUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ModifyUserResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ModifyUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyUserResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private UserInfo userInfo; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public UserInfo getUserInfo() { return this.userInfo; } public void setUserInfo(UserInfo userInfo) { this.userInfo = userInfo; } public static class UserInfo { private String userName; private String email; private String whenCreated; private String whenChanged; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public String getWhenCreated() { return this.whenCreated; } public void setWhenCreated(String whenCreated) { this.whenCreated = whenCreated; } public String getWhenChanged() { return this.whenChanged; } public void setWhenChanged(String whenChanged) { this.whenChanged = whenChanged; } } @Override public ModifyUserResponse getInstance(UnmarshallerContext context) { return ModifyUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/RebootDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class RebootDesktopRequest extends RpcAcsRequest<RebootDesktopResponse> { public RebootDesktopRequest() { super("CloudDesktop", "2017-03-01", "RebootDesktop", "CloudDesktop"); } private String desktopId; private Boolean forceStop; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public Boolean getForceStop() { return this.forceStop; } public void setForceStop(Boolean forceStop) { this.forceStop = forceStop; if(forceStop != null){ putQueryParameter("ForceStop", forceStop.toString()); } } @Override public Class<RebootDesktopResponse> getResponseClass() { return RebootDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/RebootDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.RebootDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RebootDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public RebootDesktopResponse getInstance(UnmarshallerContext context) { return RebootDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ReleaseOwnerRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ReleaseOwnerRequest extends RpcAcsRequest<ReleaseOwnerResponse> { public ReleaseOwnerRequest() { super("CloudDesktop", "2017-03-01", "ReleaseOwner", "CloudDesktop"); } @Override public Class<ReleaseOwnerResponse> getResponseClass() { return ReleaseOwnerResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ReleaseOwnerResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ReleaseOwnerResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ReleaseOwnerResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ReleaseOwnerResponse getInstance(UnmarshallerContext context) { return ReleaseOwnerResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/RenewDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class RenewDesktopRequest extends RpcAcsRequest<RenewDesktopResponse> { public RenewDesktopRequest() { super("CloudDesktop", "2017-03-01", "RenewDesktop", "CloudDesktop"); } private Integer period; private String clientToken; private String desktopId; private Long ownerId; private String cycle; public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getCycle() { return this.cycle; } public void setCycle(String cycle) { this.cycle = cycle; if(cycle != null){ putQueryParameter("Cycle", cycle); } } @Override public Class<RenewDesktopResponse> getResponseClass() { return RenewDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/RenewDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.RenewDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RenewDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private Long orderId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Long getOrderId() { return this.orderId; } public void setOrderId(Long orderId) { this.orderId = orderId; } @Override public RenewDesktopResponse getInstance(UnmarshallerContext context) { return RenewDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/RequestUploadFileRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class RequestUploadFileRequest extends RpcAcsRequest<RequestUploadFileResponse> { public RequestUploadFileRequest() { super("CloudDesktop", "2017-03-01", "RequestUploadFile", "CloudDesktop"); } @Override public Class<RequestUploadFileResponse> getResponseClass() { return RequestUploadFileResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/RequestUploadFileResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.RequestUploadFileResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RequestUploadFileResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private String accessid; private String policy; private String signature; private String dir; private String host; private String expire; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getAccessid() { return this.accessid; } public void setAccessid(String accessid) { this.accessid = accessid; } public String getPolicy() { return this.policy; } public void setPolicy(String policy) { this.policy = policy; } public String getSignature() { return this.signature; } public void setSignature(String signature) { this.signature = signature; } public String getDir() { return this.dir; } public void setDir(String dir) { this.dir = dir; } public String getHost() { return this.host; } public void setHost(String host) { this.host = host; } public String getExpire() { return this.expire; } public void setExpire(String expire) { this.expire = expire; } @Override public RequestUploadFileResponse getInstance(UnmarshallerContext context) { return RequestUploadFileResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ResetDiskFromAutoSnapshotRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ResetDiskFromAutoSnapshotRequest extends RpcAcsRequest<ResetDiskFromAutoSnapshotResponse> { public ResetDiskFromAutoSnapshotRequest() { super("CloudDesktop", "2017-03-01", "ResetDiskFromAutoSnapshot", "CloudDesktop"); } private Boolean startAfterReset; private Boolean systemDisk; private String desktopId; private Boolean dataDisk; public Boolean getStartAfterReset() { return this.startAfterReset; } public void setStartAfterReset(Boolean startAfterReset) { this.startAfterReset = startAfterReset; if(startAfterReset != null){ putQueryParameter("StartAfterReset", startAfterReset.toString()); } } public Boolean getSystemDisk() { return this.systemDisk; } public void setSystemDisk(Boolean systemDisk) { this.systemDisk = systemDisk; if(systemDisk != null){ putQueryParameter("SystemDisk", systemDisk.toString()); } } public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public Boolean getDataDisk() { return this.dataDisk; } public void setDataDisk(Boolean dataDisk) { this.dataDisk = dataDisk; if(dataDisk != null){ putQueryParameter("DataDisk", dataDisk.toString()); } } @Override public Class<ResetDiskFromAutoSnapshotResponse> getResponseClass() { return ResetDiskFromAutoSnapshotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ResetDiskFromAutoSnapshotResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ResetDiskFromAutoSnapshotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResetDiskFromAutoSnapshotResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ResetDiskFromAutoSnapshotResponse getInstance(UnmarshallerContext context) { return ResetDiskFromAutoSnapshotResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ResetDiskFromSnapshotRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ResetDiskFromSnapshotRequest extends RpcAcsRequest<ResetDiskFromSnapshotResponse> { public ResetDiskFromSnapshotRequest() { super("CloudDesktop", "2017-03-01", "ResetDiskFromSnapshot", "CloudDesktop"); } private String snapshotId; private Boolean startAfterReset; public String getSnapshotId() { return this.snapshotId; } public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; if(snapshotId != null){ putQueryParameter("SnapshotId", snapshotId); } } public Boolean getStartAfterReset() { return this.startAfterReset; } public void setStartAfterReset(Boolean startAfterReset) { this.startAfterReset = startAfterReset; if(startAfterReset != null){ putQueryParameter("StartAfterReset", startAfterReset.toString()); } } @Override public Class<ResetDiskFromSnapshotResponse> getResponseClass() { return ResetDiskFromSnapshotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ResetDiskFromSnapshotResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ResetDiskFromSnapshotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResetDiskFromSnapshotResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ResetDiskFromSnapshotResponse getInstance(UnmarshallerContext context) { return ResetDiskFromSnapshotResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ResetUserPasswordRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class ResetUserPasswordRequest extends RpcAcsRequest<ResetUserPasswordResponse> { public ResetUserPasswordRequest() { super("CloudDesktop", "2017-03-01", "ResetUserPassword", "CloudDesktop"); } private List<String> userNames; public List<String> getUserNames() { return this.userNames; } public void setUserNames(List<String> userNames) { this.userNames = userNames; if (userNames != null) { for (int i = 0; i < userNames.size(); i++) { putQueryParameter("UserName." + (i + 1) , userNames.get(i)); } } } @Override public Class<ResetUserPasswordResponse> getResponseClass() { return ResetUserPasswordResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ResetUserPasswordResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.ResetUserPasswordResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResetUserPasswordResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private List<UserAction> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<UserAction> getResult() { return this.result; } public void setResult(List<UserAction> result) { this.result = result; } public static class UserAction { private String userName; private Boolean success; private String errorCode; private String message; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public ResetUserPasswordResponse getInstance(UnmarshallerContext context) { return ResetUserPasswordResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/StartDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class StartDesktopRequest extends RpcAcsRequest<StartDesktopResponse> { public StartDesktopRequest() { super("CloudDesktop", "2017-03-01", "StartDesktop", "CloudDesktop"); } private String desktopId; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } @Override public Class<StartDesktopResponse> getResponseClass() { return StartDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/StartDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.StartDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public StartDesktopResponse getInstance(UnmarshallerContext context) { return StartDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/StopDesktopRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class StopDesktopRequest extends RpcAcsRequest<StopDesktopResponse> { public StopDesktopRequest() { super("CloudDesktop", "2017-03-01", "StopDesktop", "CloudDesktop"); } private String desktopId; private Boolean forceStop; public String getDesktopId() { return this.desktopId; } public void setDesktopId(String desktopId) { this.desktopId = desktopId; if(desktopId != null){ putQueryParameter("DesktopId", desktopId); } } public Boolean getForceStop() { return this.forceStop; } public void setForceStop(Boolean forceStop) { this.forceStop = forceStop; if(forceStop != null){ putQueryParameter("ForceStop", forceStop.toString()); } } @Override public Class<StopDesktopResponse> getResponseClass() { return StopDesktopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/StopDesktopResponse.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.StopDesktopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopDesktopResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public StopDesktopResponse getInstance(UnmarshallerContext context) { return StopDesktopResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/UnlockUserRequest.java
/* * 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.clouddesktop.model.v20170301; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class UnlockUserRequest extends RpcAcsRequest<UnlockUserResponse> { public UnlockUserRequest() { super("CloudDesktop", "2017-03-01", "UnlockUser", "CloudDesktop"); } private Boolean unlock; private List<String> userNames; public Boolean getUnlock() { return this.unlock; } public void setUnlock(Boolean unlock) { this.unlock = unlock; if(unlock != null){ putQueryParameter("Unlock", unlock.toString()); } } public List<String> getUserNames() { return this.userNames; } public void setUserNames(List<String> userNames) { this.userNames = userNames; if (userNames != null) { for (int i = 0; i < userNames.size(); i++) { putQueryParameter("UserName." + (i + 1) , userNames.get(i)); } } } @Override public Class<UnlockUserResponse> getResponseClass() { return UnlockUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/UnlockUserResponse.java
/* * 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.clouddesktop.model.v20170301; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.clouddesktop.transform.v20170301.UnlockUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UnlockUserResponse extends AcsResponse { private String requestId; private Boolean success; private String errorCode; private String message; private List<UserAction> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<UserAction> getResult() { return this.result; } public void setResult(List<UserAction> result) { this.result = result; } public static class UserAction { private String userName; private Boolean success; private String errorCode; private String message; public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public UnlockUserResponse getInstance(UnmarshallerContext context) { return UnlockUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/AllocOwnerAuthConfigResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.AllocOwnerAuthConfigResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AllocOwnerAuthConfigResponseUnmarshaller { public static AllocOwnerAuthConfigResponse unmarshall(AllocOwnerAuthConfigResponse allocOwnerAuthConfigResponse, UnmarshallerContext context) { allocOwnerAuthConfigResponse.setRequestId(context.stringValue("AllocOwnerAuthConfigResponse.RequestId")); allocOwnerAuthConfigResponse.setSuccess(context.booleanValue("AllocOwnerAuthConfigResponse.Success")); allocOwnerAuthConfigResponse.setErrorCode(context.stringValue("AllocOwnerAuthConfigResponse.ErrorCode")); allocOwnerAuthConfigResponse.setMessage(context.stringValue("AllocOwnerAuthConfigResponse.Message")); return allocOwnerAuthConfigResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/AllocOwnerAuthDefaultResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.AllocOwnerAuthDefaultResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AllocOwnerAuthDefaultResponseUnmarshaller { public static AllocOwnerAuthDefaultResponse unmarshall(AllocOwnerAuthDefaultResponse allocOwnerAuthDefaultResponse, UnmarshallerContext context) { allocOwnerAuthDefaultResponse.setRequestId(context.stringValue("AllocOwnerAuthDefaultResponse.RequestId")); allocOwnerAuthDefaultResponse.setSuccess(context.booleanValue("AllocOwnerAuthDefaultResponse.Success")); allocOwnerAuthDefaultResponse.setErrorCode(context.stringValue("AllocOwnerAuthDefaultResponse.ErrorCode")); allocOwnerAuthDefaultResponse.setMessage(context.stringValue("AllocOwnerAuthDefaultResponse.Message")); return allocOwnerAuthDefaultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/ChangeActivityDirectoryPasswordResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.ChangeActivityDirectoryPasswordResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ChangeActivityDirectoryPasswordResponseUnmarshaller { public static ChangeActivityDirectoryPasswordResponse unmarshall(ChangeActivityDirectoryPasswordResponse changeActivityDirectoryPasswordResponse, UnmarshallerContext context) { changeActivityDirectoryPasswordResponse.setRequestId(context.stringValue("ChangeActivityDirectoryPasswordResponse.RequestId")); changeActivityDirectoryPasswordResponse.setSuccess(context.booleanValue("ChangeActivityDirectoryPasswordResponse.Success")); changeActivityDirectoryPasswordResponse.setErrorCode(context.stringValue("ChangeActivityDirectoryPasswordResponse.ErrorCode")); changeActivityDirectoryPasswordResponse.setMessage(context.stringValue("ChangeActivityDirectoryPasswordResponse.Message")); return changeActivityDirectoryPasswordResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CheckOwnerRoleAuthorizedResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CheckOwnerRoleAuthorizedResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CheckOwnerRoleAuthorizedResponseUnmarshaller { public static CheckOwnerRoleAuthorizedResponse unmarshall(CheckOwnerRoleAuthorizedResponse checkOwnerRoleAuthorizedResponse, UnmarshallerContext context) { checkOwnerRoleAuthorizedResponse.setRequestId(context.stringValue("CheckOwnerRoleAuthorizedResponse.RequestId")); checkOwnerRoleAuthorizedResponse.setSuccess(context.booleanValue("CheckOwnerRoleAuthorizedResponse.Success")); checkOwnerRoleAuthorizedResponse.setErrorCode(context.stringValue("CheckOwnerRoleAuthorizedResponse.ErrorCode")); checkOwnerRoleAuthorizedResponse.setMessage(context.stringValue("CheckOwnerRoleAuthorizedResponse.Message")); return checkOwnerRoleAuthorizedResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CopyImageResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CopyImageResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CopyImageResponseUnmarshaller { public static CopyImageResponse unmarshall(CopyImageResponse copyImageResponse, UnmarshallerContext context) { copyImageResponse.setRequestId(context.stringValue("CopyImageResponse.RequestId")); copyImageResponse.setSuccess(context.booleanValue("CopyImageResponse.success")); copyImageResponse.setErrorCode(context.stringValue("CopyImageResponse.ErrorCode")); copyImageResponse.setMessage(context.stringValue("CopyImageResponse.Message")); return copyImageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CreateCompanyAliasResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CreateCompanyAliasResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateCompanyAliasResponseUnmarshaller { public static CreateCompanyAliasResponse unmarshall(CreateCompanyAliasResponse createCompanyAliasResponse, UnmarshallerContext context) { createCompanyAliasResponse.setRequestId(context.stringValue("CreateCompanyAliasResponse.RequestId")); createCompanyAliasResponse.setSuccess(context.booleanValue("CreateCompanyAliasResponse.Success")); createCompanyAliasResponse.setErrorCode(context.stringValue("CreateCompanyAliasResponse.ErrorCode")); createCompanyAliasResponse.setMessage(context.stringValue("CreateCompanyAliasResponse.Message")); return createCompanyAliasResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CreateDesktopResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CreateDesktopResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateDesktopResponseUnmarshaller { public static CreateDesktopResponse unmarshall(CreateDesktopResponse createDesktopResponse, UnmarshallerContext context) { createDesktopResponse.setRequestId(context.stringValue("CreateDesktopResponse.RequestId")); createDesktopResponse.setSuccess(context.booleanValue("CreateDesktopResponse.Success")); createDesktopResponse.setErrorCode(context.stringValue("CreateDesktopResponse.ErrorCode")); createDesktopResponse.setMessage(context.stringValue("CreateDesktopResponse.Message")); createDesktopResponse.setOrderId(context.longValue("CreateDesktopResponse.OrderId")); createDesktopResponse.setDesktopId(context.stringValue("CreateDesktopResponse.DesktopId")); return createDesktopResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CreateImageResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CreateImageResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateImageResponseUnmarshaller { public static CreateImageResponse unmarshall(CreateImageResponse createImageResponse, UnmarshallerContext context) { createImageResponse.setRequestId(context.stringValue("CreateImageResponse.RequestId")); createImageResponse.setSuccess(context.booleanValue("CreateImageResponse.Success")); createImageResponse.setErrorCode(context.stringValue("CreateImageResponse.ErrorCode")); createImageResponse.setMessage(context.stringValue("CreateImageResponse.Message")); return createImageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CreateSnapshotResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CreateSnapshotResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateSnapshotResponseUnmarshaller { public static CreateSnapshotResponse unmarshall(CreateSnapshotResponse createSnapshotResponse, UnmarshallerContext context) { createSnapshotResponse.setRequestId(context.stringValue("CreateSnapshotResponse.RequestId")); createSnapshotResponse.setSuccess(context.booleanValue("CreateSnapshotResponse.Success")); createSnapshotResponse.setErrorCode(context.stringValue("CreateSnapshotResponse.ErrorCode")); createSnapshotResponse.setMessage(context.stringValue("CreateSnapshotResponse.Message")); createSnapshotResponse.setSnapshotId(context.stringValue("CreateSnapshotResponse.SnapshotId")); return createSnapshotResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/CreateUserResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.CreateUserResponse; import com.aliyuncs.clouddesktop.model.v20170301.CreateUserResponse.UserInfo; import com.aliyuncs.transform.UnmarshallerContext; public class CreateUserResponseUnmarshaller { public static CreateUserResponse unmarshall(CreateUserResponse createUserResponse, UnmarshallerContext context) { createUserResponse.setRequestId(context.stringValue("CreateUserResponse.RequestId")); createUserResponse.setSuccess(context.booleanValue("CreateUserResponse.Success")); createUserResponse.setErrorCode(context.stringValue("CreateUserResponse.ErrorCode")); createUserResponse.setMessage(context.stringValue("CreateUserResponse.Message")); UserInfo userInfo = new UserInfo(); userInfo.setUserName(context.stringValue("CreateUserResponse.UserInfo.UserName")); userInfo.setEmail(context.stringValue("CreateUserResponse.UserInfo.Email")); userInfo.setWhenCreated(context.stringValue("CreateUserResponse.UserInfo.WhenCreated")); userInfo.setWhenChanged(context.stringValue("CreateUserResponse.UserInfo.WhenChanged")); createUserResponse.setUserInfo(userInfo); return createUserResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/DeleteDesktopResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import com.aliyuncs.clouddesktop.model.v20170301.DeleteDesktopResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteDesktopResponseUnmarshaller { public static DeleteDesktopResponse unmarshall(DeleteDesktopResponse deleteDesktopResponse, UnmarshallerContext context) { deleteDesktopResponse.setRequestId(context.stringValue("DeleteDesktopResponse.RequestId")); deleteDesktopResponse.setSuccess(context.booleanValue("DeleteDesktopResponse.Success")); deleteDesktopResponse.setErrorCode(context.stringValue("DeleteDesktopResponse.ErrorCode")); deleteDesktopResponse.setMessage(context.stringValue("DeleteDesktopResponse.Message")); return deleteDesktopResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/DeleteImageResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import java.util.ArrayList; import java.util.List; import com.aliyuncs.clouddesktop.model.v20170301.DeleteImageResponse; import com.aliyuncs.clouddesktop.model.v20170301.DeleteImageResponse.ImageIdModel; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteImageResponseUnmarshaller { public static DeleteImageResponse unmarshall(DeleteImageResponse deleteImageResponse, UnmarshallerContext context) { deleteImageResponse.setRequestId(context.stringValue("DeleteImageResponse.RequestId")); deleteImageResponse.setSuccess(context.booleanValue("DeleteImageResponse.Success")); deleteImageResponse.setErrorCode(context.stringValue("DeleteImageResponse.ErrorCode")); deleteImageResponse.setMessage(context.stringValue("DeleteImageResponse.Message")); List<ImageIdModel> result = new ArrayList<ImageIdModel>(); for (int i = 0; i < context.lengthValue("DeleteImageResponse.Result.Length"); i++) { ImageIdModel imageIdModel = new ImageIdModel(); imageIdModel.setImageId(context.stringValue("DeleteImageResponse.Result["+ i +"].ImageId")); imageIdModel.setSuccess(context.booleanValue("DeleteImageResponse.Result["+ i +"].Success")); imageIdModel.setErrorCode(context.stringValue("DeleteImageResponse.Result["+ i +"].ErrorCode")); imageIdModel.setMessage(context.stringValue("DeleteImageResponse.Result["+ i +"].Message")); result.add(imageIdModel); } deleteImageResponse.setResult(result); return deleteImageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/DeleteSnapshotResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import java.util.ArrayList; import java.util.List; import com.aliyuncs.clouddesktop.model.v20170301.DeleteSnapshotResponse; import com.aliyuncs.clouddesktop.model.v20170301.DeleteSnapshotResponse.SnapshotIdModel; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteSnapshotResponseUnmarshaller { public static DeleteSnapshotResponse unmarshall(DeleteSnapshotResponse deleteSnapshotResponse, UnmarshallerContext context) { deleteSnapshotResponse.setRequestId(context.stringValue("DeleteSnapshotResponse.RequestId")); deleteSnapshotResponse.setSuccess(context.booleanValue("DeleteSnapshotResponse.Success")); deleteSnapshotResponse.setMessage(context.stringValue("DeleteSnapshotResponse.Message")); deleteSnapshotResponse.setErrorCode(context.stringValue("DeleteSnapshotResponse.ErrorCode")); List<SnapshotIdModel> result = new ArrayList<SnapshotIdModel>(); for (int i = 0; i < context.lengthValue("DeleteSnapshotResponse.Result.Length"); i++) { SnapshotIdModel snapshotIdModel = new SnapshotIdModel(); snapshotIdModel.setSnapshotId(context.stringValue("DeleteSnapshotResponse.Result["+ i +"].SnapshotId")); snapshotIdModel.setSuccess(context.booleanValue("DeleteSnapshotResponse.Result["+ i +"].Success")); snapshotIdModel.setErrorCode(context.stringValue("DeleteSnapshotResponse.Result["+ i +"].ErrorCode")); snapshotIdModel.setMessage(context.stringValue("DeleteSnapshotResponse.Result["+ i +"].Message")); result.add(snapshotIdModel); } deleteSnapshotResponse.setResult(result); return deleteSnapshotResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/transform/v20170301/DeleteUserResponseUnmarshaller.java
/* * 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.clouddesktop.transform.v20170301; import java.util.ArrayList; import java.util.List; import com.aliyuncs.clouddesktop.model.v20170301.DeleteUserResponse; import com.aliyuncs.clouddesktop.model.v20170301.DeleteUserResponse.UserAction; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteUserResponseUnmarshaller { public static DeleteUserResponse unmarshall(DeleteUserResponse deleteUserResponse, UnmarshallerContext context) { deleteUserResponse.setRequestId(context.stringValue("DeleteUserResponse.RequestId")); deleteUserResponse.setSuccess(context.booleanValue("DeleteUserResponse.Success")); deleteUserResponse.setMessage(context.stringValue("DeleteUserResponse.Message")); deleteUserResponse.setErrorCode(context.stringValue("DeleteUserResponse.ErrorCode")); List<UserAction> result = new ArrayList<UserAction>(); for (int i = 0; i < context.lengthValue("DeleteUserResponse.Result.Length"); i++) { UserAction userAction = new UserAction(); userAction.setUserName(context.stringValue("DeleteUserResponse.Result["+ i +"].UserName")); userAction.setSuccess(context.booleanValue("DeleteUserResponse.Result["+ i +"].Success")); userAction.setErrorCode(context.stringValue("DeleteUserResponse.Result["+ i +"].ErrorCode")); userAction.setMessage(context.stringValue("DeleteUserResponse.Result["+ i +"].Message")); result.add(userAction); } deleteUserResponse.setResult(result); return deleteUserResponse; } }