KeyVaultAccessControlClient.CreateOrUpdateRoleDefinitionAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateOrUpdateRoleDefinitionAsync(CreateOrUpdateRoleDefinitionOptions, CancellationToken) |
Creates or updates a role definition. |
CreateOrUpdateRoleDefinitionAsync(KeyVaultRoleScope, Nullable<Guid>, CancellationToken) |
Creates or updates a role definition. If the named role definition is already defined it will be updated. |
CreateOrUpdateRoleDefinitionAsync(CreateOrUpdateRoleDefinitionOptions, CancellationToken)
Creates or updates a role definition.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Administration.KeyVaultRoleDefinition>> CreateOrUpdateRoleDefinitionAsync (Azure.Security.KeyVault.Administration.CreateOrUpdateRoleDefinitionOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdateRoleDefinitionAsync : Azure.Security.KeyVault.Administration.CreateOrUpdateRoleDefinitionOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Administration.KeyVaultRoleDefinition>>
override this.CreateOrUpdateRoleDefinitionAsync : Azure.Security.KeyVault.Administration.CreateOrUpdateRoleDefinitionOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Administration.KeyVaultRoleDefinition>>
Public Overridable Function CreateOrUpdateRoleDefinitionAsync (options As CreateOrUpdateRoleDefinitionOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultRoleDefinition))
Parameters
An instance of CreateOrUpdateRoleDefinitionOptions that define parameters for creating a role definition.
- cancellationToken
- CancellationToken
A CancellationToken controlling the request lifetime.
Returns
A Task<TResult> representing the result of the asynchronous operation.
Exceptions
options
is null.
Applies to
CreateOrUpdateRoleDefinitionAsync(KeyVaultRoleScope, Nullable<Guid>, CancellationToken)
Creates or updates a role definition. If the named role definition is already defined it will be updated.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Administration.KeyVaultRoleDefinition>> CreateOrUpdateRoleDefinitionAsync (Azure.Security.KeyVault.Administration.KeyVaultRoleScope roleScope, Guid? roleDefinitionName = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdateRoleDefinitionAsync : Azure.Security.KeyVault.Administration.KeyVaultRoleScope * Nullable<Guid> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Administration.KeyVaultRoleDefinition>>
override this.CreateOrUpdateRoleDefinitionAsync : Azure.Security.KeyVault.Administration.KeyVaultRoleScope * Nullable<Guid> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Administration.KeyVaultRoleDefinition>>
Public Overridable Function CreateOrUpdateRoleDefinitionAsync (roleScope As KeyVaultRoleScope, Optional roleDefinitionName As Nullable(Of Guid) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultRoleDefinition))
Parameters
- roleScope
- KeyVaultRoleScope
The KeyVaultRoleScope to which the definition applies.
The unique role definition name. If null a unique role definition name will be generated.
- cancellationToken
- CancellationToken
A CancellationToken controlling the request lifetime.
Returns
A Task<TResult> representing the result of the asynchronous operation.
Applies to
Azure SDK for .NET