
com.pulumi.okta.inputs.GetAuthenticatorPlainArgs 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.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 GetAuthenticatorPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAuthenticatorPlainArgs Empty = new GetAuthenticatorPlainArgs();
/**
* ID of the authenticator.
*
*/
@Import(name="id")
private @Nullable String id;
/**
* @return ID of the authenticator.
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* A human-readable string that identifies the authenticator.
*
*/
@Import(name="key")
private @Nullable String key;
/**
* @return A human-readable string that identifies the authenticator.
*
*/
public Optional key() {
return Optional.ofNullable(this.key);
}
/**
* Name of the authenticator.
*
*/
@Import(name="name")
private @Nullable String name;
/**
* @return Name of the authenticator.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
private GetAuthenticatorPlainArgs() {}
private GetAuthenticatorPlainArgs(GetAuthenticatorPlainArgs $) {
this.id = $.id;
this.key = $.key;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAuthenticatorPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAuthenticatorPlainArgs $;
public Builder() {
$ = new GetAuthenticatorPlainArgs();
}
public Builder(GetAuthenticatorPlainArgs defaults) {
$ = new GetAuthenticatorPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param id ID of the authenticator.
*
* @return builder
*
*/
public Builder id(@Nullable String id) {
$.id = id;
return this;
}
/**
* @param key A human-readable string that identifies the authenticator.
*
* @return builder
*
*/
public Builder key(@Nullable String key) {
$.key = key;
return this;
}
/**
* @param name Name of the authenticator.
*
* @return builder
*
*/
public Builder name(@Nullable String name) {
$.name = name;
return this;
}
public GetAuthenticatorPlainArgs build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy