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

com.pulumi.azurenative.sql.inputs.SyncGroupSchemaTableArgs 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.sql.inputs;

import com.pulumi.azurenative.sql.inputs.SyncGroupSchemaTableColumnArgs;
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;


/**
 * Properties of table in sync group schema.
 * 
 */
public final class SyncGroupSchemaTableArgs extends com.pulumi.resources.ResourceArgs {

    public static final SyncGroupSchemaTableArgs Empty = new SyncGroupSchemaTableArgs();

    /**
     * List of columns in sync group schema.
     * 
     */
    @Import(name="columns")
    private @Nullable Output> columns;

    /**
     * @return List of columns in sync group schema.
     * 
     */
    public Optional>> columns() {
        return Optional.ofNullable(this.columns);
    }

    /**
     * Quoted name of sync group schema table.
     * 
     */
    @Import(name="quotedName")
    private @Nullable Output quotedName;

    /**
     * @return Quoted name of sync group schema table.
     * 
     */
    public Optional> quotedName() {
        return Optional.ofNullable(this.quotedName);
    }

    private SyncGroupSchemaTableArgs() {}

    private SyncGroupSchemaTableArgs(SyncGroupSchemaTableArgs $) {
        this.columns = $.columns;
        this.quotedName = $.quotedName;
    }

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

    public static final class Builder {
        private SyncGroupSchemaTableArgs $;

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

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

        /**
         * @param columns List of columns in sync group schema.
         * 
         * @return builder
         * 
         */
        public Builder columns(@Nullable Output> columns) {
            $.columns = columns;
            return this;
        }

        /**
         * @param columns List of columns in sync group schema.
         * 
         * @return builder
         * 
         */
        public Builder columns(List columns) {
            return columns(Output.of(columns));
        }

        /**
         * @param columns List of columns in sync group schema.
         * 
         * @return builder
         * 
         */
        public Builder columns(SyncGroupSchemaTableColumnArgs... columns) {
            return columns(List.of(columns));
        }

        /**
         * @param quotedName Quoted name of sync group schema table.
         * 
         * @return builder
         * 
         */
        public Builder quotedName(@Nullable Output quotedName) {
            $.quotedName = quotedName;
            return this;
        }

        /**
         * @param quotedName Quoted name of sync group schema table.
         * 
         * @return builder
         * 
         */
        public Builder quotedName(String quotedName) {
            return quotedName(Output.of(quotedName));
        }

        public SyncGroupSchemaTableArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy