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

com.pulumi.okta.idp.inputs.GetMetadataSamlPlainArgs 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.okta.idp.inputs;

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 GetMetadataSamlPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetMetadataSamlPlainArgs Empty = new GetMetadataSamlPlainArgs();

    /**
     * The id of the IdP to retrieve metadata for.
     * 
     */
    @Import(name="idpId")
    private @Nullable String idpId;

    /**
     * @return The id of the IdP to retrieve metadata for.
     * 
     */
    public Optional idpId() {
        return Optional.ofNullable(this.idpId);
    }

    private GetMetadataSamlPlainArgs() {}

    private GetMetadataSamlPlainArgs(GetMetadataSamlPlainArgs $) {
        this.idpId = $.idpId;
    }

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

    public static final class Builder {
        private GetMetadataSamlPlainArgs $;

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

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

        /**
         * @param idpId The id of the IdP to retrieve metadata for.
         * 
         * @return builder
         * 
         */
        public Builder idpId(@Nullable String idpId) {
            $.idpId = idpId;
            return this;
        }

        public GetMetadataSamlPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy