Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4873,9 +4873,7 @@
"sharedPrivateLinkResource": {
"description": "The properties of the private link resource for private origin.",
"type": "object",
"items": {
"$ref": "#/definitions/SharedPrivateLinkResourceProperties"
}
"$ref": "#/definitions/SharedPrivateLinkResourceProperties"
},
"enabledState": {
"description": "Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.",
Expand Down Expand Up @@ -5251,9 +5249,7 @@
"compressionSettings": {
"description": "compression settings.",
"type": "object",
"items": {
"$ref": "#/definitions/CompressionSettings"
}
"$ref": "#/definitions/CompressionSettings"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2593,10 +2593,31 @@
"additionalProperties": {
"type": "string"
}
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/ProfilePropertiesUpdateParameters"
}
},
"x-ms-azure-resource": true
},
"ProfilePropertiesUpdateParameters": {
"type": "object",
"description": "The JSON object containing profile update parameters.",
"properties": {
"originResponseTimeoutSeconds": {
"description": "Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.",
"type": "integer",
"format": "int32",
"minimum": 16,
"exclusiveMinimum": false
},
"identity": {
"description": "Managed service identity.",
"$ref": "#/definitions/ManagedServiceIdentity"
}
}
},
"SsoUri": {
"description": "The URI required to login to the supplemental portal from the Azure portal.",
"type": "object",
Expand Down