All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.storage.blob.implementation.models.EncryptionScope Maven / Gradle / Ivy

There is a newer version: 12.29.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.storage.blob.implementation.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;

/** Parameter group. */
@JacksonXmlRootElement(localName = "EncryptionScope")
@Fluent
public final class EncryptionScope {
    /*
     * Optional. Version 2019-07-07 and later.  Specifies the name of the encryption scope to use to encrypt the data
     * provided in the request. If not specified, encryption is performed with the default account encryption scope.
     * For more information, see Encryption at Rest for Azure Storage Services.
     */
    @JsonProperty(value = "encryptionScope")
    private String encryptionScope;

    /** Creates an instance of EncryptionScope class. */
    public EncryptionScope() {}

    /**
     * Get the encryptionScope property: Optional. Version 2019-07-07 and later. Specifies the name of the encryption
     * scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the
     * default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services.
     *
     * @return the encryptionScope value.
     */
    public String getEncryptionScope() {
        return this.encryptionScope;
    }

    /**
     * Set the encryptionScope property: Optional. Version 2019-07-07 and later. Specifies the name of the encryption
     * scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the
     * default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services.
     *
     * @param encryptionScope the encryptionScope value to set.
     * @return the EncryptionScope object itself.
     */
    public EncryptionScope setEncryptionScope(String encryptionScope) {
        this.encryptionScope = encryptionScope;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy