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 @@ -990,40 +990,40 @@
],
"properties": {
"allowedOrigins": {
"description": "allowed origins",
"description": "Specifies the content for the access-control-allow-origins header",
"type": "array",
"items": {
"type": "string"
}
},
"allowedMethods": {
"description": "allowed HTTP methods",
"description": "Specifies the content for the access-control-allow-methods header",
"type": "array",
"items": {
"type": "string"
}
},
"allowedHeaders": {
"description": "allowed HTTP headers",
"description": "Specifies the content for the access-control-allow-headers header",
"type": "array",
"items": {
"type": "string"
}
},
"exposeHeaders": {
"description": "expose HTTP headers ",
"description": "Specifies the content for the access-control-expose-headers header ",
"type": "array",
"items": {
"type": "string"
}
},
"maxAge": {
"format": "int32",
"description": "max time client can cache the result",
"description": "Specifies the content for the access-control-max-age header",
"type": "integer"
},
"allowCredentials": {
"description": "allow credential or not",
"description": "Specifies whether the resource allows credentials",
"type": "boolean"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,9 @@
}
],
"responses": {
"200": {
"description": "Ok"
},
"202": {
"description": "Patch operation is in progress."
},
Expand Down Expand Up @@ -944,40 +947,40 @@
],
"properties": {
"allowedOrigins": {
"description": "allowed origins",
"description": "Specifies the content for the access-control-allow-origins header",
"type": "array",
"items": {
"type": "string"
}
},
"allowedMethods": {
"description": "allowed HTTP methods",
"description": "Specifies the content for the access-control-allow-methods header",
"type": "array",
"items": {
"type": "string"
}
},
"allowedHeaders": {
"description": "allowed HTTP headers",
"description": "Specifies the content for the access-control-allow-headers header",
"type": "array",
"items": {
"type": "string"
}
},
"exposeHeaders": {
"description": "expose HTTP headers ",
"description": "Specifies the content for the access-control-expose-headers header ",
"type": "array",
"items": {
"type": "string"
}
},
"maxAge": {
"format": "int32",
"description": "max time client can cache the result",
"description": "Specifies the content for the access-control-max-age header",
"type": "integer"
},
"allowCredentials": {
"description": "allow credential or not",
"description": "Specifies whether the resource allows credentials",
"type": "boolean"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@
}
},
"responses": {
"200": {
"headers": {}
},
"202": {
"headers": {
"azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.App/locations/eastus/containerappOperationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2022-10-01"
Expand Down