All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spotinst.sdkjava.model.requests.elastigroup.azure.DetachVmsRequestAzure Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.requests.elastigroup.azure;

import com.spotinst.sdkjava.client.rest.JsonMapper;
import com.spotinst.sdkjava.model.api.azure.elastiGroup.V3.ApiDetachVmsAzure;
import com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.DetachVmsAzure;
import com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.ElastigroupConverterAzure;

public class DetachVmsRequestAzure {

    private String          groupId;
    private DetachVmsAzure  detachVms;

    private DetachVmsRequestAzure() {
    }

    public String getGroupId() {
        return groupId;
    }

    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }

    public DetachVmsAzure getDetachVms() {
        return detachVms;
    }

    public void setDetachVms(DetachVmsAzure detachVms) {
        this.detachVms = detachVms;
    }

    public static class Builder {
        private DetachVmsRequestAzure detachVmsRequestAzure;

        private Builder() {
            this.detachVmsRequestAzure = new DetachVmsRequestAzure();
        }

        public static DetachVmsRequestAzure.Builder get() {
            return new Builder();
        }

        public Builder setGroupId(final String groupId) {
            detachVmsRequestAzure.setGroupId(groupId);
            return this;
        }

        public Builder setDetachVms(final DetachVmsAzure detachVms) {
            detachVmsRequestAzure.setDetachVms(detachVms);
            return this;
        }

        public DetachVmsRequestAzure build() {
            return detachVmsRequestAzure;
        }

    }

    public String toJson() {
        ApiDetachVmsAzure apiDetachVms = ElastigroupConverterAzure.toDal(detachVms);

        return JsonMapper.toJson(apiDetachVms);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy