ApplicationOperations interface
ApplicationOperations を表すインターフェイス。
メソッド
| create |
特定のサブスクリプションでセキュリティ アプリケーションを作成または更新します。 |
| delete(string, Application |
特定のスコープでアプリケーションを削除する |
| get(string, Application |
applicationId によって要求されたスコープの特定のアプリケーションを取得する |
メソッドの詳細
createOrUpdate(string, Application, ApplicationCreateOrUpdateOptionalParams)
特定のサブスクリプションでセキュリティ アプリケーションを作成または更新します。
function createOrUpdate(applicationId: string, application: Application, options?: ApplicationCreateOrUpdateOptionalParams): Promise<Application>
パラメーター
- applicationId
-
string
セキュリティ アプリケーション キー - 標準アプリケーションの一意キー
- application
- Application
サブスクリプション スコープを介したアプリケーション
オプション パラメーター。
戻り値
Promise<Application>
delete(string, ApplicationDeleteOptionalParams)
特定のスコープでアプリケーションを削除する
function delete(applicationId: string, options?: ApplicationDeleteOptionalParams): Promise<void>
パラメーター
- applicationId
-
string
セキュリティ アプリケーション キー - 標準アプリケーションの一意キー
- options
- ApplicationDeleteOptionalParams
オプション パラメーター。
戻り値
Promise<void>
get(string, ApplicationGetOptionalParams)
applicationId によって要求されたスコープの特定のアプリケーションを取得する
function get(applicationId: string, options?: ApplicationGetOptionalParams): Promise<Application>
パラメーター
- applicationId
-
string
セキュリティ アプリケーション キー - 標準アプリケーションの一意キー
- options
- ApplicationGetOptionalParams
オプション パラメーター。
戻り値
Promise<Application>