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

com.pulumi.azurenative.hybridnetwork.inputs.AzureOperatorNexusImageDeployMappingRuleProfileArgs 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.azurenative.hybridnetwork.inputs;

import com.pulumi.azurenative.hybridnetwork.enums.ApplicationEnablement;
import com.pulumi.azurenative.hybridnetwork.inputs.ImageMappingRuleProfileArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Azure Operator Distributed Services image deploy mapping rule profile.
 * 
 */
public final class AzureOperatorNexusImageDeployMappingRuleProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final AzureOperatorNexusImageDeployMappingRuleProfileArgs Empty = new AzureOperatorNexusImageDeployMappingRuleProfileArgs();

    /**
     * The application enablement.
     * 
     */
    @Import(name="applicationEnablement")
    private @Nullable Output> applicationEnablement;

    /**
     * @return The application enablement.
     * 
     */
    public Optional>> applicationEnablement() {
        return Optional.ofNullable(this.applicationEnablement);
    }

    /**
     * The vhd mapping rule profile.
     * 
     */
    @Import(name="imageMappingRuleProfile")
    private @Nullable Output imageMappingRuleProfile;

    /**
     * @return The vhd mapping rule profile.
     * 
     */
    public Optional> imageMappingRuleProfile() {
        return Optional.ofNullable(this.imageMappingRuleProfile);
    }

    private AzureOperatorNexusImageDeployMappingRuleProfileArgs() {}

    private AzureOperatorNexusImageDeployMappingRuleProfileArgs(AzureOperatorNexusImageDeployMappingRuleProfileArgs $) {
        this.applicationEnablement = $.applicationEnablement;
        this.imageMappingRuleProfile = $.imageMappingRuleProfile;
    }

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

    public static final class Builder {
        private AzureOperatorNexusImageDeployMappingRuleProfileArgs $;

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

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

        /**
         * @param applicationEnablement The application enablement.
         * 
         * @return builder
         * 
         */
        public Builder applicationEnablement(@Nullable Output> applicationEnablement) {
            $.applicationEnablement = applicationEnablement;
            return this;
        }

        /**
         * @param applicationEnablement The application enablement.
         * 
         * @return builder
         * 
         */
        public Builder applicationEnablement(Either applicationEnablement) {
            return applicationEnablement(Output.of(applicationEnablement));
        }

        /**
         * @param applicationEnablement The application enablement.
         * 
         * @return builder
         * 
         */
        public Builder applicationEnablement(String applicationEnablement) {
            return applicationEnablement(Either.ofLeft(applicationEnablement));
        }

        /**
         * @param applicationEnablement The application enablement.
         * 
         * @return builder
         * 
         */
        public Builder applicationEnablement(ApplicationEnablement applicationEnablement) {
            return applicationEnablement(Either.ofRight(applicationEnablement));
        }

        /**
         * @param imageMappingRuleProfile The vhd mapping rule profile.
         * 
         * @return builder
         * 
         */
        public Builder imageMappingRuleProfile(@Nullable Output imageMappingRuleProfile) {
            $.imageMappingRuleProfile = imageMappingRuleProfile;
            return this;
        }

        /**
         * @param imageMappingRuleProfile The vhd mapping rule profile.
         * 
         * @return builder
         * 
         */
        public Builder imageMappingRuleProfile(ImageMappingRuleProfileArgs imageMappingRuleProfile) {
            return imageMappingRuleProfile(Output.of(imageMappingRuleProfile));
        }

        public AzureOperatorNexusImageDeployMappingRuleProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy