ApplicationOperations interface
Interface representing a Application operations.
Properties
| create |
Creates or update a security application on the given subscription. |
| delete | Delete an Application over a given scope |
| get | Get a specific application for the requested scope by applicationId |
Property Details
createOrUpdate
Creates or update a security application on the given subscription.
createOrUpdate: (applicationId: string, application: Application, options?: ApplicationCreateOrUpdateOptionalParams) => Promise<Application>
Property Value
(applicationId: string, application: Application, options?: ApplicationCreateOrUpdateOptionalParams) => Promise<Application>
delete
Delete an Application over a given scope
delete: (applicationId: string, options?: ApplicationDeleteOptionalParams) => Promise<void>
Property Value
(applicationId: string, options?: ApplicationDeleteOptionalParams) => Promise<void>
get
Get a specific application for the requested scope by applicationId
get: (applicationId: string, options?: ApplicationGetOptionalParams) => Promise<Application>
Property Value
(applicationId: string, options?: ApplicationGetOptionalParams) => Promise<Application>