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

com.pulumi.azurenative.security.inputs.ListGitLabSubgroupPlainArgs 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.security.inputs;

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


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

    public static final ListGitLabSubgroupPlainArgs Empty = new ListGitLabSubgroupPlainArgs();

    /**
     * The GitLab group fully-qualified name.
     * 
     */
    @Import(name="groupFQName", required=true)
    private String groupFQName;

    /**
     * @return The GitLab group fully-qualified name.
     * 
     */
    public String groupFQName() {
        return this.groupFQName;
    }

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

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

    /**
     * The security connector name.
     * 
     */
    @Import(name="securityConnectorName", required=true)
    private String securityConnectorName;

    /**
     * @return The security connector name.
     * 
     */
    public String securityConnectorName() {
        return this.securityConnectorName;
    }

    private ListGitLabSubgroupPlainArgs() {}

    private ListGitLabSubgroupPlainArgs(ListGitLabSubgroupPlainArgs $) {
        this.groupFQName = $.groupFQName;
        this.resourceGroupName = $.resourceGroupName;
        this.securityConnectorName = $.securityConnectorName;
    }

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

    public static final class Builder {
        private ListGitLabSubgroupPlainArgs $;

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

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

        /**
         * @param groupFQName The GitLab group fully-qualified name.
         * 
         * @return builder
         * 
         */
        public Builder groupFQName(String groupFQName) {
            $.groupFQName = groupFQName;
            return this;
        }

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

        /**
         * @param securityConnectorName The security connector name.
         * 
         * @return builder
         * 
         */
        public Builder securityConnectorName(String securityConnectorName) {
            $.securityConnectorName = securityConnectorName;
            return this;
        }

        public ListGitLabSubgroupPlainArgs build() {
            if ($.groupFQName == null) {
                throw new MissingRequiredPropertyException("ListGitLabSubgroupPlainArgs", "groupFQName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ListGitLabSubgroupPlainArgs", "resourceGroupName");
            }
            if ($.securityConnectorName == null) {
                throw new MissingRequiredPropertyException("ListGitLabSubgroupPlainArgs", "securityConnectorName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy