AccessPolicyEntry Class

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

public class AccessPolicyEntry

An identity that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.

Constructor Summary

Constructor Description
AccessPolicyEntry()

Method Summary

Modifier and Type Method and Description
java.util.UUID applicationId()

Get the applicationId value.

java.lang.String objectId()

Get the objectId value.

Permissions permissions()

Get the permissions value.

java.util.UUID tenantId()

Get the tenantId value.

AccessPolicyEntry withApplicationId(UUID applicationId)

Set the applicationId value.

AccessPolicyEntry withObjectId(String objectId)

Set the objectId value.

AccessPolicyEntry withPermissions(Permissions permissions)

Set the permissions value.

AccessPolicyEntry withTenantId(UUID tenantId)

Set the tenantId 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

AccessPolicyEntry

public AccessPolicyEntry()

Method Details

applicationId

public UUID applicationId()

Get the applicationId value.

Returns:

the applicationId value

objectId

public String objectId()

Get the objectId value.

Returns:

the objectId value

permissions

public Permissions permissions()

Get the permissions value.

Returns:

the permissions value

tenantId

public UUID tenantId()

Get the tenantId value.

Returns:

the tenantId value

withApplicationId

public AccessPolicyEntry withApplicationId(UUID applicationId)

Set the applicationId value.

Parameters:

applicationId - the applicationId value to set

Returns:

the AccessPolicyEntry object itself.

withObjectId

public AccessPolicyEntry withObjectId(String objectId)

Set the objectId value.

Parameters:

objectId - the objectId value to set

Returns:

the AccessPolicyEntry object itself.

withPermissions

public AccessPolicyEntry withPermissions(Permissions permissions)

Set the permissions value.

Parameters:

permissions - the permissions value to set

Returns:

the AccessPolicyEntry object itself.

withTenantId

public AccessPolicyEntry withTenantId(UUID tenantId)

Set the tenantId value.

Parameters:

tenantId - the tenantId value to set

Returns:

the AccessPolicyEntry object itself.

Applies to