blob: ea1198efd0a6415c4b9ecff9646fca06d3ebdedd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.epam.dlab.backendapi.resources.dto;
import com.epam.dlab.dto.computational.UserComputationalResource;
import com.epam.dlab.model.ResourceEnum;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.Collections;
import java.util.List;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class UserResourceInfo {
@JsonProperty("resource_type")
private ResourceEnum resourceType;
@JsonProperty("resource_name")
private String resourceName;
@JsonProperty("shape")
private String resourceShape;
@JsonProperty("status")
private String resourceStatus;
@JsonProperty("computational_resources")
private List<UserComputationalResource> computationalResources = Collections.emptyList();
@JsonProperty
private String user;
@JsonProperty
private String project;
@JsonProperty("public_ip")
private String ip;
@JsonProperty("cloud_provider")
private String cloudProvider;
public UserResourceInfo withResourceType(ResourceEnum resourceType) {
setResourceType(resourceType);
return this;
}
public UserResourceInfo withResourceName(String resourceName) {
setResourceName(resourceName);
return this;
}
public UserResourceInfo withResourceShape(String resourceShape) {
setResourceShape(resourceShape);
return this;
}
public UserResourceInfo withResourceStatus(String resourceStatus) {
setResourceStatus(resourceStatus);
return this;
}
public UserResourceInfo withCompResources(List<UserComputationalResource> compResources) {
setComputationalResources(compResources);
return this;
}
public UserResourceInfo withUser(String user) {
setUser(user);
return this;
}
public UserResourceInfo withIp(String ip) {
setIp(ip);
return this;
}
public UserResourceInfo withProject(String project) {
setProject(project);
return this;
}
public UserResourceInfo withCloudProvider(String cloudProvider) {
setCloudProvider(cloudProvider);
return this;
}
}