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

com.pulumi.spotinst.outputs.ElastigroupAzureV3RevertToSpot Maven / Gradle / Ivy

The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.spotinst.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class ElastigroupAzureV3RevertToSpot {
    private String performAt;

    private ElastigroupAzureV3RevertToSpot() {}
    public String performAt() {
        return this.performAt;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(ElastigroupAzureV3RevertToSpot defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String performAt;
        public Builder() {}
        public Builder(ElastigroupAzureV3RevertToSpot defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.performAt = defaults.performAt;
        }

        @CustomType.Setter
        public Builder performAt(String performAt) {
            if (performAt == null) {
              throw new MissingRequiredPropertyException("ElastigroupAzureV3RevertToSpot", "performAt");
            }
            this.performAt = performAt;
            return this;
        }
        public ElastigroupAzureV3RevertToSpot build() {
            final var _resultValue = new ElastigroupAzureV3RevertToSpot();
            _resultValue.performAt = performAt;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy