
com.pulumi.azurenative.confluent.outputs.InvitationRecordResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.confluent.outputs;
import com.pulumi.azurenative.confluent.outputs.MetadataEntityResponse;
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 InvitationRecordResponse {
/**
* @return Accepted date time of the invitation
*
*/
private @Nullable String acceptedAt;
/**
* @return Auth type of the user
*
*/
private @Nullable String authType;
/**
* @return Email of the user
*
*/
private @Nullable String email;
/**
* @return Expiration date time of the invitation
*
*/
private @Nullable String expiresAt;
/**
* @return Id of the invitation
*
*/
private @Nullable String id;
/**
* @return Type of account
*
*/
private @Nullable String kind;
/**
* @return Metadata of the record
*
*/
private @Nullable MetadataEntityResponse metadata;
/**
* @return Status of the invitation
*
*/
private @Nullable String status;
private InvitationRecordResponse() {}
/**
* @return Accepted date time of the invitation
*
*/
public Optional acceptedAt() {
return Optional.ofNullable(this.acceptedAt);
}
/**
* @return Auth type of the user
*
*/
public Optional authType() {
return Optional.ofNullable(this.authType);
}
/**
* @return Email of the user
*
*/
public Optional email() {
return Optional.ofNullable(this.email);
}
/**
* @return Expiration date time of the invitation
*
*/
public Optional expiresAt() {
return Optional.ofNullable(this.expiresAt);
}
/**
* @return Id of the invitation
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* @return Type of account
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Metadata of the record
*
*/
public Optional metadata() {
return Optional.ofNullable(this.metadata);
}
/**
* @return Status of the invitation
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(InvitationRecordResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String acceptedAt;
private @Nullable String authType;
private @Nullable String email;
private @Nullable String expiresAt;
private @Nullable String id;
private @Nullable String kind;
private @Nullable MetadataEntityResponse metadata;
private @Nullable String status;
public Builder() {}
public Builder(InvitationRecordResponse defaults) {
Objects.requireNonNull(defaults);
this.acceptedAt = defaults.acceptedAt;
this.authType = defaults.authType;
this.email = defaults.email;
this.expiresAt = defaults.expiresAt;
this.id = defaults.id;
this.kind = defaults.kind;
this.metadata = defaults.metadata;
this.status = defaults.status;
}
@CustomType.Setter
public Builder acceptedAt(@Nullable String acceptedAt) {
this.acceptedAt = acceptedAt;
return this;
}
@CustomType.Setter
public Builder authType(@Nullable String authType) {
this.authType = authType;
return this;
}
@CustomType.Setter
public Builder email(@Nullable String email) {
this.email = email;
return this;
}
@CustomType.Setter
public Builder expiresAt(@Nullable String expiresAt) {
this.expiresAt = expiresAt;
return this;
}
@CustomType.Setter
public Builder id(@Nullable String id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder metadata(@Nullable MetadataEntityResponse metadata) {
this.metadata = metadata;
return this;
}
@CustomType.Setter
public Builder status(@Nullable String status) {
this.status = status;
return this;
}
public InvitationRecordResponse build() {
final var _resultValue = new InvitationRecordResponse();
_resultValue.acceptedAt = acceptedAt;
_resultValue.authType = authType;
_resultValue.email = email;
_resultValue.expiresAt = expiresAt;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.metadata = metadata;
_resultValue.status = status;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy