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

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


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

    public static final StorageTableDestinationArgs Empty = new StorageTableDestinationArgs();

    /**
     * A friendly name for the destination.
     * This name should be unique across all destinations (regardless of type) within the data collection rule.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return A friendly name for the destination.
     * This name should be unique across all destinations (regardless of type) within the data collection rule.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The resource ID of the storage account.
     * 
     */
    @Import(name="storageAccountResourceId")
    private @Nullable Output storageAccountResourceId;

    /**
     * @return The resource ID of the storage account.
     * 
     */
    public Optional> storageAccountResourceId() {
        return Optional.ofNullable(this.storageAccountResourceId);
    }

    /**
     * The name of the Storage Table.
     * 
     */
    @Import(name="tableName")
    private @Nullable Output tableName;

    /**
     * @return The name of the Storage Table.
     * 
     */
    public Optional> tableName() {
        return Optional.ofNullable(this.tableName);
    }

    private StorageTableDestinationArgs() {}

    private StorageTableDestinationArgs(StorageTableDestinationArgs $) {
        this.name = $.name;
        this.storageAccountResourceId = $.storageAccountResourceId;
        this.tableName = $.tableName;
    }

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

    public static final class Builder {
        private StorageTableDestinationArgs $;

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

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

        /**
         * @param name A friendly name for the destination.
         * This name should be unique across all destinations (regardless of type) within the data collection rule.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name A friendly name for the destination.
         * This name should be unique across all destinations (regardless of type) within the data collection rule.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param storageAccountResourceId The resource ID of the storage account.
         * 
         * @return builder
         * 
         */
        public Builder storageAccountResourceId(@Nullable Output storageAccountResourceId) {
            $.storageAccountResourceId = storageAccountResourceId;
            return this;
        }

        /**
         * @param storageAccountResourceId The resource ID of the storage account.
         * 
         * @return builder
         * 
         */
        public Builder storageAccountResourceId(String storageAccountResourceId) {
            return storageAccountResourceId(Output.of(storageAccountResourceId));
        }

        /**
         * @param tableName The name of the Storage Table.
         * 
         * @return builder
         * 
         */
        public Builder tableName(@Nullable Output tableName) {
            $.tableName = tableName;
            return this;
        }

        /**
         * @param tableName The name of the Storage Table.
         * 
         * @return builder
         * 
         */
        public Builder tableName(String tableName) {
            return tableName(Output.of(tableName));
        }

        public StorageTableDestinationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy