
com.pulumi.azurenative.awsconnector.outputs.SAMLIdpResponse 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.azurenative.awsconnector.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SAMLIdpResponse {
/**
* @return <p>The unique entity ID of the application in the SAML identity provider.</p>
*
*/
private @Nullable String entityId;
/**
* @return <p>The metadata of the SAML application, in XML format.</p>
*
*/
private @Nullable String metadataContent;
private SAMLIdpResponse() {}
/**
* @return <p>The unique entity ID of the application in the SAML identity provider.</p>
*
*/
public Optional entityId() {
return Optional.ofNullable(this.entityId);
}
/**
* @return <p>The metadata of the SAML application, in XML format.</p>
*
*/
public Optional metadataContent() {
return Optional.ofNullable(this.metadataContent);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SAMLIdpResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String entityId;
private @Nullable String metadataContent;
public Builder() {}
public Builder(SAMLIdpResponse defaults) {
Objects.requireNonNull(defaults);
this.entityId = defaults.entityId;
this.metadataContent = defaults.metadataContent;
}
@CustomType.Setter
public Builder entityId(@Nullable String entityId) {
this.entityId = entityId;
return this;
}
@CustomType.Setter
public Builder metadataContent(@Nullable String metadataContent) {
this.metadataContent = metadataContent;
return this;
}
public SAMLIdpResponse build() {
final var _resultValue = new SAMLIdpResponse();
_resultValue.entityId = entityId;
_resultValue.metadataContent = metadataContent;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy