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

com.pulumi.azurenative.insights.inputs.GetAnalyticsItemArgs Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.insights.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetAnalyticsItemArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetAnalyticsItemArgs Empty = new GetAnalyticsItemArgs();

    /**
     * The Id of a specific item defined in the Application Insights component
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return The Id of a specific item defined in the Application Insights component
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

    /**
     * The name of a specific item defined in the Application Insights component
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name of a specific item defined in the Application Insights component
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The name of the Application Insights component resource.
     * 
     */
    @Import(name="resourceName", required=true)
    private Output resourceName;

    /**
     * @return The name of the Application Insights component resource.
     * 
     */
    public Output resourceName() {
        return this.resourceName;
    }

    /**
     * Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
     * 
     */
    @Import(name="scopePath", required=true)
    private Output scopePath;

    /**
     * @return Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
     * 
     */
    public Output scopePath() {
        return this.scopePath;
    }

    private GetAnalyticsItemArgs() {}

    private GetAnalyticsItemArgs(GetAnalyticsItemArgs $) {
        this.id = $.id;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
        this.resourceName = $.resourceName;
        this.scopePath = $.scopePath;
    }

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

    public static final class Builder {
        private GetAnalyticsItemArgs $;

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

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

        /**
         * @param id The Id of a specific item defined in the Application Insights component
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id The Id of a specific item defined in the Application Insights component
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

        /**
         * @param name The name of a specific item defined in the Application Insights component
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of a specific item defined in the Application Insights component
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param resourceName The name of the Application Insights component resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceName(Output resourceName) {
            $.resourceName = resourceName;
            return this;
        }

        /**
         * @param resourceName The name of the Application Insights component resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceName(String resourceName) {
            return resourceName(Output.of(resourceName));
        }

        /**
         * @param scopePath Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
         * 
         * @return builder
         * 
         */
        public Builder scopePath(Output scopePath) {
            $.scopePath = scopePath;
            return this;
        }

        /**
         * @param scopePath Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
         * 
         * @return builder
         * 
         */
        public Builder scopePath(String scopePath) {
            return scopePath(Output.of(scopePath));
        }

        public GetAnalyticsItemArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetAnalyticsItemArgs", "resourceGroupName");
            }
            if ($.resourceName == null) {
                throw new MissingRequiredPropertyException("GetAnalyticsItemArgs", "resourceName");
            }
            if ($.scopePath == null) {
                throw new MissingRequiredPropertyException("GetAnalyticsItemArgs", "scopePath");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy