Aracılığıyla paylaş


StorageAccount.UpdateStages.WithEncryption Interface

public static interface StorageAccount.UpdateStages.WithEncryption

The stage of the storage account update allowing to configure encryption settings.

Method Summary

Modifier and Type Method and Description
abstract Update withBlobEncryption()

Enables encryption for blob service.

abstract Update withEncryption()

Deprecated

use WithEncryption#withBlobEncryption() instead.

Enables encryption for blob service.

abstract Update withEncryptionKeyFromKeyVault(String keyVaultUri, String keyName, String keyVersion)

Specifies the KeyVault key to be used as key for encryption.

abstract Update withFileEncryption()

Enables encryption for file service.

abstract Update withoutBlobEncryption()

Disables encryption for blob service.

abstract Update withoutEncryption()

Deprecated

use WithEncryption#withoutBlobEncryption() instead.

Disables encryption for blob service.

abstract Update withoutFileEncryption()

Disables encryption for file service.

Method Details

withBlobEncryption

public abstract StorageAccount.Update withBlobEncryption()

Enables encryption for blob service.

Returns:

the next stage of storage account update

withEncryption


public abstract StorageAccount.Update withEncryption()

Deprecated

use WithEncryption#withBlobEncryption() instead.

Enables encryption for blob service.

Returns:

the next stage of storage account update

withEncryptionKeyFromKeyVault

public abstract StorageAccount.Update withEncryptionKeyFromKeyVault(String keyVaultUri, String keyName, String keyVersion)

Specifies the KeyVault key to be used as key for encryption.

Parameters:

keyVaultUri - the uri to KeyVault
keyName - the KeyVault key name
keyVersion - the KeyVault key version

Returns:

the next stage of storage account update

withFileEncryption

public abstract StorageAccount.Update withFileEncryption()

Enables encryption for file service.

Returns:

he next stage of storage account update

withoutBlobEncryption

public abstract StorageAccount.Update withoutBlobEncryption()

Disables encryption for blob service.

Returns:

the next stage of storage account update

withoutEncryption


public abstract StorageAccount.Update withoutEncryption()

Deprecated

use WithEncryption#withoutBlobEncryption() instead.

Disables encryption for blob service.

Returns:

the next stage of storage account update

withoutFileEncryption

public abstract StorageAccount.Update withoutFileEncryption()

Disables encryption for file service.

Returns:

he next stage of storage account update

Applies to