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

com.pulumi.azurenative.operationalinsights.inputs.LogAnalyticsQueryPackQueryPropertiesRelatedArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.operationalinsights.inputs;

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;


/**
 * The related metadata items for the function.
 * 
 */
public final class LogAnalyticsQueryPackQueryPropertiesRelatedArgs extends com.pulumi.resources.ResourceArgs {

    public static final LogAnalyticsQueryPackQueryPropertiesRelatedArgs Empty = new LogAnalyticsQueryPackQueryPropertiesRelatedArgs();

    /**
     * The related categories for the function.
     * 
     */
    @Import(name="categories")
    private @Nullable Output> categories;

    /**
     * @return The related categories for the function.
     * 
     */
    public Optional>> categories() {
        return Optional.ofNullable(this.categories);
    }

    /**
     * The related resource types for the function.
     * 
     */
    @Import(name="resourceTypes")
    private @Nullable Output> resourceTypes;

    /**
     * @return The related resource types for the function.
     * 
     */
    public Optional>> resourceTypes() {
        return Optional.ofNullable(this.resourceTypes);
    }

    /**
     * The related Log Analytics solutions for the function.
     * 
     */
    @Import(name="solutions")
    private @Nullable Output> solutions;

    /**
     * @return The related Log Analytics solutions for the function.
     * 
     */
    public Optional>> solutions() {
        return Optional.ofNullable(this.solutions);
    }

    private LogAnalyticsQueryPackQueryPropertiesRelatedArgs() {}

    private LogAnalyticsQueryPackQueryPropertiesRelatedArgs(LogAnalyticsQueryPackQueryPropertiesRelatedArgs $) {
        this.categories = $.categories;
        this.resourceTypes = $.resourceTypes;
        this.solutions = $.solutions;
    }

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

    public static final class Builder {
        private LogAnalyticsQueryPackQueryPropertiesRelatedArgs $;

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

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

        /**
         * @param categories The related categories for the function.
         * 
         * @return builder
         * 
         */
        public Builder categories(@Nullable Output> categories) {
            $.categories = categories;
            return this;
        }

        /**
         * @param categories The related categories for the function.
         * 
         * @return builder
         * 
         */
        public Builder categories(List categories) {
            return categories(Output.of(categories));
        }

        /**
         * @param categories The related categories for the function.
         * 
         * @return builder
         * 
         */
        public Builder categories(String... categories) {
            return categories(List.of(categories));
        }

        /**
         * @param resourceTypes The related resource types for the function.
         * 
         * @return builder
         * 
         */
        public Builder resourceTypes(@Nullable Output> resourceTypes) {
            $.resourceTypes = resourceTypes;
            return this;
        }

        /**
         * @param resourceTypes The related resource types for the function.
         * 
         * @return builder
         * 
         */
        public Builder resourceTypes(List resourceTypes) {
            return resourceTypes(Output.of(resourceTypes));
        }

        /**
         * @param resourceTypes The related resource types for the function.
         * 
         * @return builder
         * 
         */
        public Builder resourceTypes(String... resourceTypes) {
            return resourceTypes(List.of(resourceTypes));
        }

        /**
         * @param solutions The related Log Analytics solutions for the function.
         * 
         * @return builder
         * 
         */
        public Builder solutions(@Nullable Output> solutions) {
            $.solutions = solutions;
            return this;
        }

        /**
         * @param solutions The related Log Analytics solutions for the function.
         * 
         * @return builder
         * 
         */
        public Builder solutions(List solutions) {
            return solutions(Output.of(solutions));
        }

        /**
         * @param solutions The related Log Analytics solutions for the function.
         * 
         * @return builder
         * 
         */
        public Builder solutions(String... solutions) {
            return solutions(List.of(solutions));
        }

        public LogAnalyticsQueryPackQueryPropertiesRelatedArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy