Service Fabric のアプリケーションの種類のバージョンの作成

Service Fabric アプリケーションの種類のバージョン リソースを作成または更新します。

指定した名前で Service Fabric アプリケーションの種類のバージョン リソースを作成または更新します。

Request

Method 要求 URI
PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applicationTypes/{applicationTypeName}/versions/{version}?api-version=2017-07-01-preview

パラメーター

名前 Type 必須 場所
subscriptionId string はい パス
resourceGroupName string はい パス
clusterName string はい パス
applicationTypeName string はい パス
version string はい パス
api-version string はい クエリ
parameters ApplicationTypeVersionResource はい Body

subscriptionId

: string
必須: はい

顧客サブスクリプション識別子。


resourceGroupName

: string
必須: はい

リソース グループの名前。


clusterName

: string
必須: はい

クラスター リソースの名前。


applicationTypeName

: string
必須: はい

アプリケーションの種類名リソースの名前。


version

: string
必須: はい

アプリケーションの種類のバージョン。


api-version

: string
必須: はい
既定値: 2017-07-01-preview

Service Fabric リソース プロバイダー API のバージョン。 これは必須のパラメーターであり、この仕様の値は "2017-07-01-preview" である必要があります。


parameters

種類: ApplicationTypeVersionResource
必須: はい

アプリケーションの種類のバージョン リソース。

応答

HTTP 状態コード 説明 応答スキーマ
202 (承認済み) 要求が受け入れられ、操作は非同期的に完了します。
ApplicationTypeVersionResource
その他のすべての状態コード 詳細なエラー応答。
ErrorModel

使用例

アプリケーションの種類のバージョンを配置する

要求

PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0?api-version=2017-07-01-preview
本文
{
  "type": "versions",
  "location": "eastus",
  "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0",
  "name": "myCluster",
  "tags": {},
  "properties": {
    "appPackageUrl": "http://fakelink.test.com/MyAppType"
  }
}

202 応答

ヘッダー
Retry-After: 10
Location: http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/e2413c7e-d51b-40ac-8155-bc85bf8ae856?api-version=2017-07-01-preview
本文
{
  "type": "versions",
  "location": "eastus",
  "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0",
  "name": "myCluster",
  "tags": {},
  "etag": "W/\"636462502176040417\"",
  "properties": {
    "provisioningState": "Updating",
    "appPackageUrl": "http://fakelink.test.com/MyAppType",
    "defaultParameterList": {}
  }
}