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

com.pulumi.dbtcloud.inputs.GetGroupUsersPlainArgs 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.dbtcloud.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;


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

    public static final GetGroupUsersPlainArgs Empty = new GetGroupUsersPlainArgs();

    /**
     * ID of the group
     * 
     */
    @Import(name="groupId", required=true)
    private Integer groupId;

    /**
     * @return ID of the group
     * 
     */
    public Integer groupId() {
        return this.groupId;
    }

    private GetGroupUsersPlainArgs() {}

    private GetGroupUsersPlainArgs(GetGroupUsersPlainArgs $) {
        this.groupId = $.groupId;
    }

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

    public static final class Builder {
        private GetGroupUsersPlainArgs $;

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

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

        /**
         * @param groupId ID of the group
         * 
         * @return builder
         * 
         */
        public Builder groupId(Integer groupId) {
            $.groupId = groupId;
            return this;
        }

        public GetGroupUsersPlainArgs build() {
            if ($.groupId == null) {
                throw new MissingRequiredPropertyException("GetGroupUsersPlainArgs", "groupId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy