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

com.pulumi.azure.netapp.inputs.VolumeGroupSapHanaState Maven / Gradle / Ivy

// *** 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.netapp.inputs;

import com.pulumi.azure.netapp.inputs.VolumeGroupSapHanaVolumeArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class VolumeGroupSapHanaState extends com.pulumi.resources.ResourceArgs {

    public static final VolumeGroupSapHanaState Empty = new VolumeGroupSapHanaState();

    /**
     * Name of the account where the application volume group belong to. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    @Import(name="accountName")
    private @Nullable Output accountName;

    /**
     * @return Name of the account where the application volume group belong to. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    public Optional> accountName() {
        return Optional.ofNullable(this.accountName);
    }

    /**
     * The SAP System ID, maximum 3 characters, e.g. `SH9`. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    @Import(name="applicationIdentifier")
    private @Nullable Output applicationIdentifier;

    /**
     * @return The SAP System ID, maximum 3 characters, e.g. `SH9`. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    public Optional> applicationIdentifier() {
        return Optional.ofNullable(this.applicationIdentifier);
    }

    /**
     * Volume group description. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    @Import(name="groupDescription")
    private @Nullable Output groupDescription;

    /**
     * @return Volume group description. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    public Optional> groupDescription() {
        return Optional.ofNullable(this.groupDescription);
    }

    /**
     * The Azure Region where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The Azure Region where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * The name which should be used for this Application Volume Group. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name which should be used for this Application Volume Group. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The name of the Resource Group where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    @Import(name="resourceGroupName")
    private @Nullable Output resourceGroupName;

    /**
     * @return The name of the Resource Group where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
     * 
     */
    public Optional> resourceGroupName() {
        return Optional.ofNullable(this.resourceGroupName);
    }

    /**
     * One or more `volume` blocks as defined below.
     * 
     */
    @Import(name="volumes")
    private @Nullable Output> volumes;

    /**
     * @return One or more `volume` blocks as defined below.
     * 
     */
    public Optional>> volumes() {
        return Optional.ofNullable(this.volumes);
    }

    private VolumeGroupSapHanaState() {}

    private VolumeGroupSapHanaState(VolumeGroupSapHanaState $) {
        this.accountName = $.accountName;
        this.applicationIdentifier = $.applicationIdentifier;
        this.groupDescription = $.groupDescription;
        this.location = $.location;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
        this.volumes = $.volumes;
    }

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

    public static final class Builder {
        private VolumeGroupSapHanaState $;

        public Builder() {
            $ = new VolumeGroupSapHanaState();
        }

        public Builder(VolumeGroupSapHanaState defaults) {
            $ = new VolumeGroupSapHanaState(Objects.requireNonNull(defaults));
        }

        /**
         * @param accountName Name of the account where the application volume group belong to. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder accountName(@Nullable Output accountName) {
            $.accountName = accountName;
            return this;
        }

        /**
         * @param accountName Name of the account where the application volume group belong to. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder accountName(String accountName) {
            return accountName(Output.of(accountName));
        }

        /**
         * @param applicationIdentifier The SAP System ID, maximum 3 characters, e.g. `SH9`. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder applicationIdentifier(@Nullable Output applicationIdentifier) {
            $.applicationIdentifier = applicationIdentifier;
            return this;
        }

        /**
         * @param applicationIdentifier The SAP System ID, maximum 3 characters, e.g. `SH9`. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder applicationIdentifier(String applicationIdentifier) {
            return applicationIdentifier(Output.of(applicationIdentifier));
        }

        /**
         * @param groupDescription Volume group description. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder groupDescription(@Nullable Output groupDescription) {
            $.groupDescription = groupDescription;
            return this;
        }

        /**
         * @param groupDescription Volume group description. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder groupDescription(String groupDescription) {
            return groupDescription(Output.of(groupDescription));
        }

        /**
         * @param location The Azure Region where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The Azure Region where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param name The name which should be used for this Application Volume Group. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name which should be used for this Application Volume Group. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param resourceGroupName The name of the Resource Group where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(@Nullable Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the Resource Group where the Application Volume Group should exist. Changing this forces a new Application Volume Group to be created and data will be lost.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param volumes One or more `volume` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder volumes(@Nullable Output> volumes) {
            $.volumes = volumes;
            return this;
        }

        /**
         * @param volumes One or more `volume` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder volumes(List volumes) {
            return volumes(Output.of(volumes));
        }

        /**
         * @param volumes One or more `volume` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder volumes(VolumeGroupSapHanaVolumeArgs... volumes) {
            return volumes(List.of(volumes));
        }

        public VolumeGroupSapHanaState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy