Interface WebAppBase.UpdateStages.WithUserAssignedManagedServiceIdentityBasedAccess<FluentT>
-
- All Known Subinterfaces:
DeploymentSlotBase.Update<FluentT>,FunctionApp.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(Identity identity)Specifies an existing user assigned identity to be associated with the web app.WebAppBase.Update<FluentT>withNewUserAssignedManagedServiceIdentity(Creatable<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(Creatable<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(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.
-
-