Skip to content

Commit

Permalink
Merge changes from release microsoft.web ant79 (Azure#5048)
Browse files Browse the repository at this point in the history
* Add initial set for changes for ANT79 (Azure#4435)

* Add initial set for changes for ANT79

* Fix ordering of swift VNET APIs

* Add GeoRegion to DeletedSite Model (Azure#4453)
  • Loading branch information
naveedaz authored and AnuTalluri committed Feb 6, 2019
1 parent fcf00c6 commit 2a28a94
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 15 deletions.
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 @@ -2394,12 +2398,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": {
"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 @@ -2929,6 +2944,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
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/virtualNetwork": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/networkConfig/virtualNetwork": {
"get": {
"tags": [
"WebApps"
Expand Down Expand Up @@ -8723,7 +8723,7 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/virtualNetwork": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/networkConfig/virtualNetwork": {
"get": {
"tags": [
"WebApps"
Expand Down Expand Up @@ -20264,6 +20264,10 @@
"description": "The Client Secret of this relying party application (in Azure Active Directory, this is also referred to as the Key).\nThis setting is optional. If no client secret is configured, the OpenID Connect implicit auth flow is used to authenticate end users.\nOtherwise, the OpenID Connect Authorization Code Flow is used to authenticate end users.\nMore information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html",
"type": "string"
},
"clientSecretCertificateThumbprint": {
"description": "An alternative to the client secret, that is the thumbprint of a certifite used for signing purposes. This property acts as\na replacement for the Client Secret. It is also optional.",
"type": "string"
},
"issuer": {
"description": "The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application.\nWhen using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://sts.windows.net/{tenant-guid}/.\nThis URI is a case-sensitive identifier for the token issuer.\nMore information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html",
"type": "string"
Expand Down

0 comments on commit 2a28a94

Please sign in to comment.