com.pulumi.googlenative.cloudkms.v1.outputs.CryptoKeyVersionTemplateResponse 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.googlenative.cloudkms.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CryptoKeyVersionTemplateResponse {
/**
* @return Algorithm to use when creating a CryptoKeyVersion based on this template. For backwards compatibility, GOOGLE_SYMMETRIC_ENCRYPTION is implied if both this field is omitted and CryptoKey.purpose is ENCRYPT_DECRYPT.
*
*/
private String algorithm;
/**
* @return ProtectionLevel to use when creating a CryptoKeyVersion based on this template. Immutable. Defaults to SOFTWARE.
*
*/
private String protectionLevel;
private CryptoKeyVersionTemplateResponse() {}
/**
* @return Algorithm to use when creating a CryptoKeyVersion based on this template. For backwards compatibility, GOOGLE_SYMMETRIC_ENCRYPTION is implied if both this field is omitted and CryptoKey.purpose is ENCRYPT_DECRYPT.
*
*/
public String algorithm() {
return this.algorithm;
}
/**
* @return ProtectionLevel to use when creating a CryptoKeyVersion based on this template. Immutable. Defaults to SOFTWARE.
*
*/
public String protectionLevel() {
return this.protectionLevel;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CryptoKeyVersionTemplateResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String algorithm;
private String protectionLevel;
public Builder() {}
public Builder(CryptoKeyVersionTemplateResponse defaults) {
Objects.requireNonNull(defaults);
this.algorithm = defaults.algorithm;
this.protectionLevel = defaults.protectionLevel;
}
@CustomType.Setter
public Builder algorithm(String algorithm) {
this.algorithm = Objects.requireNonNull(algorithm);
return this;
}
@CustomType.Setter
public Builder protectionLevel(String protectionLevel) {
this.protectionLevel = Objects.requireNonNull(protectionLevel);
return this;
}
public CryptoKeyVersionTemplateResponse build() {
final var o = new CryptoKeyVersionTemplateResponse();
o.algorithm = algorithm;
o.protectionLevel = protectionLevel;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy