Service Fabric Update
Updates a Service Fabric application resource.
Update a Service Fabric application resource with the specified name.
Request
Method | Request URI |
---|---|
PATCH | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applications/{applicationName}?api-version=2017-07-01-preview |
Parameters
Name | Type | Required | Location |
---|---|---|---|
subscriptionId | string | Yes | Path |
resourceGroupName | string | Yes | Path |
clusterName | string | Yes | Path |
applicationName | string | Yes | Path |
api-version | string | Yes | Query |
parameters | ApplicationResourceUpdate | Yes | Body |
subscriptionId
Type: string
Required: Yes
The customer subscription identifier.
resourceGroupName
Type: string
Required: Yes
The name of the resource group.
clusterName
Type: string
Required: Yes
The name of the cluster resource.
applicationName
Type: string
Required: Yes
The name of the application resource.
api-version
Type: string
Required: Yes
Default: 2017-07-01-preview
The version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2017-07-01-preview" for this specification.
parameters
Type: ApplicationResourceUpdate
Required: Yes
The application resource for patch operations.
Responses
HTTP Status Code | Description | Response Schema |
---|---|---|
202 (Accepted) | The request was accepted and the operation will complete asynchronously. |
ApplicationResourceUpdate |
All other status codes | The detailed error response. |
ErrorModel |
Examples
Patch an application
Request
PATCH 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
Body
{
"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,
"metrics": [
{
"name": "metric1",
"reservationCapacity": "1",
"maximumCapacity": "3",
"totalApplicationCapacity": "5"
}
]
}
}
202 Response
Headers
Retry-After: 10
Location: http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/a553eb63-c332-40df-8ace-eb8d34a9b298?api-version=2017-07-01-preview
Body
{
"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/\"636462502180261858\"",
"properties": {
"provisioningState": "Updating",
"typeName": "myAppType",
"typeVersion": "1.0",
"removeApplicationCapacity": false,
"metrics": [
{
"name": "metric1",
"reservationCapacity": "1",
"maximumCapacity": "3",
"totalApplicationCapacity": "5"
}
]
}
}