
com.pulumi.azurenative.web.outputs.SiteMachineKeyResponse 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.web.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 SiteMachineKeyResponse {
/**
* @return Algorithm used for decryption.
*
*/
private @Nullable String decryption;
/**
* @return Decryption key.
*
*/
private @Nullable String decryptionKey;
/**
* @return MachineKey validation.
*
*/
private @Nullable String validation;
/**
* @return Validation key.
*
*/
private @Nullable String validationKey;
private SiteMachineKeyResponse() {}
/**
* @return Algorithm used for decryption.
*
*/
public Optional decryption() {
return Optional.ofNullable(this.decryption);
}
/**
* @return Decryption key.
*
*/
public Optional decryptionKey() {
return Optional.ofNullable(this.decryptionKey);
}
/**
* @return MachineKey validation.
*
*/
public Optional validation() {
return Optional.ofNullable(this.validation);
}
/**
* @return Validation key.
*
*/
public Optional validationKey() {
return Optional.ofNullable(this.validationKey);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SiteMachineKeyResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String decryption;
private @Nullable String decryptionKey;
private @Nullable String validation;
private @Nullable String validationKey;
public Builder() {}
public Builder(SiteMachineKeyResponse defaults) {
Objects.requireNonNull(defaults);
this.decryption = defaults.decryption;
this.decryptionKey = defaults.decryptionKey;
this.validation = defaults.validation;
this.validationKey = defaults.validationKey;
}
@CustomType.Setter
public Builder decryption(@Nullable String decryption) {
this.decryption = decryption;
return this;
}
@CustomType.Setter
public Builder decryptionKey(@Nullable String decryptionKey) {
this.decryptionKey = decryptionKey;
return this;
}
@CustomType.Setter
public Builder validation(@Nullable String validation) {
this.validation = validation;
return this;
}
@CustomType.Setter
public Builder validationKey(@Nullable String validationKey) {
this.validationKey = validationKey;
return this;
}
public SiteMachineKeyResponse build() {
final var _resultValue = new SiteMachineKeyResponse();
_resultValue.decryption = decryption;
_resultValue.decryptionKey = decryptionKey;
_resultValue.validation = validation;
_resultValue.validationKey = validationKey;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy