Backend - Update
Updates an existing backend.
PATCH https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}?api-version=2024-05-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
backend
|
path | True |
string |
Identifier of the Backend entity. Must be unique in the current API Management service instance. |
resource
|
path | True |
string |
The name of the resource group. The name is case insensitive. |
service
|
path | True |
string |
The name of the API Management service. Regex pattern: |
subscription
|
path | True |
string uuid |
The ID of the target subscription. The value must be an UUID. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Request Header
Name | Required | Type | Description |
---|---|---|---|
If-Match | True |
string |
ETag of the Entity. ETag should match the current entity state from the header response of the GET request or it should be * for unconditional update. |
Request Body
Name | Type | Description |
---|---|---|
properties.circuitBreaker |
Backend Circuit Breaker Configuration |
|
properties.credentials |
Backend Credentials Contract Properties |
|
properties.description |
string |
Backend Description. |
properties.pool | ||
properties.properties |
Backend Properties contract |
|
properties.protocol |
Backend communication protocol. |
|
properties.proxy |
Backend gateway Contract Properties |
|
properties.resourceId |
string |
Management Uri of the Resource in External System. This URL can be the Arm Resource Id of Logic Apps, Function Apps or API Apps. |
properties.title |
string |
Backend Title. |
properties.tls |
Backend TLS Properties |
|
properties.type |
Type of the backend. A backend can be either Single or Pool. |
|
properties.url |
string |
Runtime Url of the Backend. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
The existing backend was successfully updated. Headers ETag: string |
|
Other Status Codes |
Error response describing why the operation failed. |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
ApiManagementUpdateBackend
Sample request
PATCH https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/proxybackend?api-version=2024-05-01
{
"properties": {
"description": "description5308",
"tls": {
"validateCertificateChain": false,
"validateCertificateName": true
}
}
}
Sample response
{
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/proxybackend",
"type": "Microsoft.ApiManagement/service/backends",
"name": "proxybackend",
"properties": {
"description": "description5308",
"url": "https://backendname2644/",
"protocol": "http",
"credentials": {
"query": {
"sv": [
"xx",
"bb",
"cc"
]
},
"header": {
"x-my-1": [
"val1",
"val2"
]
},
"authorization": {
"scheme": "Basic",
"parameter": "opensesma"
}
},
"proxy": {
"url": "http://192.168.1.1:8080",
"username": "Contoso\\admin",
"password": "<password>"
},
"tls": {
"validateCertificateChain": false,
"validateCertificateName": true
}
}
}
Definitions
Name | Description |
---|---|
Backend |
Authorization header information. |
Backend |
The configuration of the backend circuit breaker |
Backend |
Backend details. |
Backend |
Details of the Credentials used to connect to Backend. |
Backend |
Backend pool service information |
Backend |
Properties specific to the Backend Type. |
Backend |
Backend communication protocol. |
Backend |
Details of the Backend WebProxy Server to use in the Request to Backend. |
Backend |
Properties of the Service Fabric Type Backend. |
Backend |
Properties controlling TLS Certificate Validation. |
Backend |
Type of the backend. A backend can be either Single or Pool. |
Backend |
Backend update parameters. |
Circuit |
The trip conditions of the circuit breaker |
Circuit |
Rule configuration to trip the backend. |
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Failure |
The failure http status code range |
Pool | |
X509Certificate |
Properties of server X509Names. |
BackendAuthorizationHeaderCredentials
Authorization header information.
Name | Type | Description |
---|---|---|
parameter |
string |
Authentication Parameter value. |
scheme |
string |
Authentication Scheme name. |
BackendCircuitBreaker
The configuration of the backend circuit breaker
Name | Type | Description |
---|---|---|
rules |
The rules for tripping the backend. |
BackendContract
Backend details.
Name | Type | Description |
---|---|---|
id |
string |
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name |
string |
The name of the resource |
properties.circuitBreaker |
Backend Circuit Breaker Configuration |
|
properties.credentials |
Backend Credentials Contract Properties |
|
properties.description |
string |
Backend Description. |
properties.pool | ||
properties.properties |
Backend Properties contract |
|
properties.protocol |
Backend communication protocol. |
|
properties.proxy |
Backend gateway Contract Properties |
|
properties.resourceId |
string |
Management Uri of the Resource in External System. This URL can be the Arm Resource Id of Logic Apps, Function Apps or API Apps. |
properties.title |
string |
Backend Title. |
properties.tls |
Backend TLS Properties |
|
properties.type |
Type of the backend. A backend can be either Single or Pool. |
|
properties.url |
string |
Runtime Url of the Backend. |
type |
string |
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
BackendCredentialsContract
Details of the Credentials used to connect to Backend.
Name | Type | Description |
---|---|---|
authorization |
Authorization header authentication |
|
certificate |
string[] |
List of Client Certificate Thumbprints. Will be ignored if certificatesIds are provided. |
certificateIds |
string[] |
List of Client Certificate Ids. |
header |
object |
Header Parameter description. |
query |
object |
Query Parameter description. |
BackendPoolItem
Backend pool service information
Name | Type | Description |
---|---|---|
id |
string |
The unique ARM id of the backend entity. The ARM id should refer to an already existing backend entity. |
priority |
integer |
The priority of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified. |
weight |
integer |
The weight of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified. |
BackendProperties
Properties specific to the Backend Type.
Name | Type | Description |
---|---|---|
serviceFabricCluster |
Backend Service Fabric Cluster Properties |
BackendProtocol
Backend communication protocol.
Name | Type | Description |
---|---|---|
http |
string |
The Backend is a RESTful service. |
soap |
string |
The Backend is a SOAP service. |
BackendProxyContract
Details of the Backend WebProxy Server to use in the Request to Backend.
Name | Type | Description |
---|---|---|
password |
string |
Password to connect to the WebProxy Server |
url |
string |
WebProxy Server AbsoluteUri property which includes the entire URI stored in the Uri instance, including all fragments and query strings. |
username |
string |
Username to connect to the WebProxy server |
BackendServiceFabricClusterProperties
Properties of the Service Fabric Type Backend.
Name | Type | Description |
---|---|---|
clientCertificateId |
string |
The client certificate id for the management endpoint. |
clientCertificatethumbprint |
string |
The client certificate thumbprint for the management endpoint. Will be ignored if certificatesIds are provided |
managementEndpoints |
string[] |
The cluster management endpoint. |
maxPartitionResolutionRetries |
integer |
Maximum number of retries while attempting resolve the partition. |
serverCertificateThumbprints |
string[] |
Thumbprints of certificates cluster management service uses for tls communication |
serverX509Names |
Server X509 Certificate Names Collection |
BackendTlsProperties
Properties controlling TLS Certificate Validation.
Name | Type | Default value | Description |
---|---|---|---|
validateCertificateChain |
boolean |
True |
Flag indicating whether SSL certificate chain validation should be done when using self-signed certificates for this backend host. |
validateCertificateName |
boolean |
True |
Flag indicating whether SSL certificate name validation should be done when using self-signed certificates for this backend host. |
BackendType
Type of the backend. A backend can be either Single or Pool.
Name | Type | Description |
---|---|---|
Pool |
string |
supports pool backend |
Single |
string |
supports single backend |
BackendUpdateParameters
Backend update parameters.
Name | Type | Description |
---|---|---|
properties.circuitBreaker |
Backend Circuit Breaker Configuration |
|
properties.credentials |
Backend Credentials Contract Properties |
|
properties.description |
string |
Backend Description. |
properties.pool | ||
properties.properties |
Backend Properties contract |
|
properties.protocol |
Backend communication protocol. |
|
properties.proxy |
Backend gateway Contract Properties |
|
properties.resourceId |
string |
Management Uri of the Resource in External System. This URL can be the Arm Resource Id of Logic Apps, Function Apps or API Apps. |
properties.title |
string |
Backend Title. |
properties.tls |
Backend TLS Properties |
|
properties.type |
Type of the backend. A backend can be either Single or Pool. |
|
properties.url |
string |
Runtime Url of the Backend. |
CircuitBreakerFailureCondition
The trip conditions of the circuit breaker
Name | Type | Description |
---|---|---|
count |
integer |
The threshold for opening the circuit. |
errorReasons |
string[] |
The error reasons which are considered as failure. |
interval |
string |
The interval during which the failures are counted. |
percentage |
integer |
The threshold for opening the circuit. |
statusCodeRanges |
The status code ranges which are considered as failure. |
CircuitBreakerRule
Rule configuration to trip the backend.
Name | Type | Description |
---|---|---|
acceptRetryAfter |
boolean |
flag to accept Retry-After header from the backend. |
failureCondition |
The conditions for tripping the circuit breaker. |
|
name |
string |
The rule name. |
tripDuration |
string |
The duration for which the circuit will be tripped. |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
FailureStatusCodeRange
The failure http status code range
Name | Type | Description |
---|---|---|
max |
integer |
The maximum http status code. |
min |
integer |
The minimum http status code. |
Pool
Name | Type | Description |
---|---|---|
services |
The list of backend entities belonging to a pool. |
X509CertificateName
Properties of server X509Names.
Name | Type | Description |
---|---|---|
issuerCertificateThumbprint |
string |
Thumbprint for the Issuer of the Certificate. |
name |
string |
Common Name of the Certificate. |