Service Fabric Erstellen
Erstellt oder aktualisiert eine Service Fabric-Anwendungsressource.
Erstellen oder aktualisieren Sie eine Service Fabric-Anwendungsressource mit dem angegebenen Namen.
Anforderung
Methode | Anforderungs-URI |
---|---|
PUT | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applications/{applicationName}?api-version=2017-07-01-preview |
Parameter
Name | type | Erforderlich | Standort |
---|---|---|---|
subscriptionId | Zeichenfolge | Ja | Pfad |
resourceGroupName | Zeichenfolge | Ja | Pfad |
clusterName | Zeichenfolge | Ja | Pfad |
applicationName | Zeichenfolge | Ja | Pfad |
api-version | Zeichenfolge | Ja | Abfrage |
parameters | ApplicationResource | Ja | Body |
subscriptionId
Typ: Zeichenfolge
Erforderlich: Ja
Der Bezeichner des Kundenabonnements.
resourceGroupName
Typ: Zeichenfolge
Erforderlich: Ja
Der Name der Ressourcengruppe.
clusterName
Typ: Zeichenfolge
Erforderlich: Ja
Der Name der Clusterressource.
applicationName
Typ: Zeichenfolge
Erforderlich: Ja
Der Name der Anwendungsressource.
api-version
Typ: Zeichenfolge
Erforderlich: Ja
Standardeinstellung: 2017-07-01-preview
Die Version der Service Fabric-Ressourcenanbieter-API. Dies ist ein erforderlicher Parameter, und der Wert muss für diese Spezifikation "2017-07-01-preview" sein.
parameters
Typ: ApplicationResource
Erforderlich: Ja
Die Anwendungsressource.
Antworten
HTTP-Statuscode | BESCHREIBUNG | Antwortschema |
---|---|---|
202 (Akzeptiert) | Die Anforderung wurde akzeptiert, und der Vorgang wird asynchron abgeschlossen. |
ApplicationResource |
Alle anderen status Codes | Die detaillierte Fehlerantwort. |
ErrorModel |
Beispiele
Erstellen einer Anwendung mit Mininumparametern
Anforderung
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp?api-version=2017-07-01-preview
Text
{
"type": "applications",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp",
"name": "myCluster",
"tags": {},
"properties": {
"typeName": "myAppType",
"typeVersion": "1.0",
"removeApplicationCapacity": false
}
}
Antwort 202
Header
Retry-After: 10
Location: http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/5dce62ce-439b-47af-81d8-99ab14708e91?api-version=2017-07-01-preview
Text
{
"type": "applications",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp",
"name": "myCluster",
"tags": {},
"etag": "W/\"636462502180261857\"",
"properties": {
"provisioningState": "Updating",
"typeName": "myAppType",
"typeVersion": "1.0",
"removeApplicationCapacity": false
}
}
Erstellen einer Anwendung mit maximalen Parametern
Anforderung
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp?api-version=2017-07-01-preview
Text
{
"type": "applications",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp",
"name": "myCluster",
"tags": {},
"properties": {
"typeName": "myAppType",
"typeVersion": "1.0",
"parameters": {
"param1": "value1"
},
"upgradePolicy": {
"applicationHealthPolicy": {
"considerWarningAsError": true,
"maxPercentUnhealthyDeployedApplications": "0",
"defaultServiceTypeHealthPolicy": {
"maxPercentUnhealthyServices": "0",
"maxPercentUnhealthyPartitionsPerService": "0",
"maxPercentUnhealthyReplicasPerPartition": "0"
}
},
"rollingUpgradeMonitoringPolicy": {
"failureAction": "Rollback",
"healthCheckRetryTimeout": "00:10:00",
"healthCheckWaitDuration": "00:02:00",
"healthCheckStableDuration": "00:05:00",
"upgradeDomainTimeout": "1.06:00:00",
"upgradeTimeout": "01:00:00"
},
"upgradeReplicaSetCheckTimeout": "01:00:00",
"forceRestart": false
},
"maximumNodes": "3",
"minimumNodes": "1",
"removeApplicationCapacity": false,
"metrics": [
{
"name": "metric1",
"reservationCapacity": "1",
"maximumCapacity": "3",
"totalApplicationCapacity": "5"
}
]
}
}
Antwort 202
Header
Retry-After: 10
Location: http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/9c2ce367-47ea-43de-b69e-c5a423da4557?api-version=2017-07-01-preview
Text
{
"type": "applications",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp",
"name": "myCluster",
"tags": {},
"etag": "W/\"636462502180261859\"",
"properties": {
"provisioningState": "Updating",
"typeName": "myAppType",
"typeVersion": "1.0",
"parameters": {
"param1": "value1"
},
"upgradePolicy": {
"applicationHealthPolicy": {
"considerWarningAsError": true,
"maxPercentUnhealthyDeployedApplications": "0",
"defaultServiceTypeHealthPolicy": {
"maxPercentUnhealthyServices": "0",
"maxPercentUnhealthyPartitionsPerService": "0",
"maxPercentUnhealthyReplicasPerPartition": "0"
}
},
"rollingUpgradeMonitoringPolicy": {
"failureAction": "Rollback",
"healthCheckRetryTimeout": "00:10:00",
"healthCheckWaitDuration": "00:02:00",
"healthCheckStableDuration": "00:05:00",
"upgradeDomainTimeout": "1.06:00:00",
"upgradeTimeout": "01:00:00"
},
"upgradeReplicaSetCheckTimeout": "01:00:00",
"forceRestart": false
},
"maximumNodes": "3",
"minimumNodes": "1",
"removeApplicationCapacity": false,
"metrics": [
{
"name": "metric1",
"reservationCapacity": "1",
"maximumCapacity": "3",
"totalApplicationCapacity": "5"
}
]
}
}