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

com.pulumi.azure.workloadssap.outputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
Show 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.azure.workloadssap.outputs;

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

@CustomType
public final class ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage {
    /**
     * @return Specifies the offer of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
     * 
     */
    private String offer;
    /**
     * @return The publisher of the Image. Possible values are `RedHat` and `SUSE`. Changing this forces a new resource to be created.
     * 
     */
    private String publisher;
    /**
     * @return The SKU of the Image. Changing this forces a new resource to be created.
     * 
     */
    private String sku;
    /**
     * @return Specifies the version of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
     * 
     */
    private String version;

    private ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage() {}
    /**
     * @return Specifies the offer of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
     * 
     */
    public String offer() {
        return this.offer;
    }
    /**
     * @return The publisher of the Image. Possible values are `RedHat` and `SUSE`. Changing this forces a new resource to be created.
     * 
     */
    public String publisher() {
        return this.publisher;
    }
    /**
     * @return The SKU of the Image. Changing this forces a new resource to be created.
     * 
     */
    public String sku() {
        return this.sku;
    }
    /**
     * @return Specifies the version of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
     * 
     */
    public String version() {
        return this.version;
    }

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

    public static Builder builder(ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String offer;
        private String publisher;
        private String sku;
        private String version;
        public Builder() {}
        public Builder(ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.offer = defaults.offer;
    	      this.publisher = defaults.publisher;
    	      this.sku = defaults.sku;
    	      this.version = defaults.version;
        }

        @CustomType.Setter
        public Builder offer(String offer) {
            if (offer == null) {
              throw new MissingRequiredPropertyException("ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage", "offer");
            }
            this.offer = offer;
            return this;
        }
        @CustomType.Setter
        public Builder publisher(String publisher) {
            if (publisher == null) {
              throw new MissingRequiredPropertyException("ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage", "publisher");
            }
            this.publisher = publisher;
            return this;
        }
        @CustomType.Setter
        public Builder sku(String sku) {
            if (sku == null) {
              throw new MissingRequiredPropertyException("ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage", "sku");
            }
            this.sku = sku;
            return this;
        }
        @CustomType.Setter
        public Builder version(String version) {
            if (version == null) {
              throw new MissingRequiredPropertyException("ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage", "version");
            }
            this.version = version;
            return this;
        }
        public ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage build() {
            final var _resultValue = new ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImage();
            _resultValue.offer = offer;
            _resultValue.publisher = publisher;
            _resultValue.sku = sku;
            _resultValue.version = version;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy