Skip to content
Closed
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 @@ -686,6 +686,10 @@
"items": {
"type": "string"
}
},
"supportCredentials": {
"description": "Gets or sets whether CORS requests with credentials are allowed. See \nhttps://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials\nfor more details.",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -2389,12 +2393,23 @@
"type": "integer"
},
"ipSecurityRestrictions": {
"description": "IP security restrictions.",
"description": "IP security restrictions for main.",
"type": "array",
"items": {
"$ref": "#/definitions/IpSecurityRestriction"
}
},
"scmIpSecurityRestrictions": {
"description": "IP security restrictions for scm.",
"type": "array",
"items": {
"$ref": "#/definitions/IpSecurityRestriction"
}
},
"scmIpSecurityRestrictionsUseMain": {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bools are typically not recommended since they are less descriptive and dont allow for future expansion of values in case its needed.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@suwatch - Any response on this comment?

"description": "IP security restrictions for scm to use main.",
"type": "boolean"
},
"http20Enabled": {
"description": "Http20Enabled: configures a web site to allow clients to connect over http2.0",
"default": true,
Expand Down Expand Up @@ -2924,6 +2939,10 @@
"dnsServers": {
"description": "DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses.",
"type": "string"
},
"isSwift": {
"description": "Flag that is used to denote if this is VNET injection",
"type": "boolean"
}
},
"x-ms-client-flatten": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,11 @@
}
},
"x-ms-examples": {
"Get App Detector Responses": {
"$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json"
},
"Get App Slot Detector Responses": {
"$ref": "./examples/Diagnostics_ListSiteDetectorResponsesSlot.json"
},
"Get App Detector Responses": {
"$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json"
}
},
"x-ms-pageable": {
Expand Down Expand Up @@ -262,11 +262,11 @@
}
},
"x-ms-examples": {
"Get App Detector Response": {
"$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json"
},
"Get App Slot Detector Response": {
"$ref": "./examples/Diagnostics_GetSiteDetectorResponseSlot.json"
},
"Get App Detector Response": {
"$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json"
}
}
}
Expand Down Expand Up @@ -786,11 +786,11 @@
}
},
"x-ms-examples": {
"Get App Detector Responses": {
"$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json"
},
"Get App Slot Detector Responses": {
"$ref": "./examples/Diagnostics_ListSiteDetectorResponsesSlot.json"
},
"Get App Detector Responses": {
"$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json"
}
},
"x-ms-pageable": {
Expand Down Expand Up @@ -874,11 +874,11 @@
}
},
"x-ms-examples": {
"Get App Detector Response": {
"$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json"
},
"Get App Slot Detector Response": {
"$ref": "./examples/Diagnostics_GetSiteDetectorResponseSlot.json"
},
"Get App Detector Response": {
"$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@
"items": {
"$ref": "#/definitions/StackMinorVersion"
}
},
"applicationInsights": {
"description": "<code>true</code> if this supports Application Insights; otherwise, <code>false</code>.",
"type": "boolean"
}
}
},
Expand Down
Loading