BlobContainerPermissions Classe
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Representa as permissões para um contêiner.
public sealed class BlobContainerPermissions
type BlobContainerPermissions = class
Public NotInheritable Class BlobContainerPermissions
- Herança
-
BlobContainerPermissions
Exemplos
// If we want to set the permissions on a container, first we should get the existing permissions.
// This is important, because "SetPermissions" uses "replace" semantics, not "merge" semantics.
// If we skipped this step and just created a new BlobContainerPermissions object locally,
// any existing policies would be deleted.
BlobContainerPermissions permissions = containerWithSharedKey.GetPermissions();
// Create a policy with read access.
SharedAccessBlobPolicy policy = new SharedAccessBlobPolicy()
{
SharedAccessExpiryTime = DateTimeOffset.UtcNow.AddMinutes(30),
Permissions = SharedAccessBlobPermissions.Read
};
// Once uploaded, these permissions will allow SAS tokens created with the named policy
// to read from the container for 30 minutes, as specified in the policy.
// This only applies to SAS tokens created referencing this specific policy name on this specific container.
permissions.SharedAccessPolicies[policyName] = policy;
// This call actually uploads the permissions to the Azure Storage Service.
// Note that this can take up to 30 seconds after the call completes to take affect.
containerWithSharedKey.SetPermissions(permissions);
Construtores
BlobContainerPermissions() |
Inicializa uma nova instância da classe BlobContainerPermissions. |
Propriedades
PublicAccess |
Obtém ou define a configuração de acesso público para o contêiner. |
SharedAccessPolicies |
Obtém o conjunto de políticas de acesso compartilhado para o contêiner. |
Aplica-se a
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.
Azure SDK for .NET