Interface WebAppBase.UpdateStages.WithUserAssignedManagedServiceIdentityBasedAccess<FluentT>
-
- All Known Subinterfaces:
DeploymentSlot.Update,FunctionApp.Update,FunctionDeploymentSlot.Update,WebApp.Update,WebApp.UpdateStages.WithStartUpCommand,WebAppBase.Update<FluentT>
- Enclosing interface:
- WebAppBase.UpdateStages
public static interface WebAppBase.UpdateStages.WithUserAssignedManagedServiceIdentityBasedAccess<FluentT>The stage of the web app update allowing to add User Assigned (External) Managed Service Identities.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAppBase.Update<FluentT>withExistingUserAssignedManagedServiceIdentity(com.microsoft.azure.management.msi.Identity identity)Specifies an existing user assigned identity to be associated with the web app.WebAppBase.Update<FluentT>withNewUserAssignedManagedServiceIdentity(com.microsoft.azure.management.resources.fluentcore.model.Creatable<com.microsoft.azure.management.msi.Identity> creatableIdentity)Specifies the definition of a not-yet-created user assigned identity to be associated with the web app.
-
-
-
Method Detail
-
withNewUserAssignedManagedServiceIdentity
WebAppBase.Update<FluentT> withNewUserAssignedManagedServiceIdentity(com.microsoft.azure.management.resources.fluentcore.model.Creatable<com.microsoft.azure.management.msi.Identity> creatableIdentity)
Specifies the definition of a not-yet-created user assigned identity to be associated with the web app.- Parameters:
creatableIdentity- a creatable identity definition- Returns:
- the next stage of the definition.
-
withExistingUserAssignedManagedServiceIdentity
WebAppBase.Update<FluentT> withExistingUserAssignedManagedServiceIdentity(com.microsoft.azure.management.msi.Identity identity)
Specifies an existing user assigned identity to be associated with the web app.- Parameters:
identity- the identity- Returns:
- the next stage of the definition.
-
-