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

com.pulumi.okta.inputs.GetAuthServerClaimsPlainArgs Maven / Gradle / Ivy

There is a newer version: 4.13.0-alpha.1732774005
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.okta.inputs;

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


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

    public static final GetAuthServerClaimsPlainArgs Empty = new GetAuthServerClaimsPlainArgs();

    /**
     * Auth server ID
     * 
     */
    @Import(name="authServerId", required=true)
    private String authServerId;

    /**
     * @return Auth server ID
     * 
     */
    public String authServerId() {
        return this.authServerId;
    }

    private GetAuthServerClaimsPlainArgs() {}

    private GetAuthServerClaimsPlainArgs(GetAuthServerClaimsPlainArgs $) {
        this.authServerId = $.authServerId;
    }

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

    public static final class Builder {
        private GetAuthServerClaimsPlainArgs $;

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

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

        /**
         * @param authServerId Auth server ID
         * 
         * @return builder
         * 
         */
        public Builder authServerId(String authServerId) {
            $.authServerId = authServerId;
            return this;
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy