io.fabric8.openshift.api.model.installer.gcp.v1.EncryptionKeyReference Maven / Gradle / Ivy
The newest version!
package io.fabric8.openshift.api.model.installer.gcp.v1;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
import io.fabric8.kubernetes.api.model.ContainerPort;
import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
import io.fabric8.kubernetes.api.model.Volume;
import io.fabric8.kubernetes.api.model.VolumeMount;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.experimental.Accessors;
/**
* EncryptionKeyReference describes the encryptionKey to use for a disk's encryption.
*/
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"kmsKey",
"kmsKeyServiceAccount"
})
@ToString
@EqualsAndHashCode
@Accessors(prefix = {
"_",
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
@BuildableReference(ObjectMeta.class),
@BuildableReference(LabelSelector.class),
@BuildableReference(Container.class),
@BuildableReference(PodTemplateSpec.class),
@BuildableReference(ResourceRequirements.class),
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
@BuildableReference(PersistentVolumeClaim.class),
@BuildableReference(EnvVar.class),
@BuildableReference(ContainerPort.class),
@BuildableReference(Volume.class),
@BuildableReference(VolumeMount.class)
})
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator")
public class EncryptionKeyReference implements Editable, KubernetesResource
{
@JsonProperty("kmsKey")
private KMSKeyReference kmsKey;
@JsonProperty("kmsKeyServiceAccount")
private String kmsKeyServiceAccount;
@JsonIgnore
private Map additionalProperties = new LinkedHashMap();
/**
* No args constructor for use in serialization
*/
public EncryptionKeyReference() {
}
public EncryptionKeyReference(KMSKeyReference kmsKey, String kmsKeyServiceAccount) {
super();
this.kmsKey = kmsKey;
this.kmsKeyServiceAccount = kmsKeyServiceAccount;
}
/**
* EncryptionKeyReference describes the encryptionKey to use for a disk's encryption.
*/
@JsonProperty("kmsKey")
public KMSKeyReference getKmsKey() {
return kmsKey;
}
/**
* EncryptionKeyReference describes the encryptionKey to use for a disk's encryption.
*/
@JsonProperty("kmsKey")
public void setKmsKey(KMSKeyReference kmsKey) {
this.kmsKey = kmsKey;
}
/**
* KMSKeyServiceAccount is the service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. See https://cloud.google.com/compute/docs/access/service-accounts#compute_engine_service_account for details on the default service account.
*/
@JsonProperty("kmsKeyServiceAccount")
public String getKmsKeyServiceAccount() {
return kmsKeyServiceAccount;
}
/**
* KMSKeyServiceAccount is the service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. See https://cloud.google.com/compute/docs/access/service-accounts#compute_engine_service_account for details on the default service account.
*/
@JsonProperty("kmsKeyServiceAccount")
public void setKmsKeyServiceAccount(String kmsKeyServiceAccount) {
this.kmsKeyServiceAccount = kmsKeyServiceAccount;
}
@JsonIgnore
public EncryptionKeyReferenceBuilder edit() {
return new EncryptionKeyReferenceBuilder(this);
}
@JsonIgnore
public EncryptionKeyReferenceBuilder toBuilder() {
return edit();
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
public void setAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy