blob: d38c44f9d477807477119283d0b4a49be48e87b1 [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.datalab.dto.gcp.computational;
import com.epam.datalab.dto.ResourceURL;
import com.epam.datalab.dto.SchedulerJobDTO;
import com.epam.datalab.dto.computational.UserComputationalResource;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
import java.time.LocalDateTime;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* Stores info about the user's computational resources for notebook.
*/
@ToString(callSuper = true)
@Getter
@EqualsAndHashCode(callSuper = true)
public class GcpComputationalResource extends UserComputationalResource {
@JsonProperty("instance_id")
private final String instanceId;
@JsonProperty("master_node_shape")
private final String masterShape;
@JsonProperty("slave_node_shape")
private final String slaveShape;
@JsonProperty("total_slave_instance_number")
private final String slaveNumber;
@JsonProperty("total_master_instance_number")
private final String masterNumber;
@JsonProperty("total_preemptible_number")
private final String preemptibleNumber;
@JsonProperty("dataproc_version")
private final String version;
@JsonProperty("master_gpu_type")
private final String masterGPUType;
@JsonProperty("master_gpu_count")
private final String masterGPUCount;
@JsonProperty("slave_gpu_type")
private final String slaveGPUType;
@JsonProperty("slave_gpu_count")
private final String slaveGPUCount;
private final Boolean enabledGPU;
@Builder
public GcpComputationalResource(String computationalName, String computationalId, String imageName,
String templateName, String status, Date uptime,
SchedulerJobDTO schedulerJobData, boolean reuploadKeyRequired,
String instanceId, String masterShape, String slaveShape, String slaveNumber,
String masterNumber, String preemptibleNumber, String version,
List<ResourceURL> resourceURL, LocalDateTime lastActivity,
Map<String, String> tags, int totalInstanceCount,
String masterGPUCount, String masterGPUType, String slaveGPUType, String slaveGPUCount, Boolean enabledGPU) {
super(computationalName, computationalId, imageName, templateName, status, uptime, schedulerJobData,
reuploadKeyRequired, resourceURL, lastActivity, tags, totalInstanceCount);
this.instanceId = instanceId;
this.masterShape = masterShape;
this.slaveShape = slaveShape;
this.slaveNumber = slaveNumber;
this.masterNumber = masterNumber;
this.version = version;
this.preemptibleNumber = preemptibleNumber;
this.masterGPUCount = masterGPUCount;
this.masterGPUType = masterGPUType;
this.slaveGPUType = slaveGPUType;
this.slaveGPUCount = slaveGPUCount;
this.enabledGPU = enabledGPU;
super.setMasterGpuCount(this.masterGPUCount);
super.setMasterGpuType(this.masterGPUType);
super.setSlaveGpuCount(this.slaveGPUCount);
super.setSlaveGpuType(this.slaveGPUType);
super.setEnabledGPU(enabledGPU);
}
}