Permissions Class

  • java.lang.Object
    • com.microsoft.azure.management.keyvault.Permissions

public class Permissions

Permissions the identity has for keys, secrets, certificates and storage.

Constructor Summary

Constructor Description
Permissions()

Method Summary

Modifier and Type Method and Description
java.util.List<CertificatePermissions> certificates()

Get the certificates value.

java.util.List<KeyPermissions> keys()

Get the keys value.

java.util.List<SecretPermissions> secrets()

Get the secrets value.

java.util.List<StoragePermissions> storage()

Get the storage value.

Permissions withCertificates(List<CertificatePermissions> certificates)

Set the certificates value.

Permissions withKeys(List<KeyPermissions> keys)

Set the keys value.

Permissions withSecrets(List<SecretPermissions> secrets)

Set the secrets value.

Permissions withStorage(List<StoragePermissions> storage)

Set the storage value.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

Permissions

public Permissions()

Method Details

certificates

public List certificates()

Get the certificates value.

Returns:

the certificates value

keys

public List keys()

Get the keys value.

Returns:

the keys value

secrets

public List secrets()

Get the secrets value.

Returns:

the secrets value

storage

public List storage()

Get the storage value.

Returns:

the storage value

withCertificates

public Permissions withCertificates(List certificates)

Set the certificates value.

Parameters:

certificates - the certificates value to set

Returns:

the Permissions object itself.

withKeys

public Permissions withKeys(List keys)

Set the keys value.

Parameters:

keys - the keys value to set

Returns:

the Permissions object itself.

withSecrets

public Permissions withSecrets(List secrets)

Set the secrets value.

Parameters:

secrets - the secrets value to set

Returns:

the Permissions object itself.

withStorage

public Permissions withStorage(List storage)

Set the storage value.

Parameters:

storage - the storage value to set

Returns:

the Permissions object itself.

Applies to