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

com.pulumi.okta.idp.inputs.GetMetadataSamlArgs 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.Output;
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 GetMetadataSamlArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetMetadataSamlArgs Empty = new GetMetadataSamlArgs();

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

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

    private GetMetadataSamlArgs() {}

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

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

    public static final class Builder {
        private GetMetadataSamlArgs $;

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

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

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

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

        public GetMetadataSamlArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy