com.azure.resourcemanager.storage.models.EncryptionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
/**
* A service that allows server-side encryption to be used.
*/
@Fluent
public final class EncryptionService {
/*
* A boolean indicating whether or not the service encrypts the data as it is stored. Encryption at rest is enabled
* by default today and cannot be disabled.
*/
@JsonProperty(value = "enabled")
private Boolean enabled;
/*
* Gets a rough estimate of the date/time when the encryption was last enabled by the user. Data is encrypted at
* rest by default today and cannot be disabled.
*/
@JsonProperty(value = "lastEnabledTime", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime lastEnabledTime;
/*
* Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped
* encryption key will be used. 'Service' key type implies that a default service key is used.
*/
@JsonProperty(value = "keyType")
private KeyType keyType;
/**
* Creates an instance of EncryptionService class.
*/
public EncryptionService() {
}
/**
* Get the enabled property: A boolean indicating whether or not the service encrypts the data as it is stored.
* Encryption at rest is enabled by default today and cannot be disabled.
*
* @return the enabled value.
*/
public Boolean enabled() {
return this.enabled;
}
/**
* Set the enabled property: A boolean indicating whether or not the service encrypts the data as it is stored.
* Encryption at rest is enabled by default today and cannot be disabled.
*
* @param enabled the enabled value to set.
* @return the EncryptionService object itself.
*/
public EncryptionService withEnabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* Get the lastEnabledTime property: Gets a rough estimate of the date/time when the encryption was last enabled by
* the user. Data is encrypted at rest by default today and cannot be disabled.
*
* @return the lastEnabledTime value.
*/
public OffsetDateTime lastEnabledTime() {
return this.lastEnabledTime;
}
/**
* Get the keyType property: Encryption key type to be used for the encryption service. 'Account' key type implies
* that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is
* used.
*
* @return the keyType value.
*/
public KeyType keyType() {
return this.keyType;
}
/**
* Set the keyType property: Encryption key type to be used for the encryption service. 'Account' key type implies
* that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is
* used.
*
* @param keyType the keyType value to set.
* @return the EncryptionService object itself.
*/
public EncryptionService withKeyType(KeyType keyType) {
this.keyType = keyType;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy