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

com.pulumi.azurenative.insights.inputs.ApplicationInsightsComponentAnalyticsItemPropertiesArgs 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.insights.inputs;

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;


/**
 * A set of properties that can be defined in the context of a specific item type. Each type may have its own properties.
 * 
 */
public final class ApplicationInsightsComponentAnalyticsItemPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApplicationInsightsComponentAnalyticsItemPropertiesArgs Empty = new ApplicationInsightsComponentAnalyticsItemPropertiesArgs();

    /**
     * A function alias, used when the type of the item is Function
     * 
     */
    @Import(name="functionAlias")
    private @Nullable Output functionAlias;

    /**
     * @return A function alias, used when the type of the item is Function
     * 
     */
    public Optional> functionAlias() {
        return Optional.ofNullable(this.functionAlias);
    }

    private ApplicationInsightsComponentAnalyticsItemPropertiesArgs() {}

    private ApplicationInsightsComponentAnalyticsItemPropertiesArgs(ApplicationInsightsComponentAnalyticsItemPropertiesArgs $) {
        this.functionAlias = $.functionAlias;
    }

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

    public static final class Builder {
        private ApplicationInsightsComponentAnalyticsItemPropertiesArgs $;

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

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

        /**
         * @param functionAlias A function alias, used when the type of the item is Function
         * 
         * @return builder
         * 
         */
        public Builder functionAlias(@Nullable Output functionAlias) {
            $.functionAlias = functionAlias;
            return this;
        }

        /**
         * @param functionAlias A function alias, used when the type of the item is Function
         * 
         * @return builder
         * 
         */
        public Builder functionAlias(String functionAlias) {
            return functionAlias(Output.of(functionAlias));
        }

        public ApplicationInsightsComponentAnalyticsItemPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy