diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index fdc2e18fd8e7..87d29435b282 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -21,153 +21,3 @@ jobs:
- script: '>&2 echo "the branch is protected"'
failOnStderr: true
-- job: "Syntax"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - script: |
- echo TRAVIS: $(TRAVIS)
- echo TRAVIS_BRANCH: $(TRAVIS_BRANCH)
- echo TRAVIS_REPO_SLUG: $(TRAVIS_REPO_SLUG)
- echo TRAVIS_PULL_REQUEST: $(TRAVIS_PULL_REQUEST)
- echo TRAVIS_PULL_REQUEST_SLUG: $(TRAVIS_PULL_REQUEST_SLUG)
- echo TRAVIS_PULL_REQUEST_SHA: $(TRAVIS_PULL_REQUEST_SHA)
- echo PR_ONLY: $(PR_ONLY)
- displayName: "Info"
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm test -- test/syntax.js'
- displayName: 'Syntax validation'
-
-- job: "Semantic"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm run tsc && node scripts/semanticValidation.js'
- displayName: 'Semantic Validation'
-
-- job: "ModelValidation"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm run tsc && node scripts/modelValidation.js'
- displayName: 'Model Validation'
-
-- job: "Avocado"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: './node_modules/.bin/avocado'
- displayName: 'Avocado'
-
-- job: "BreakingChange"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - script: 'scripts/install-dotnet.sh'
- displayName: 'Install .Net'
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm run tsc && node scripts/breaking-change.js'
- displayName: 'Breaking Changes'
-
-- job: "LintDiff"
- variables:
- NODE_OPTIONS: '--max-old-space-size=8192'
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'scripts/install-dotnet.sh'
- displayName: 'install .Net'
- - script: 'npm run tsc && node scripts/momentOfTruth.js && node scripts/momentOfTruthPostProcessing.js'
- displayName: 'LintDiff'
-
-- job: "SDK"
- timeoutInMinutes: 120
- strategy:
- matrix:
- ruby:
- AZURE_SDK_REPO: azure-sdk-for-ruby
- AZURE_SDK_PARAMS: ''
- java:
- AZURE_SDK_REPO: azure-sdk-for-java
- AZURE_SDK_PARAMS: ''
- javascript:
- AZURE_SDK_REPO: azure-sdk-for-js
- AZURE_SDK_PARAMS: ''
- node:
- AZURE_SDK_REPO: azure-sdk-for-node
- AZURE_SDK_PARAMS: ''
- python:
- AZURE_SDK_REPO: azure-sdk-for-python
- AZURE_SDK_PARAMS: ''
- go:
- AZURE_SDK_REPO: azure-sdk-for-go
- AZURE_SDK_PARAMS: '-o latest'
- pool:
- vmImage: 'Ubuntu 16.04'
- variables:
- NODE_OPTIONS: '--max-old-space-size=8192'
- steps:
- - script: echo $(NODE_OPTIONS)
- - script: "scripts/swagger-to-sdk.sh Azure/$(AZURE_SDK_REPO) -v $(AZURE_SDK_PARAMS)"
- displayName: "Swagger to SDK script"
-
-- job: "NetworkValidation"
- condition: and(startsWith(variables['System.PullRequest.TargetBranch'], 'network-'), endsWith(variables['System.PullRequest.TargetBranch'], '-release'))
- continueOnError: true
- pool:
- vmImage: vs2017-win2016
- variables:
- NRP_SWAGGER_VALIDATION_OVERRIDE_PS_BRANCH: 'true'
- NRP_BUILD_TOOLS_SKIP_GENERATE_PS1: 'true'
- NRP_BUILD_TOOLS_OUTPUT_PATH: '$(System.DefaultWorkingDirectory)\Out'
- steps:
- - powershell: |
- & "C:/Program Files (x86)/Microsoft SDKs/Windows/v10.0A/bin/NETFX 4.6.1 Tools/sn.exe" -Vr *,31bf3856ad364e35
- displayName: Bypass Strong Name validation
- - task: NodeTool@0
- inputs:
- versionSpec: 10.x
- displayName: Install Node.js
- - script: npm install autorest -g
- displayName: Install autorest
- - script: git clone --depth 1 -- https://dev.azure.com/v-anevse/BuildScripts/_git/BuildScripts ..\BuildScripts
- displayName: Clone build tools
- - powershell: |
- $swgrPath = (Get-Item ".\").FullName
- $outputPath = $env:NRP_BUILD_TOOLS_OUTPUT_PATH
- New-Item -Path $outputPath -ItemType "Directory" -Force | Out-Null
- ..\BuildScripts\Test-SwaggerRelease.ps1 -Component Network -SwaggerRepoPath $swgrPath -OutputFolder $outputPath
- failOnStderr: false
- displayName: Test Swagger updates
- - powershell: |
- Copy-Item "..\BuildScripts\.azure-pipelines\.artifactignore" -Destination "$($env:NRP_BUILD_TOOLS_OUTPUT_PATH)\.artifactignore" -Force -ErrorAction "SilentlyContinue"
- failOnStderr: false
- condition: always()
- displayName: Copy .artifactignore
- - task: PublishPipelineArtifact@0
- condition: always()
- inputs:
- artifactName: SwaggerTestOutput
- targetPath: $(NRP_BUILD_TOOLS_OUTPUT_PATH)
diff --git a/preproduction-azure-pipelines.yml b/preproduction-azure-pipelines.yml
index 44566a98844a..b6eeb2f4d020 100644
--- a/preproduction-azure-pipelines.yml
+++ b/preproduction-azure-pipelines.yml
@@ -13,112 +13,13 @@ variables:
jobs:
-- job: "BranchProtection"
- pool:
- vmImage: 'Ubuntu 16.04'
- condition: and(variables['PRIVATE'], eq(variables['System.PullRequest.TargetBranch'], 'master'))
- steps:
- - script: '>&2 echo "the branch is protected"'
- failOnStderr: true
-
-- job: "Syntax"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - script: |
- echo TRAVIS: $(TRAVIS)
- echo TRAVIS_BRANCH: $(TRAVIS_BRANCH)
- echo TRAVIS_REPO_SLUG: $(TRAVIS_REPO_SLUG)
- echo TRAVIS_PULL_REQUEST: $(TRAVIS_PULL_REQUEST)
- echo TRAVIS_PULL_REQUEST_SLUG: $(TRAVIS_PULL_REQUEST_SLUG)
- echo TRAVIS_PULL_REQUEST_SHA: $(TRAVIS_PULL_REQUEST_SHA)
- echo PR_ONLY: $(PR_ONLY)
- displayName: "Info"
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- - script: 'npm test -- test/syntax.js'
- displayName: 'Syntax validation'
-
-- job: "Semantic"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- - script: 'npm run tsc && node scripts/semanticValidation.js'
- displayName: 'Semantic Validation'
-
-- job: "ModelValidation"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- - script: 'npm run tsc && node scripts/modelValidation.js'
- displayName: 'Model Validation'
-
-- job: "Avocado"
- pool:
- vmImage: 'Ubuntu 16.04'
- continueOnError: true
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: './node_modules/.bin/avocado'
- displayName: 'Avocado'
-
-- job: "BreakingChange"
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - script: 'scripts/install-dotnet.sh'
- displayName: 'Install .Net'
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- - script: 'npm run tsc && node scripts/breaking-change.js'
- displayName: 'Breaking Changes'
-
-- job: "LintDiff"
- variables:
- NODE_OPTIONS: '--max-old-space-size=8192'
- pool:
- vmImage: 'Ubuntu 16.04'
- steps:
- - task: Npm@1
- displayName: 'npm install'
- inputs:
- verbose: false
- - script: 'scripts/install-dotnet.sh'
- displayName: 'install .Net'
- - script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- - script: 'npm run tsc && node scripts/momentOfTruth.js && node scripts/momentOfTruthPostProcessing.js'
- displayName: 'LintDiff'
-- job: "Spellcheck"
- condition: "not(variables['PRIVATE'])"
- variables:
- NODE_OPTIONS: '--max-old-space-size=8192'
+- job: "jsonfmt"
pool:
vmImage: 'Ubuntu 16.04'
- continueOnError: true
steps:
- - task: Npm@1
- displayName: 'npm install'
+ - task: Docker@2
+ displayName: jsonfmt
inputs:
- verbose: false
- - script: 'npm run spellcheck'
- displayName: 'Run cSpell'
+ command: run
+ arguments: -v $(System.DefaultWorkingDirectory)/specification/:/specification/ --workdir /specification/ caarlos0/jsonfmt --failfast
diff --git a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/SmartDetectorAlertRulesApi.json b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/SmartDetectorAlertRulesApi.json
index d390cae89529..be1bd4faab5a 100644
--- a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/SmartDetectorAlertRulesApi.json
+++ b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/SmartDetectorAlertRulesApi.json
@@ -1,509 +1,509 @@
{
- "swagger": "2.0",
- "info": {
- "title": "Azure Alerts Management Service Resource Provider",
- "description": "APIs for Azure Smart Detector Alert Rules CRUD operations.",
- "version": "2019-03-01"
- },
- "host": "management.azure.com",
- "schemes": [
- "https"
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "security": [
- {
- "azure_auth": [
- "user_impersonation"
- ]
- }
- ],
- "securityDefinitions": {
- "azure_auth": {
- "type": "oauth2",
- "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
- "flow": "implicit",
- "description": "Azure Active Directory OAuth2 Flow",
- "scopes": {
- "user_impersonation": "impersonate your user account"
- }
- }
- },
- "paths": {
- "/subscriptions/{subscriptionId}/providers/microsoft.alertsManagement/smartDetectorAlertRules": {
- "get": {
- "tags": [
- "SmartDetectorAlertRules"
- ],
- "operationId": "SmartDetectorAlertRules_List",
- "description": "List all the existing Smart Detector alert rules within the subscription.",
- "parameters": [
- {
- "$ref": "#/parameters/SubscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/ApiVersionParameter"
- }
- ],
- "responses": {
- "default": {
- "description": "Error response describing why the operation failed.",
- "schema": {
- "$ref": "#/definitions/ErrorResponse"
- }
- },
- "200": {
- "description": "Successful request to list Smart Detector alert rules.",
- "schema": {
- "$ref": "#/definitions/AlertRulesList"
- }
- }
- },
- "x-ms-pageable": {
- "nextLinkName": "nextLink"
- },
- "x-ms-examples": {
- "List Smart Detector alert rules": {
- "$ref": "./examples/SmartDetectorAlertRule_List.json"
- }
- }
- }
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.alertsManagement/smartDetectorAlertRules": {
- "get": {
- "tags": [
- "SmartDetectorAlertRules"
- ],
- "operationId": "SmartDetectorAlertRules_ListByResourceGroup",
- "description": "List all the existing Smart Detector alert rules within the subscription and resource group.",
- "parameters": [
- {
- "$ref": "#/parameters/SubscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/ResourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/ApiVersionParameter"
- }
- ],
- "responses": {
- "default": {
- "description": "Error response describing why the operation failed.",
- "schema": {
- "$ref": "#/definitions/ErrorResponse"
- }
- },
- "200": {
- "description": "Successful request to list Smart Detector alert rules.",
- "schema": {
- "$ref": "#/definitions/AlertRulesList"
- }
- }
- },
- "x-ms-pageable": {
- "nextLinkName": "nextLink"
- },
- "x-ms-examples": {
- "List alert rules": {
- "$ref": "./examples/SmartDetectorAlertRule_ListByResourceGroup.json"
- }
- }
- }
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.alertsManagement/smartDetectorAlertRules/{alertRuleName}": {
- "get": {
- "tags": [
- "smartDetectorAlertRules"
- ],
- "operationId": "SmartDetectorAlertRules_Get",
- "description": "Get a specific Smart Detector alert rule.",
- "parameters": [
- {
- "$ref": "#/parameters/SubscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/ResourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/AlertRuleNameParameter"
- },
- {
- "$ref": "#/parameters/ApiVersionParameter"
- },
- {
- "$ref": "#/parameters/ExpandDetectorParameter"
- }
- ],
- "responses": {
- "default": {
- "description": "Error response describing why the operation failed.",
- "schema": {
- "$ref": "#/definitions/ErrorResponse"
- }
- },
- "200": {
- "description": "Successful request to get Smart Detector alert rule.",
- "schema": {
- "$ref": "#/definitions/AlertRule"
- }
- }
- },
- "x-ms-examples": {
- "Get a Smart Detector alert rule": {
- "$ref": "./examples/SmartDetectorAlertRule_Get.json"
- }
- }
- },
- "put": {
- "tags": [
- "SmartDetectorAlertRules"
- ],
- "operationId": "SmartDetectorAlertRules_CreateOrUpdate",
- "description": "Create or update a Smart Detector alert rule.",
- "parameters": [
- {
- "$ref": "#/parameters/SubscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/ResourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/AlertRuleNameParameter"
- },
- {
- "$ref": "#/parameters/ApiVersionParameter"
- },
- {
- "name": "parameters",
- "description": "Parameters supplied to the operation.",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/AlertRule"
- }
- }
- ],
- "responses": {
- "default": {
- "description": "Error response describing why the operation failed.",
- "schema": {
- "$ref": "#/definitions/ErrorResponse"
- }
- },
- "200": {
- "description": "Successful request to update a Smart Detector alert rule.",
- "schema": {
- "$ref": "#/definitions/AlertRule"
- }
- },
- "201": {
- "description": "Successful request to create a Smart Detector alert rule.",
- "schema": {
- "$ref": "#/definitions/AlertRule"
- }
- }
- },
- "x-ms-examples": {
- "Create or update a Smart Detector alert rule": {
- "$ref": "./examples/SmartDetectorAlertRule_CreateOrUpdate.json"
- }
- }
- },
- "delete": {
- "tags": [
- "SmartDetectorAlertRules"
- ],
- "operationId": "SmartDetectorAlertRules_Delete",
- "description": "Delete an existing Smart Detector alert rule.",
- "parameters": [
- {
- "$ref": "#/parameters/SubscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/ResourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/AlertRuleNameParameter"
- },
- {
- "$ref": "#/parameters/ApiVersionParameter"
- }
- ],
- "responses": {
- "default": {
- "description": "Error response describing why the operation failed.",
- "schema": {
- "$ref": "#/definitions/ErrorResponse"
- }
- },
- "200": {
- "description": "Successful request to delete a Smart Detector alert rule."
- },
- "204": {
- "description": "The Smart Detector alert rule does not exist. It may have already been deleted."
- }
- },
- "x-ms-examples": {
- "Delete a Smart Detector alert rule": {
- "$ref": "./examples/SmartDetectorAlertRule_Delete.json"
- }
- }
- }
- }
- },
- "definitions": {
- "ErrorResponse": {
- "description": "Describe the format of an Error response.",
- "type": "object",
- "properties": {
- "code": {
- "description": "Error code",
- "type": "string"
- },
- "message": {
- "description": "Error message indicating why the operation failed.",
- "type": "string"
- }
- }
- },
- "ActionGroupsInformation": {
- "properties": {
- "customEmailSubject": {
- "description": "An optional custom email subject to use in email notifications.",
- "type": "string"
- },
- "customWebhookPayload": {
- "description": "An optional custom web-hook payload to use in web-hook notifications.",
- "type": "string"
- },
- "groupIds": {
- "description": "The Action Group resource IDs.",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- },
- "required": [
- "groupIds"
- ],
- "description": "The Action Groups information, used by the alert rule."
- },
- "ThrottlingInformation": {
- "properties": {
- "duration": {
- "description": "The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes",
- "type": "string",
- "format": "duration"
- }
- },
- "description": "Optional throttling information for the alert rule."
- },
- "AzureResource": {
- "type": "object",
- "properties": {
- "id": {
- "description": "The resource ID.",
- "readOnly": true,
- "type": "string"
- },
- "type": {
- "type": "string",
- "readOnly": true,
- "description": "The resource type."
- },
- "name": {
- "type": "string",
- "readOnly": true,
- "description": "The resource name."
- }
- },
- "x-ms-azure-resource": true,
- "description": "An Azure resource object"
- },
- "AlertRule": {
- "allOf": [
- {
- "$ref": "#/definitions/AzureResource"
- }
- ],
- "properties": {
- "properties": {
- "x-ms-client-flatten": true,
- "$ref": "#/definitions/AlertRuleProperties",
- "description": "The properties of the alert rule."
- }
- },
- "description": "The alert rule information"
- },
- "AlertRulesList": {
- "description": "List of Smart Detector alert rules.",
- "properties": {
- "value": {
- "description": "List of Smart Detector alert rules.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/AlertRule"
- }
- },
- "nextLink": {
- "type": "string",
- "description": "The URL to get the next set of results."
- }
- }
- },
- "Detector": {
- "properties": {
- "id": {
- "type": "string",
- "description": "The detector id."
- },
- "parameters": {
- "description": "The detector's parameters.'",
- "type": "object",
- "additionalProperties": {
- "type": "object"
- }
- },
- "name": {
- "description": "The Smart Detector name. By default this is not populated, unless it's specified in expandDetector",
- "type": "string"
- },
- "description": {
- "type": "string",
- "description": "The Smart Detector description. By default this is not populated, unless it's specified in expandDetector"
- },
- "supportedResourceTypes": {
- "type": "array",
- "items": {
- "type": "string"
- },
- "description": "The Smart Detector supported resource types. By default this is not populated, unless it's specified in expandDetector"
- },
- "imagePaths": {
- "type": "array",
- "items": {
- "type": "string"
- },
- "description": "The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector"
- }
- },
- "required": [
- "id"
- ],
- "description": "The detector information. By default this is not populated, unless it's specified in expandDetector"
- },
- "AlertRuleProperties": {
- "properties": {
- "description": {
- "description": "The alert rule description.",
- "type": "string"
- },
- "state": {
- "description": "The alert rule state.",
- "type": "string",
- "enum": [
- "Enabled",
- "Disabled"
- ],
- "x-ms-enum": {
- "name": "AlertRuleState",
- "modelAsString": true
- }
- },
- "severity": {
- "description": "The alert rule severity.",
- "type": "string",
- "enum": [
- "Sev0",
- "Sev1",
- "Sev2",
- "Sev3",
- "Sev4"
- ],
- "x-ms-enum": {
- "name": "Severity",
- "modelAsString": true
- }
- },
- "frequency": {
- "description": "The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 5 minutes.",
- "type": "string",
- "format": "duration"
- },
- "detector": {
- "description": "The alert rule's detector.",
- "$ref": "#/definitions/Detector"
- },
- "scope": {
- "description": "The alert rule resources scope.",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "actionGroups": {
- "description": "The alert rule actions.",
- "$ref": "#/definitions/ActionGroupsInformation"
- },
- "throttling": {
- "description": "The alert rule throttling information.",
- "$ref": "#/definitions/ThrottlingInformation"
- }
- },
- "required": [
- "state",
- "severity",
- "frequency",
- "detector",
- "scope",
- "actionGroups"
- ],
- "description": "The alert rule properties."
- }
- },
- "parameters": {
- "SubscriptionIdParameter": {
- "name": "subscriptionId",
- "in": "path",
- "required": true,
- "type": "string",
- "description": "The Azure subscription id."
- },
- "ResourceGroupNameParameter": {
- "name": "resourceGroupName",
- "in": "path",
- "required": true,
- "type": "string",
- "description": "The name of the resource group.",
- "x-ms-parameter-location": "method"
- },
- "AlertRuleNameParameter": {
- "name": "alertRuleName",
- "in": "path",
- "required": true,
- "type": "string",
- "description": "The name of the alert rule.",
- "x-ms-parameter-location": "method"
- },
- "ApiVersionParameter": {
- "name": "api-version",
- "in": "query",
- "required": true,
- "type": "string",
- "description": "Client Api Version."
- },
- "ExpandDetectorParameter": {
- "name": "expandDetector",
- "in": "query",
- "type": "boolean",
- "description": "Indicates if Smart Detector should be expanded.",
- "x-ms-parameter-location": "method"
- }
- }
-}
\ No newline at end of file
+ "swagger": "2.0",
+ "info": {
+ "title": "Azure Alerts Management Service Resource Provider",
+ "description": "APIs for Azure Smart Detector Alert Rules CRUD operations.",
+ "version": "2019-03-01"
+ },
+ "host": "management.azure.com",
+ "schemes": [
+ "https"
+ ],
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "security": [
+ {
+ "azure_auth": [
+ "user_impersonation"
+ ]
+ }
+ ],
+ "securityDefinitions": {
+ "azure_auth": {
+ "type": "oauth2",
+ "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
+ "flow": "implicit",
+ "description": "Azure Active Directory OAuth2 Flow",
+ "scopes": {
+ "user_impersonation": "impersonate your user account"
+ }
+ }
+ },
+ "paths": {
+ "/subscriptions/{subscriptionId}/providers/microsoft.alertsManagement/smartDetectorAlertRules": {
+ "get": {
+ "tags": [
+ "SmartDetectorAlertRules"
+ ],
+ "operationId": "SmartDetectorAlertRules_List",
+ "description": "List all the existing Smart Detector alert rules within the subscription.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/SubscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "responses": {
+ "default": {
+ "description": "Error response describing why the operation failed.",
+ "schema": {
+ "$ref": "#/definitions/ErrorResponse"
+ }
+ },
+ "200": {
+ "description": "Successful request to list Smart Detector alert rules.",
+ "schema": {
+ "$ref": "#/definitions/AlertRulesList"
+ }
+ }
+ },
+ "x-ms-pageable": {
+ "nextLinkName": "nextLink"
+ },
+ "x-ms-examples": {
+ "List Smart Detector alert rules": {
+ "$ref": "./examples/SmartDetectorAlertRule_List.json"
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.alertsManagement/smartDetectorAlertRules": {
+ "get": {
+ "tags": [
+ "SmartDetectorAlertRules"
+ ],
+ "operationId": "SmartDetectorAlertRules_ListByResourceGroup",
+ "description": "List all the existing Smart Detector alert rules within the subscription and resource group.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/SubscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ResourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "responses": {
+ "default": {
+ "description": "Error response describing why the operation failed.",
+ "schema": {
+ "$ref": "#/definitions/ErrorResponse"
+ }
+ },
+ "200": {
+ "description": "Successful request to list Smart Detector alert rules.",
+ "schema": {
+ "$ref": "#/definitions/AlertRulesList"
+ }
+ }
+ },
+ "x-ms-pageable": {
+ "nextLinkName": "nextLink"
+ },
+ "x-ms-examples": {
+ "List alert rules": {
+ "$ref": "./examples/SmartDetectorAlertRule_ListByResourceGroup.json"
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.alertsManagement/smartDetectorAlertRules/{alertRuleName}": {
+ "get": {
+ "tags": [
+ "smartDetectorAlertRules"
+ ],
+ "operationId": "SmartDetectorAlertRules_Get",
+ "description": "Get a specific Smart Detector alert rule.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/SubscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ResourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/AlertRuleNameParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ExpandDetectorParameter"
+ }
+ ],
+ "responses": {
+ "default": {
+ "description": "Error response describing why the operation failed.",
+ "schema": {
+ "$ref": "#/definitions/ErrorResponse"
+ }
+ },
+ "200": {
+ "description": "Successful request to get Smart Detector alert rule.",
+ "schema": {
+ "$ref": "#/definitions/AlertRule"
+ }
+ }
+ },
+ "x-ms-examples": {
+ "Get a Smart Detector alert rule": {
+ "$ref": "./examples/SmartDetectorAlertRule_Get.json"
+ }
+ }
+ },
+ "put": {
+ "tags": [
+ "SmartDetectorAlertRules"
+ ],
+ "operationId": "SmartDetectorAlertRules_CreateOrUpdate",
+ "description": "Create or update a Smart Detector alert rule.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/SubscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ResourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/AlertRuleNameParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "name": "parameters",
+ "description": "Parameters supplied to the operation.",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/AlertRule"
+ }
+ }
+ ],
+ "responses": {
+ "default": {
+ "description": "Error response describing why the operation failed.",
+ "schema": {
+ "$ref": "#/definitions/ErrorResponse"
+ }
+ },
+ "200": {
+ "description": "Successful request to update a Smart Detector alert rule.",
+ "schema": {
+ "$ref": "#/definitions/AlertRule"
+ }
+ },
+ "201": {
+ "description": "Successful request to create a Smart Detector alert rule.",
+ "schema": {
+ "$ref": "#/definitions/AlertRule"
+ }
+ }
+ },
+ "x-ms-examples": {
+ "Create or update a Smart Detector alert rule": {
+ "$ref": "./examples/SmartDetectorAlertRule_CreateOrUpdate.json"
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "SmartDetectorAlertRules"
+ ],
+ "operationId": "SmartDetectorAlertRules_Delete",
+ "description": "Delete an existing Smart Detector alert rule.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/SubscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ResourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/AlertRuleNameParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "responses": {
+ "default": {
+ "description": "Error response describing why the operation failed.",
+ "schema": {
+ "$ref": "#/definitions/ErrorResponse"
+ }
+ },
+ "200": {
+ "description": "Successful request to delete a Smart Detector alert rule."
+ },
+ "204": {
+ "description": "The Smart Detector alert rule does not exist. It may have already been deleted."
+ }
+ },
+ "x-ms-examples": {
+ "Delete a Smart Detector alert rule": {
+ "$ref": "./examples/SmartDetectorAlertRule_Delete.json"
+ }
+ }
+ }
+ }
+ },
+ "definitions": {
+ "ErrorResponse": {
+ "description": "Describe the format of an Error response.",
+ "type": "object",
+ "properties": {
+ "code": {
+ "description": "Error code",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error message indicating why the operation failed.",
+ "type": "string"
+ }
+ }
+ },
+ "ActionGroupsInformation": {
+ "properties": {
+ "customEmailSubject": {
+ "description": "An optional custom email subject to use in email notifications.",
+ "type": "string"
+ },
+ "customWebhookPayload": {
+ "description": "An optional custom web-hook payload to use in web-hook notifications.",
+ "type": "string"
+ },
+ "groupIds": {
+ "description": "The Action Group resource IDs.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ },
+ "required": [
+ "groupIds"
+ ],
+ "description": "The Action Groups information, used by the alert rule."
+ },
+ "ThrottlingInformation": {
+ "properties": {
+ "duration": {
+ "description": "The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes",
+ "type": "string",
+ "format": "duration"
+ }
+ },
+ "description": "Optional throttling information for the alert rule."
+ },
+ "AzureResource": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "description": "The resource ID.",
+ "readOnly": true,
+ "type": "string"
+ },
+ "type": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The resource type."
+ },
+ "name": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The resource name."
+ }
+ },
+ "x-ms-azure-resource": true,
+ "description": "An Azure resource object"
+ },
+ "AlertRule": {
+ "allOf": [
+ {
+ "$ref": "#/definitions/AzureResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "x-ms-client-flatten": true,
+ "$ref": "#/definitions/AlertRuleProperties",
+ "description": "The properties of the alert rule."
+ }
+ },
+ "description": "The alert rule information"
+ },
+ "AlertRulesList": {
+ "description": "List of Smart Detector alert rules.",
+ "properties": {
+ "value": {
+ "description": "List of Smart Detector alert rules.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/AlertRule"
+ }
+ },
+ "nextLink": {
+ "type": "string",
+ "description": "The URL to get the next set of results."
+ }
+ }
+ },
+ "Detector": {
+ "properties": {
+ "id": {
+ "type": "string",
+ "description": "The detector id."
+ },
+ "parameters": {
+ "description": "The detector's parameters.'",
+ "type": "object",
+ "additionalProperties": {
+ "type": "object"
+ }
+ },
+ "name": {
+ "description": "The Smart Detector name. By default this is not populated, unless it's specified in expandDetector",
+ "type": "string"
+ },
+ "description": {
+ "type": "string",
+ "description": "The Smart Detector description. By default this is not populated, unless it's specified in expandDetector"
+ },
+ "supportedResourceTypes": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The Smart Detector supported resource types. By default this is not populated, unless it's specified in expandDetector"
+ },
+ "imagePaths": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "description": "The detector information. By default this is not populated, unless it's specified in expandDetector"
+ },
+ "AlertRuleProperties": {
+ "properties": {
+ "description": {
+ "description": "The alert rule description.",
+ "type": "string"
+ },
+ "state": {
+ "description": "The alert rule state.",
+ "type": "string",
+ "enum": [
+ "Enabled",
+ "Disabled"
+ ],
+ "x-ms-enum": {
+ "name": "AlertRuleState",
+ "modelAsString": true
+ }
+ },
+ "severity": {
+ "description": "The alert rule severity.",
+ "type": "string",
+ "enum": [
+ "Sev0",
+ "Sev1",
+ "Sev2",
+ "Sev3",
+ "Sev4"
+ ],
+ "x-ms-enum": {
+ "name": "Severity",
+ "modelAsString": true
+ }
+ },
+ "frequency": {
+ "description": "The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 5 minutes.",
+ "type": "string",
+ "format": "duration"
+ },
+ "detector": {
+ "description": "The alert rule's detector.",
+ "$ref": "#/definitions/Detector"
+ },
+ "scope": {
+ "description": "The alert rule resources scope.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "actionGroups": {
+ "description": "The alert rule actions.",
+ "$ref": "#/definitions/ActionGroupsInformation"
+ },
+ "throttling": {
+ "description": "The alert rule throttling information.",
+ "$ref": "#/definitions/ThrottlingInformation"
+ }
+ },
+ "required": [
+ "state",
+ "severity",
+ "frequency",
+ "detector",
+ "scope",
+ "actionGroups"
+ ],
+ "description": "The alert rule properties."
+ }
+ },
+ "parameters": {
+ "SubscriptionIdParameter": {
+ "name": "subscriptionId",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The Azure subscription id."
+ },
+ "ResourceGroupNameParameter": {
+ "name": "resourceGroupName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the resource group.",
+ "x-ms-parameter-location": "method"
+ },
+ "AlertRuleNameParameter": {
+ "name": "alertRuleName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the alert rule.",
+ "x-ms-parameter-location": "method"
+ },
+ "ApiVersionParameter": {
+ "name": "api-version",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "Client Api Version."
+ },
+ "ExpandDetectorParameter": {
+ "name": "expandDetector",
+ "in": "query",
+ "type": "boolean",
+ "description": "Indicates if Smart Detector should be expanded.",
+ "x-ms-parameter-location": "method"
+ }
+ }
+}
diff --git a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_CreateOrUpdate.json b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_CreateOrUpdate.json
index d1a2a522be55..d728965940c7 100644
--- a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_CreateOrUpdate.json
+++ b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_CreateOrUpdate.json
@@ -1,88 +1,88 @@
{
+ "parameters": {
+ "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
+ "resourceGroupName": "MyAlertRules",
+ "alertRuleName": "MyAlertRule",
+ "api-version": "2019-03-01",
"parameters": {
- "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
- "resourceGroupName": "MyAlertRules",
- "alertRuleName": "MyAlertRule",
- "api-version": "2019-03-01",
- "parameters": {
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Enabled",
- "severity": "Sev3",
- "frequency": "PT5M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
- ],
- "actionGroups": {
- "customEmailSubject": "My custom email subject",
- "customWebhookPayload": "{\"AlertRuleName\":\"#alertrulename\"}",
- "groupIds": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"
- ]
- },
- "throttling": {
- "duration": "PT20M"
- }
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Enabled",
+ "severity": "Sev3",
+ "frequency": "PT5M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
+ ],
+ "actionGroups": {
+ "customEmailSubject": "My custom email subject",
+ "customWebhookPayload": "{\"AlertRuleName\":\"#alertrulename\"}",
+ "groupIds": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"
+ ]
+ },
+ "throttling": {
+ "duration": "PT20M"
+ }
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MyAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Enabled",
+ "severity": "Sev3",
+ "frequency": "PT5M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"
}
+ ],
+ "throttling": {
+ "duration": "PT20M"
+ }
}
+ }
},
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MyAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Enabled",
- "severity": "Sev3",
- "frequency": "PT5M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"
- }
- ],
- "throttling": {
- "duration": "PT20M"
- }
- }
- }
- },
- "201": {
- "body": {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MyAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Enabled",
- "severity": "Sev3",
- "frequency": "PT5M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"
- }
- ],
- "throttling": {
- "duration": "PT20M"
- }
- }
+ "201": {
+ "body": {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MyAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Enabled",
+ "severity": "Sev3",
+ "frequency": "PT5M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"
}
+ ],
+ "throttling": {
+ "duration": "PT20M"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Delete.json b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Delete.json
index 2b448d003492..0a63b3bbdb7b 100644
--- a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Delete.json
+++ b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Delete.json
@@ -1,16 +1,16 @@
{
- "parameters": {
- "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
- "resourceGroupName": "MyAlertRules",
- "alertRuleName": "MyAlertRule",
- "api-version": "2019-03-01"
+ "parameters": {
+ "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
+ "resourceGroupName": "MyAlertRules",
+ "alertRuleName": "MyAlertRule",
+ "api-version": "2019-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": null
},
- "responses": {
- "200": {
- "body": null
- },
- "204": {
- "body": null
- }
+ "204": {
+ "body": null
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Get.json b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Get.json
index 94844ebdc841..11e7fcf0c6a6 100644
--- a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Get.json
+++ b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_Get.json
@@ -1,37 +1,37 @@
{
- "parameters": {
- "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
- "resourceGroupName": "MyAlertRules",
- "alertRuleName": "MyAlertRule",
- "api-version": "2019-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MyAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Enabled",
- "severity": "Sev3",
- "frequency": "PT5M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
- }
- ],
- "throttling": {
- "duration": "PT20M"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
+ "resourceGroupName": "MyAlertRules",
+ "alertRuleName": "MyAlertRule",
+ "api-version": "2019-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MyAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Enabled",
+ "severity": "Sev3",
+ "frequency": "PT5M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
+ }
+ ],
+ "throttling": {
+ "duration": "PT20M"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_List.json b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_List.json
index 41fe0bf62d89..41e98f4677d1 100644
--- a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_List.json
+++ b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_List.json
@@ -1,63 +1,63 @@
{
- "parameters": {
- "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
- "resourceGroupName": "MyAlertRules",
- "api-version": "2019-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "nextLink": "",
- "value": [
- {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MyAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Enabled",
- "severity": "Sev3",
- "frequency": "PT5M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
- }
- ],
- "throttling": {
- "duration": "PT20M"
- }
- }
- },
- {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MySecondAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MySecondAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Disabled",
- "severity": "Sev2",
- "frequency": "PT15M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm2"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
- }
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
+ "resourceGroupName": "MyAlertRules",
+ "api-version": "2019-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "nextLink": "",
+ "value": [
+ {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MyAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Enabled",
+ "severity": "Sev3",
+ "frequency": "PT5M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm1"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
+ }
+ ],
+ "throttling": {
+ "duration": "PT20M"
+ }
}
- }
+ },
+ {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MySecondAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MySecondAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Disabled",
+ "severity": "Sev2",
+ "frequency": "PT15M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/vms/providers/Microsoft.Compute/virtualMachines/vm2"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
+ }
+ ]
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_ListByResourceGroup.json b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_ListByResourceGroup.json
index a28055b85a56..b99f2f31186d 100644
--- a/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_ListByResourceGroup.json
+++ b/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-03-01/examples/SmartDetectorAlertRule_ListByResourceGroup.json
@@ -1,63 +1,63 @@
{
- "parameters": {
- "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
- "resourceGroupName": "MyAlertRules",
- "api-version": "2019-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "nextLink": "",
- "value": [
- {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MyAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Enabled",
- "severity": "Sev3",
- "frequency": "PT5M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
- }
- ],
- "throttling": {
- "duration": "PT20M"
- }
- }
- },
- {
- "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MySecondAlertRule",
- "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
- "name": "MySecondAlertRule",
- "properties": {
- "description": "Sample smart detector alert rule description",
- "state": "Disabled",
- "severity": "Sev2",
- "frequency": "PT15M",
- "detector": {
- "id": "VMMemoryLeak"
- },
- "scope": [
- "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default"
- ],
- "actionGroups": [
- {
- "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
- }
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "b368ca2f-e298-46b7-b0ab-012281956afa",
+ "resourceGroupName": "MyAlertRules",
+ "api-version": "2019-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "nextLink": "",
+ "value": [
+ {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MyAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MyAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Enabled",
+ "severity": "Sev3",
+ "frequency": "PT5M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
+ }
+ ],
+ "throttling": {
+ "duration": "PT20M"
+ }
}
- }
+ },
+ {
+ "id": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyAlertRules/providers/microsoft.alertsManagement/smartDetectorAlertRules/MySecondAlertRule",
+ "type": "Microsoft.AlertsManagement/smartDetectorAlertRules",
+ "name": "MySecondAlertRule",
+ "properties": {
+ "description": "Sample smart detector alert rule description",
+ "state": "Disabled",
+ "severity": "Sev2",
+ "frequency": "PT15M",
+ "detector": {
+ "id": "VMMemoryLeak"
+ },
+ "scope": [
+ "/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default"
+ ],
+ "actionGroups": [
+ {
+ "actionGroupId": "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/MyActionGroups/providers/microsoft.insights/actionGroups/MyActionGroup"
+ }
+ ]
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimanagement.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimanagement.json
index 671f8b4cc8ea..e5042c9e55d6 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimanagement.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimanagement.json
@@ -503,4 +503,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimapis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimapis.json
index 65975ef5b2cb..b5ece6c7273c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimapis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimapis.json
@@ -1901,4 +1901,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimauthorizationservers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimauthorizationservers.json
index da67aa4c12c4..f28ab427ee8e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimauthorizationservers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimauthorizationservers.json
@@ -581,4 +581,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimbackends.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimbackends.json
index ca7ca760ef2d..a12c19d72de1 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimbackends.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimbackends.json
@@ -605,4 +605,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimcertificates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimcertificates.json
index 7a86d108de57..da1356072f05 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimcertificates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimcertificates.json
@@ -322,4 +322,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimemailtemplate.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimemailtemplate.json
index b710a0c2c963..f21dc27dfe8d 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimemailtemplate.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimemailtemplate.json
@@ -417,4 +417,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimgroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimgroups.json
index 64c8cf5047f4..07519e0164c2 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimgroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimgroups.json
@@ -555,4 +555,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimidentityprovider.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimidentityprovider.json
index fa9521941ea9..dc76a968aaba 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimidentityprovider.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimidentityprovider.json
@@ -457,4 +457,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimloggers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimloggers.json
index 2458f044ef1d..35865eade4a8 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimloggers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimloggers.json
@@ -404,4 +404,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimopenidconnectproviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimopenidconnectproviders.json
index dfa5b5d2e14a..e9e2d1873a07 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimopenidconnectproviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimopenidconnectproviders.json
@@ -368,4 +368,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimportalsettings.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimportalsettings.json
index dfe8feb91162..797765f70c53 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimportalsettings.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimportalsettings.json
@@ -475,4 +475,4 @@
"description": "User registration delegation settings properties."
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproducts.json
index 4452bfaad2df..c295c362002e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproducts.json
@@ -73,7 +73,7 @@
"in": "query",
"required": false,
"type": "boolean",
- "description": "When set to true, the response contains an array of groups that have visibility to the product. The default is false."
+ "description": "When set to true, the response contains an array of groups that have visibility to the product. The default is false."
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
@@ -914,4 +914,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproperties.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproperties.json
index a61cd16f96dc..93736b2d3c84 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproperties.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimproperties.json
@@ -381,4 +381,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimquotas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimquotas.json
index 5af065078f88..a040e54d94ce 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimquotas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimquotas.json
@@ -310,4 +310,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimreports.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimreports.json
index ad295ade1ae6..becc23f35b6e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimreports.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimreports.json
@@ -655,4 +655,4 @@
}
},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimsubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimsubscriptions.json
index c62d4ceedd3d..e2d43315a72f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimsubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimsubscriptions.json
@@ -369,8 +369,8 @@
},
"description": "Page values."
},
- "count":{
- "type" : "integer",
+ "count": {
+ "type": "integer",
"description": "Total number of entities"
},
"nextLink": {
@@ -596,4 +596,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimtenant.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimtenant.json
index cf300c03c5e4..f23114e7c7cb 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimtenant.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimtenant.json
@@ -682,4 +682,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimusers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimusers.json
index ab5849403bc7..7b4d58bacbc8 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimusers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/apimusers.json
@@ -783,4 +783,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApis.json
index 7b11e3d61568..4f7360ad75c7 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApis.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperations.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperations.json
index 31c7394da928..b2d7b8bb0b0a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperations.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperations.json
@@ -9,4 +9,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperationsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperationsPolicies.json
index 0b30d8f2c8cf..94fa3077c4aa 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperationsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisOperationsPolicies.json
@@ -10,4 +10,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisPolicies.json
index 4384d6bc1063..4061d52a70e7 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisPolicies.json
@@ -9,4 +9,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisSchemas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisSchemas.json
index b54384886a28..a9ad7cd7cf71 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisSchemas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteApisSchemas.json
@@ -10,4 +10,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteAuthorizationServers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteAuthorizationServers.json
index b6e722a03e8b..3240ff09153a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteAuthorizationServers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteAuthorizationServers.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteBackends.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteBackends.json
index d38bbb213b24..4ebe29101d0b 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteBackends.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteBackends.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteCertificates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteCertificates.json
index e4d8d9bd4d12..2d918b820bbc 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteCertificates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteCertificates.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroups.json
index 12515325eef0..8e957469fb1f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroups.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroupsUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroupsUsers.json
index c74c5b44259d..1c9e34d820e7 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroupsUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteGroupsUsers.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteIdentityProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteIdentityProviders.json
index 53cd338b4348..ff451cc51300 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteIdentityProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteIdentityProviders.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteLoggers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteLoggers.json
index ecbe71349052..cf576e71d3ad 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteLoggers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteLoggers.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProviders.json
index 5ec6c1fd1a7b..d9ecc3ec01f9 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteOpenIdConnectProviders.json
@@ -1,11 +1,11 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "opid": "templateOpenIdConnect3",
- "If-Match": "*"
- },
- "responses": {
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "opid": "templateOpenIdConnect3",
+ "If-Match": "*"
+ },
+ "responses": {
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeletePolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeletePolicies.json
index e780fc2f904b..ecc5fba01533 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeletePolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeletePolicies.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProducts.json
index a9285d4239e4..6cc52e8c5894 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProducts.json
@@ -9,4 +9,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsApis.json
index dbe8939ad726..363c25f52756 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsApis.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsGroups.json
index 1666067c2243..5b51ec24b280 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsGroups.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsPolicies.json
index c93165f652aa..58d9eae3e8eb 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProductsPolicies.json
@@ -9,4 +9,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProperties.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProperties.json
index 9c5d042400d3..6770f5cbd59a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProperties.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteProperties.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteSubscriptions.json
index 50b19ddd6898..047253123cad 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteSubscriptions.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteTemplates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteTemplates.json
index 67ac544b9873..403c78afc25f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteTemplates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteTemplates.json
@@ -9,4 +9,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteUsers.json
index 1aeb34dea1ea..9add6b5c0b55 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementDeleteUsers.json
@@ -10,4 +10,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApis.json
index 88da625c288a..0f4dd66a2029 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApis.json
@@ -25,4 +25,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperations.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperations.json
index 7a95914344f2..1e2988ad432e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperations.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperations.json
@@ -23,4 +23,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperationsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperationsPolicies.json
index f39a24cde435..8952b3e1c271 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperationsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisOperationsPolicies.json
@@ -15,4 +15,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisPolicies.json
index 08606bf71dfc..726cd86c2c65 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisPolicies.json
@@ -14,4 +14,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisSchemas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisSchemas.json
index adcce96edf23..793f61327802 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisSchemas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetApisSchemas.json
@@ -17,4 +17,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetAuthorizationServers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetAuthorizationServers.json
index 32797523e36a..f4c64b0da35e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetAuthorizationServers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetAuthorizationServers.json
@@ -36,4 +36,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetBackends.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetBackends.json
index dc3cda87b98b..6e72c28ed814 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetBackends.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetBackends.json
@@ -26,4 +26,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetCertificates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetCertificates.json
index 6c434b812420..f1f46ce0f032 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetCertificates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetCertificates.json
@@ -15,4 +15,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetGroups.json
index 1c5ec7645bab..f0dde82bc823 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetGroups.json
@@ -15,4 +15,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetIdentityProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetIdentityProviders.json
index 38fd8cd9769a..d984727f8140 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetIdentityProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetIdentityProviders.json
@@ -15,4 +15,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetLoggers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetLoggers.json
index 0f4f821fae75..ca2f935c7eb0 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetLoggers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetLoggers.json
@@ -19,4 +19,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetOpenIdConnectProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetOpenIdConnectProviders.json
index 13a4aa65ffd6..00f8cbe4d954 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetOpenIdConnectProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetOpenIdConnectProviders.json
@@ -14,4 +14,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPolicies.json
index 617809460b2b..bc54b3474b59 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPolicies.json
@@ -13,4 +13,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsDelegation.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsDelegation.json
index 871014648d40..206cfdbab386 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsDelegation.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsDelegation.json
@@ -1,20 +1,20 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "url": "http://contoso.com/delegation",
- "validationKey": "nVF7aKIvr9mV/RM5lOD0sYoi8ThXTRHQP7o66hvUmjCDkPKR3qxPu/otJcNciz2aQdqPuzJH3ECG4TU2yZjQ7Q==",
- "subscriptions": {
- "enabled": true
- },
- "userRegistration": {
- "enabled": true
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "url": "http://contoso.com/delegation",
+ "validationKey": "nVF7aKIvr9mV/RM5lOD0sYoi8ThXTRHQP7o66hvUmjCDkPKR3qxPu/otJcNciz2aQdqPuzJH3ECG4TU2yZjQ7Q==",
+ "subscriptions": {
+ "enabled": true
+ },
+ "userRegistration": {
+ "enabled": true
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignIn.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignIn.json
index 4a18f66e7227..b46509cf2847 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignIn.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignIn.json
@@ -1,13 +1,13 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "enabled": true
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "enabled": true
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignUp.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignUp.json
index ab99866f5bd8..9bf7976c2e13 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignUp.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetPortalSettingsSignUp.json
@@ -1,18 +1,18 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "enabled": true,
- "termsOfService": {
- "text": "Terms of service text.",
- "enabled": true,
- "consentRequired": true
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "enabled": true,
+ "termsOfService": {
+ "text": "Terms of service text.",
+ "enabled": true,
+ "consentRequired": true
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProducts.json
index 3470cee88594..d4d8708dde85 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProducts.json
@@ -17,4 +17,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProductsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProductsPolicies.json
index ba8d81e21b8a..b4c0dcd28fdd 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProductsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProductsPolicies.json
@@ -14,4 +14,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProperties.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProperties.json
index c6ca19deb4b0..033ae95205a8 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProperties.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetProperties.json
@@ -16,4 +16,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotas.json
index bf8caa1600a8..95235b22e69b 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotas.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotasByQuotaPeriod.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotasByQuotaPeriod.json
index 92a8b6fdc05f..d79353f81a42 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotasByQuotaPeriod.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetQuotasByQuotaPeriod.json
@@ -23,4 +23,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByApi.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByApi.json
index 1f033b2ea44c..a3f0fafe4293 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByApi.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByApi.json
@@ -1,53 +1,53 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "name": "Echo API",
- "apiId": "/apis/5600b59475ff190048040001",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- },
- {
- "name": "httpbin",
- "apiId": "/apis/57a03a13e4bbd5119c8b19e9",
- "callCountSuccess": 13,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 14,
- "bandwidth": 11019,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1015.7607923076923,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 957.094776923077,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 1697.3612
- }
- ],
- "count": 2,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "Echo API",
+ "apiId": "/apis/5600b59475ff190048040001",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ },
+ {
+ "name": "httpbin",
+ "apiId": "/apis/57a03a13e4bbd5119c8b19e9",
+ "callCountSuccess": 13,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 14,
+ "bandwidth": 11019,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1015.7607923076923,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 957.094776923077,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 1697.3612
+ }
+ ],
+ "count": 2,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByGeo.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByGeo.json
index 1dee3861119f..159afc0669e4 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByGeo.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByGeo.json
@@ -1,36 +1,36 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "country": "US",
- "region": "WA",
- "zip": "98052",
- "callCountSuccess": 13,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 14,
- "bandwidth": 11019,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1015.7607923076923,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 957.094776923077,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 1697.3612
- }
- ],
- "count": 1,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "country": "US",
+ "region": "WA",
+ "zip": "98052",
+ "callCountSuccess": 13,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 14,
+ "bandwidth": 11019,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1015.7607923076923,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 957.094776923077,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 1697.3612
+ }
+ ],
+ "count": 1,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByOperation.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByOperation.json
index 0bdced041608..c1a5dc95aa36 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByOperation.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByOperation.json
@@ -1,74 +1,74 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "name": "get",
- "apiId": "/apis/57a03a13e4bbd5119c8b19e9",
- "operationId": "/apis/57a03a13e4bbd5119c8b19e9/operations/57a03a1dd8d14f0a780d7d14",
- "callCountSuccess": 13,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 14,
- "bandwidth": 11019,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1015.7607923076923,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 957.094776923077,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 1697.3612
- },
- {
- "name": "GetWeatherInformation",
- "apiId": "/apis/57c999d1e4bbd50c988cb2c3",
- "operationId": "/apis/57c999d1e4bbd50c988cb2c3/operations/57c999d1e4bbd50df889c93e",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- },
- {
- "name": "GetCityForecastByZIP",
- "apiId": "/apis/57c999d1e4bbd50c988cb2c3",
- "operationId": "/apis/57c999d1e4bbd50c988cb2c3/operations/57c999d1e4bbd50df889c93f",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- }
- ],
- "count": 3,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "get",
+ "apiId": "/apis/57a03a13e4bbd5119c8b19e9",
+ "operationId": "/apis/57a03a13e4bbd5119c8b19e9/operations/57a03a1dd8d14f0a780d7d14",
+ "callCountSuccess": 13,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 14,
+ "bandwidth": 11019,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1015.7607923076923,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 957.094776923077,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 1697.3612
+ },
+ {
+ "name": "GetWeatherInformation",
+ "apiId": "/apis/57c999d1e4bbd50c988cb2c3",
+ "operationId": "/apis/57c999d1e4bbd50c988cb2c3/operations/57c999d1e4bbd50df889c93e",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ },
+ {
+ "name": "GetCityForecastByZIP",
+ "apiId": "/apis/57c999d1e4bbd50c988cb2c3",
+ "operationId": "/apis/57c999d1e4bbd50c988cb2c3/operations/57c999d1e4bbd50df889c93f",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ }
+ ],
+ "count": 3,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByProduct.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByProduct.json
index ea6eb0765b39..74f05498d50e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByProduct.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByProduct.json
@@ -1,53 +1,53 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "name": "Starter",
- "productId": "/products/5600b59475ff190048060001",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- },
- {
- "name": "Unlimited",
- "productId": "/products/5600b59475ff190048060002",
- "callCountSuccess": 13,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 14,
- "bandwidth": 11019,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1015.7607923076923,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 957.094776923077,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 1697.3612
- }
- ],
- "count": 2,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "Starter",
+ "productId": "/products/5600b59475ff190048060001",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ },
+ {
+ "name": "Unlimited",
+ "productId": "/products/5600b59475ff190048060002",
+ "callCountSuccess": 13,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 14,
+ "bandwidth": 11019,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1015.7607923076923,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 957.094776923077,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 1697.3612
+ }
+ ],
+ "count": 2,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByRequest.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByRequest.json
index 94665c8dd110..432e9f2bd93a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByRequest.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByRequest.json
@@ -1,54 +1,54 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "apiId": "/apis/5931a75ae4bbd512a88c680b",
- "operationId": "/apis/5931a75ae4bbd512a88c680b/operations/-",
- "productId": "/products/-",
- "userId": "/users/1",
- "method": "GET",
- "url": "https://apimService1.azure-api.net/echo/resource?param1=sample",
- "ipAddress": "207.xx.155.xx",
- "responseCode": 404,
- "responseSize": 405,
- "timestamp": "2017-06-03T00:17:00.1649134Z",
- "cache": "none",
- "apiTime": 221.1544,
- "serviceTime": 0.0,
- "apiRegion": "East Asia",
- "subscriptionId": "/subscriptions/5600b59475ff190048070002",
- "requestId": "63e7119c-26aa-433c-96d7-f6f3267ff52f",
- "requestSize": 0
- },
- {
- "apiId": "/apis/5931a75ae4bbd512a88c680b",
- "operationId": "/apis/5931a75ae4bbd512a88c680b/operations/-",
- "productId": "/products/-",
- "userId": "/users/1",
- "method": "POST",
- "url": "https://apimService1.azure-api.net/echo/resource",
- "ipAddress": "207.xx.155.xx",
- "responseCode": 404,
- "responseSize": 403,
- "timestamp": "2017-06-03T00:17:20.5255131Z",
- "cache": "none",
- "apiTime": 6.6754000000000007,
- "serviceTime": 0.0,
- "apiRegion": "East Asia",
- "subscriptionId": "/subscriptions/5600b59475ff190048070002",
- "requestId": "e581b7f7-c9ec-4fc6-8ab9-3855d9b00b04",
- "requestSize": 0
- }
- ],
- "count": 2
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "apiId": "/apis/5931a75ae4bbd512a88c680b",
+ "operationId": "/apis/5931a75ae4bbd512a88c680b/operations/-",
+ "productId": "/products/-",
+ "userId": "/users/1",
+ "method": "GET",
+ "url": "https://apimService1.azure-api.net/echo/resource?param1=sample",
+ "ipAddress": "207.xx.155.xx",
+ "responseCode": 404,
+ "responseSize": 405,
+ "timestamp": "2017-06-03T00:17:00.1649134Z",
+ "cache": "none",
+ "apiTime": 221.1544,
+ "serviceTime": 0.0,
+ "apiRegion": "East Asia",
+ "subscriptionId": "/subscriptions/5600b59475ff190048070002",
+ "requestId": "63e7119c-26aa-433c-96d7-f6f3267ff52f",
+ "requestSize": 0
+ },
+ {
+ "apiId": "/apis/5931a75ae4bbd512a88c680b",
+ "operationId": "/apis/5931a75ae4bbd512a88c680b/operations/-",
+ "productId": "/products/-",
+ "userId": "/users/1",
+ "method": "POST",
+ "url": "https://apimService1.azure-api.net/echo/resource",
+ "ipAddress": "207.xx.155.xx",
+ "responseCode": 404,
+ "responseSize": 403,
+ "timestamp": "2017-06-03T00:17:20.5255131Z",
+ "cache": "none",
+ "apiTime": 6.6754000000000007,
+ "serviceTime": 0.0,
+ "apiRegion": "East Asia",
+ "subscriptionId": "/subscriptions/5600b59475ff190048070002",
+ "requestId": "e581b7f7-c9ec-4fc6-8ab9-3855d9b00b04",
+ "requestSize": 0
+ }
+ ],
+ "count": 2
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsBySubscription.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsBySubscription.json
index 525482e6831f..827c21f499e4 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsBySubscription.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsBySubscription.json
@@ -1,77 +1,77 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "name": "",
- "userId": "/users/1",
- "productId": "/products/5600b59475ff190048060001",
- "subscriptionId": "/subscriptions/5600b59475ff190048070001",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- },
- {
- "name": "",
- "userId": "/users/1",
- "productId": "/products/5600b59475ff190048060002",
- "subscriptionId": "/subscriptions/5600b59475ff190048070002",
- "callCountSuccess": 13,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 14,
- "bandwidth": 11019,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1015.7607923076923,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 957.094776923077,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 1697.3612
- },
- {
- "name": "",
- "userId": "/users/1",
- "productId": "/products/5702e97e5157a50f48dce801",
- "subscriptionId": "/subscriptions/5702e97e5157a50a9c733303",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- }
- ],
- "count": 3,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "",
+ "userId": "/users/1",
+ "productId": "/products/5600b59475ff190048060001",
+ "subscriptionId": "/subscriptions/5600b59475ff190048070001",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ },
+ {
+ "name": "",
+ "userId": "/users/1",
+ "productId": "/products/5600b59475ff190048060002",
+ "subscriptionId": "/subscriptions/5600b59475ff190048070002",
+ "callCountSuccess": 13,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 14,
+ "bandwidth": 11019,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1015.7607923076923,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 957.094776923077,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 1697.3612
+ },
+ {
+ "name": "",
+ "userId": "/users/1",
+ "productId": "/products/5702e97e5157a50f48dce801",
+ "subscriptionId": "/subscriptions/5702e97e5157a50a9c733303",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ }
+ ],
+ "count": 3,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByTime.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByTime.json
index bbfef44ad637..4bd6086fcd86 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByTime.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByTime.json
@@ -1,54 +1,54 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'",
- "interval": "PT15M"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "timestamp": "2017-06-03T00:15:00Z",
- "interval": "PT15M",
- "callCountSuccess": 4,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 4,
- "bandwidth": 3243,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1337.46335,
- "apiTimeMin": 885.0839000000001,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 1255.917425,
- "serviceTimeMin": 882.8264,
- "serviceTimeMax": 1697.3612
- },
- {
- "timestamp": "2017-06-03T00:30:00Z",
- "interval": "PT15M",
- "callCountSuccess": 9,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 10,
- "bandwidth": 7776,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 872.7818777777778,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1093.8407,
- "serviceTimeAvg": 824.2847111111112,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 973.2262000000001
- }
- ],
- "count": 2,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'",
+ "interval": "PT15M"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "timestamp": "2017-06-03T00:15:00Z",
+ "interval": "PT15M",
+ "callCountSuccess": 4,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 4,
+ "bandwidth": 3243,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1337.46335,
+ "apiTimeMin": 885.0839000000001,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 1255.917425,
+ "serviceTimeMin": 882.8264,
+ "serviceTimeMax": 1697.3612
+ },
+ {
+ "timestamp": "2017-06-03T00:30:00Z",
+ "interval": "PT15M",
+ "callCountSuccess": 9,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 10,
+ "bandwidth": 7776,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 872.7818777777778,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1093.8407,
+ "serviceTimeAvg": 824.2847111111112,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 973.2262000000001
+ }
+ ],
+ "count": 2,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByUser.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByUser.json
index 05e4d066f3fc..8d6f3ec0dcc9 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByUser.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetReportsByUser.json
@@ -1,71 +1,71 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01",
- "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "name": "Administrator",
- "userId": "/users/1",
- "callCountSuccess": 13,
- "callCountBlocked": 1,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 14,
- "bandwidth": 11019,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 1015.7607923076923,
- "apiTimeMin": 330.3206,
- "apiTimeMax": 1819.2173,
- "serviceTimeAvg": 957.094776923077,
- "serviceTimeMin": 215.24,
- "serviceTimeMax": 1697.3612
- },
- {
- "name": "Samir Solanki",
- "userId": "/users/56eaec62baf08b06e46d27fd",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- },
- {
- "name": "Anonymous",
- "userId": "/users/54c800b332965a0035030000",
- "callCountSuccess": 0,
- "callCountBlocked": 0,
- "callCountFailed": 0,
- "callCountOther": 0,
- "callCountTotal": 0,
- "bandwidth": 0,
- "cacheHitCount": 0,
- "cacheMissCount": 0,
- "apiTimeAvg": 0,
- "apiTimeMin": 0,
- "apiTimeMax": 0,
- "serviceTimeAvg": 0,
- "serviceTimeMin": 0,
- "serviceTimeMax": 0
- }
- ],
- "count": 3,
- "nextLink": ""
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01",
+ "$filter": "timestamp ge datetime'2017-06-01T00:00:00' and timestamp le datetime'2017-06-04T00:00:00'"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "Administrator",
+ "userId": "/users/1",
+ "callCountSuccess": 13,
+ "callCountBlocked": 1,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 14,
+ "bandwidth": 11019,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 1015.7607923076923,
+ "apiTimeMin": 330.3206,
+ "apiTimeMax": 1819.2173,
+ "serviceTimeAvg": 957.094776923077,
+ "serviceTimeMin": 215.24,
+ "serviceTimeMax": 1697.3612
+ },
+ {
+ "name": "Samir Solanki",
+ "userId": "/users/56eaec62baf08b06e46d27fd",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ },
+ {
+ "name": "Anonymous",
+ "userId": "/users/54c800b332965a0035030000",
+ "callCountSuccess": 0,
+ "callCountBlocked": 0,
+ "callCountFailed": 0,
+ "callCountOther": 0,
+ "callCountTotal": 0,
+ "bandwidth": 0,
+ "cacheHitCount": 0,
+ "cacheMissCount": 0,
+ "apiTimeAvg": 0,
+ "apiTimeMin": 0,
+ "apiTimeMax": 0,
+ "serviceTimeAvg": 0,
+ "serviceTimeMin": 0,
+ "serviceTimeMax": 0
+ }
+ ],
+ "count": 3,
+ "nextLink": ""
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetSubscriptions.json
index e602dd48653c..50b94e8cc52b 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetSubscriptions.json
@@ -20,4 +20,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTemplates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTemplates.json
index fa3cefafd62f..985708734e04 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTemplates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTemplates.json
@@ -43,4 +43,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTenant.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTenant.json
index 7f5202a8b5dc..3bef86094792 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTenant.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetTenant.json
@@ -15,4 +15,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetUsers.json
index 630389782c89..897b6751b558 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementGetUsers.json
@@ -23,4 +23,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsGroups.json
index de6552334855..34137c4f42ed 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsGroups.json
@@ -8,4 +8,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsPolicies.json
index 256486e6c467..8c107c1f85f7 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementHeadProductsPolicies.json
@@ -9,4 +9,4 @@
"responses": {
"200": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApis.json
index 8156ef4bfbad..cd5a80dcf52e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApis.json
@@ -47,4 +47,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperations.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperations.json
index 8f77ceae180a..72386e748745 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperations.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperations.json
@@ -68,4 +68,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperationsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperationsPolicies.json
index 7adb32b19488..c5b02cc9fb6d 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperationsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisOperationsPolicies.json
@@ -18,4 +18,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisPolicies.json
index 3d183992b8bd..ce54e1da908e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisPolicies.json
@@ -20,4 +20,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisProducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisProducts.json
index 2becf4cae6a7..b10d1e19e049 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisProducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisProducts.json
@@ -30,4 +30,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisSchemas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisSchemas.json
index ff2cf4d7d793..d6fbc044de8c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisSchemas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListApisSchemas.json
@@ -9,8 +9,8 @@
"200": {
"body": {
"value": [],
- "count": 0
+ "count": 0
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListAuthorizationServers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListAuthorizationServers.json
index b56bd7616c58..07f0888ebf67 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListAuthorizationServers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListAuthorizationServers.json
@@ -61,8 +61,8 @@
"resourceOwnerPassword": "pwd"
}
],
- "count": 2
+ "count": 2
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListBackends.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListBackends.json
index 1883567c1dee..30a624f07531 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListBackends.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListBackends.json
@@ -138,8 +138,8 @@
"protocol": "http"
}
],
- "count": 4
+ "count": 4
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListCertificates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListCertificates.json
index d3eb265009b0..e551177a95fb 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListCertificates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListCertificates.json
@@ -43,4 +43,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroups.json
index a7e8aa4ec8e8..327fd294621f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroups.json
@@ -36,4 +36,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroupsUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroupsUsers.json
index e2a0413d1e5f..ca4c564ab84e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroupsUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListGroupsUsers.json
@@ -56,4 +56,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListIdentityProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListIdentityProviders.json
index 2592ddf0ffa7..fab2e6b9d640 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListIdentityProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListIdentityProviders.json
@@ -12,4 +12,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListLoggers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListLoggers.json
index 33ebb5e70150..bb99fbf06f37 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListLoggers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListLoggers.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListOpenIdConnectProvider.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListOpenIdConnectProvider.json
index 2cb03818b908..2eddedfefa36 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListOpenIdConnectProvider.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListOpenIdConnectProvider.json
@@ -1,21 +1,21 @@
{
- "parameters": {
- "apimBaseUrl": "apimservice1.management.azure-api.net",
- "api-version": "2017-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/openidConnectProviders/op1",
- "name": "templateoidprovider3",
- "metadataEndpoint": "https://oidprovider-template3.net",
- "clientId": "oidprovidertemplate3"
- }
- ],
- "count": 1
- }
- }
+ "parameters": {
+ "apimBaseUrl": "apimservice1.management.azure-api.net",
+ "api-version": "2017-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/openidConnectProviders/op1",
+ "name": "templateoidprovider3",
+ "metadataEndpoint": "https://oidprovider-template3.net",
+ "clientId": "oidprovidertemplate3"
+ }
+ ],
+ "count": 1
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicies.json
index 704cec56b036..16d434c08623 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicies.json
@@ -20,4 +20,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicySnippets.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicySnippets.json
index 671a51254315..0438ef638d00 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicySnippets.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListPolicySnippets.json
@@ -245,4 +245,4 @@
]
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProducts.json
index 5e4f0410bda5..7f255bae7621 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProducts.json
@@ -34,4 +34,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsApis.json
index ebbbf76813c6..805dff025c87 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsApis.json
@@ -26,4 +26,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsGroups.json
index 3007999f88c4..7a2a1d29fe68 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsGroups.json
@@ -27,4 +27,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsPolicies.json
index 50badb8f5a22..8f8f7201962d 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsPolicies.json
@@ -20,4 +20,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsSubscriptions.json
index 28d9af247efc..b950f12df71e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProductsSubscriptions.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProperties.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProperties.json
index dd094c0e47e4..ca4aaa4efe2c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProperties.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListProperties.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListRegions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListRegions.json
index d5b5c781f6f3..d63a2858b024 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListRegions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListRegions.json
@@ -18,4 +18,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListSubscriptions.json
index 3987f4a64cb7..95a8d9bfef9f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListSubscriptions.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTemplates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTemplates.json
index 8484032671b5..f7660f27c21a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTemplates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTemplates.json
@@ -204,4 +204,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantGit.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantGit.json
index 2c5589fe370c..1b1e9f05abec 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantGit.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantGit.json
@@ -14,4 +14,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantSyncState.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantSyncState.json
index 29f68961d9a4..85168d3819e7 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantSyncState.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListTenantSyncState.json
@@ -17,4 +17,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsers.json
index 5930e1d8babf..91968a8f7ac4 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsers.json
@@ -28,4 +28,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersGroups.json
index e71577a20a92..78f7bd87e111 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersGroups.json
@@ -21,4 +21,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersIdentities.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersIdentities.json
index b84717d4779a..0a49624d3aaf 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersIdentities.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersIdentities.json
@@ -18,4 +18,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersSubscriptions.json
index eca96d9eb737..68476d41fa29 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementListUsersSubscriptions.json
@@ -25,4 +25,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApis.json
index b7d6a320e82f..d611f7d7b89f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApis.json
@@ -11,4 +11,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApisOperations.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApisOperations.json
index 99ceba48268b..7a92232fc4a8 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApisOperations.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchApisOperations.json
@@ -28,4 +28,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchAuthorizationServers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchAuthorizationServers.json
index 6f2375e0b231..fbab4636ff86 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchAuthorizationServers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchAuthorizationServers.json
@@ -11,4 +11,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchBackends.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchBackends.json
index 6e901fb0dfff..1e1705d04619 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchBackends.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchBackends.json
@@ -15,4 +15,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchGroups.json
index 9484dff61aa2..5d38959526e3 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchGroups.json
@@ -12,4 +12,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchIdentityProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchIdentityProviders.json
index 1d312d074b0b..b5ebc286094c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchIdentityProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchIdentityProviders.json
@@ -12,4 +12,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchLoggers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchLoggers.json
index 29884b6871a5..820ef33d222b 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchLoggers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchLoggers.json
@@ -14,4 +14,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchOpenIdConnectProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchOpenIdConnectProviders.json
index 4863b95037bf..9f9987725b9f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchOpenIdConnectProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchOpenIdConnectProviders.json
@@ -11,4 +11,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsDelegation.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsDelegation.json
index fa9513521b72..68f5fe00ab8a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsDelegation.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsDelegation.json
@@ -17,4 +17,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignIn.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignIn.json
index 166d3197ef18..525b36dcacef 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignIn.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignIn.json
@@ -10,4 +10,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignUp.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignUp.json
index ced4f89deafb..d28c1d2ec757 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignUp.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchPortalSettingsSignUp.json
@@ -15,4 +15,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProducts.json
index ad0d9db29fc5..226a41001eb3 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProducts.json
@@ -12,4 +12,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProperties.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProperties.json
index dd99e050b1c6..ad2e80ed4324 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProperties.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchProperties.json
@@ -13,4 +13,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotas.json
index 3f4d9211508f..ec412c16c233 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotas.json
@@ -11,4 +11,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotasByQuotaPeriod.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotasByQuotaPeriod.json
index e556747934c9..3aeb07769c14 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotasByQuotaPeriod.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchQuotasByQuotaPeriod.json
@@ -12,4 +12,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchSubscriptions.json
index adf8925d444a..c5d6c28139c0 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchSubscriptions.json
@@ -12,4 +12,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTemplates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTemplates.json
index 953ac905f71d..1a86900fbd18 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTemplates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTemplates.json
@@ -9,6 +9,6 @@
}
},
"responses": {
- "204": { }
+ "204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTenant.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTenant.json
index f60a5e24a4c6..f5d4ec8edab1 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTenant.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchTenant.json
@@ -11,4 +11,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchUsers.json
index 40936e5fc112..6e149f9bcd03 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPatchUsers.json
@@ -11,4 +11,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegeneratePrimaryKey.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegeneratePrimaryKey.json
index ecdbd8200afd..a8fe895faccf 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegeneratePrimaryKey.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegeneratePrimaryKey.json
@@ -7,4 +7,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegenerateSecondaryKey.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegenerateSecondaryKey.json
index 2bddc0c2cc5c..6639397c19bf 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegenerateSecondaryKey.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostSubscriptionsRegenerateSecondaryKey.json
@@ -7,4 +7,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantDeploy.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantDeploy.json
index 649787289cef..34b098c107d2 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantDeploy.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantDeploy.json
@@ -26,4 +26,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantGit.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantGit.json
index 409015683d66..d7899955923f 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantGit.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantGit.json
@@ -7,4 +7,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegeneratePrimaryKey.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegeneratePrimaryKey.json
index b4014aa4ffc6..4bc0205f2320 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegeneratePrimaryKey.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegeneratePrimaryKey.json
@@ -7,4 +7,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegenerateSecondaryKey.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegenerateSecondaryKey.json
index b4014aa4ffc6..4bc0205f2320 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegenerateSecondaryKey.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantRegenerateSecondaryKey.json
@@ -7,4 +7,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantSave.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantSave.json
index be91d3529295..79490b06052b 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantSave.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantSave.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantValidate.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantValidate.json
index d2ea4fef164f..72a33ecb7729 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantValidate.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostTenantValidate.json
@@ -165,4 +165,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersGenerateSsoUrl.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersGenerateSsoUrl.json
index 22659f79b071..f51d79cdeab3 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersGenerateSsoUrl.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersGenerateSsoUrl.json
@@ -12,4 +12,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersToken.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersToken.json
index 296d4472dc06..be407e3b670e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersToken.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPostUsersToken.json
@@ -15,4 +15,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApis.json
index 4a90635aa761..0ed56cad1a7e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApis.json
@@ -6,7 +6,7 @@
"api-version": "2017-03-01",
"Accept": "application/json",
"parameters": {
- "name": "api_5a58bab6a40f7ef2e05bc76a",
+ "name": "api_5a58bab6a40f7ef2e05bc76a",
"description": "description_5a58bab6a40f7ef2e05bc76b",
"serviceUrl": "http://contoso/5a58bab6a40f7ef2e05bc76c",
"path": "suffix_5a58bab6a40f7ef2e05bc76d",
@@ -53,4 +53,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperations.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperations.json
index b179ce737ca7..b2d99547b626 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperations.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperations.json
@@ -45,4 +45,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperationsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperationsPolicies.json
index 1e43f5d2dbba..554283740818 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperationsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisOperationsPolicies.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisPolicies.json
index c640281d9161..2bb4c2716791 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisPolicies.json
@@ -23,4 +23,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisSchemas.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisSchemas.json
index 604caa10e2c7..8c024a0e79a4 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisSchemas.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutApisSchemas.json
@@ -31,4 +31,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutAuthorizationServers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutAuthorizationServers.json
index 83ccd5572b24..3403874e1f79 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutAuthorizationServers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutAuthorizationServers.json
@@ -42,7 +42,7 @@
],
"clientAuthenticationMethod": [
"Basic"
- ],
+ ],
"tokenEndpoint": "https://www.contoso.com/oauth2/token",
"supportState": true,
"defaultScope": "read write",
@@ -70,7 +70,7 @@
],
"clientAuthenticationMethod": [
"Basic"
- ],
+ ],
"tokenEndpoint": "https://www.contoso.com/oauth2/token",
"supportState": true,
"defaultScope": "read write",
@@ -87,4 +87,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutBackends.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutBackends.json
index 5eb83112b3d1..8cfce8a99458 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutBackends.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutBackends.json
@@ -25,7 +25,7 @@
"responses": {
"201": {
"body": {
- "id": "/backends/5a58bb16a40f7ef2e05bd52d",
+ "id": "/backends/5a58bb16a40f7ef2e05bd52d",
"description": "Service Fabric Test App: 5a58bb16a40f7ef2e05bd52d",
"url": "fabric:/mytestapp/mytestservice",
"protocol": "http",
@@ -46,7 +46,7 @@
},
"200": {
"body": {
- "id": "/backends/5a58bb16a40f7ef2e05bd52d",
+ "id": "/backends/5a58bb16a40f7ef2e05bd52d",
"description": "Service Fabric Test App: 5a58bb16a40f7ef2e05bd52d",
"url": "fabric:/mytestapp/mytestservice",
"protocol": "http",
@@ -66,4 +66,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutCertificates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutCertificates.json
index de18a3bdb296..185324d88a33 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutCertificates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutCertificates.json
@@ -26,4 +26,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroups.json
index d54da68cf82b..9c9573bb520e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroups.json
@@ -26,4 +26,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroupsUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroupsUsers.json
index 2a0134b9374e..a42f05307340 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroupsUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutGroupsUsers.json
@@ -31,4 +31,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutIdentityProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutIdentityProviders.json
index 8dc430e24945..cee9cf2f4694 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutIdentityProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutIdentityProviders.json
@@ -27,4 +27,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutLoggers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutLoggers.json
index 34ad18e0c387..3265879bb07c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutLoggers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutLoggers.json
@@ -38,4 +38,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutOpenIdConnectProviders.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutOpenIdConnectProviders.json
index 524637bc4a97..f428b6af56aa 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutOpenIdConnectProviders.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutOpenIdConnectProviders.json
@@ -27,4 +27,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPolicies.json
index a5f754476b46..ae27ef4b8bac 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPolicies.json
@@ -21,4 +21,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsDelegation.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsDelegation.json
index fa9513521b72..68f5fe00ab8a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsDelegation.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsDelegation.json
@@ -17,4 +17,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignIn.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignIn.json
index 166d3197ef18..525b36dcacef 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignIn.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignIn.json
@@ -10,4 +10,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignUp.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignUp.json
index 57f3eed1836f..37f13f9a4f1a 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignUp.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutPortalSettingsSignUp.json
@@ -15,4 +15,4 @@
"responses": {
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProducts.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProducts.json
index 3efaac5a53e7..771c7593073c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProducts.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProducts.json
@@ -32,4 +32,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsApis.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsApis.json
index 1c0b96ee8068..dcdfe839ee7c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsApis.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsApis.json
@@ -29,4 +29,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsGroups.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsGroups.json
index 85762ab57306..ec571cb458fd 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsGroups.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsGroups.json
@@ -23,4 +23,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsPolicies.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsPolicies.json
index efc723e4547c..9abeeff06656 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsPolicies.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProductsPolicies.json
@@ -22,4 +22,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProperties.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProperties.json
index fde984c3033b..1a26c1b2ac6c 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProperties.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutProperties.json
@@ -27,4 +27,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutSubscriptions.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutSubscriptions.json
index a2ceb1e045e4..c17e271ff59d 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutSubscriptions.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutSubscriptions.json
@@ -37,4 +37,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutTemplates.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutTemplates.json
index 5ac2b90477c2..df7f9c7c5dd7 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutTemplates.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutTemplates.json
@@ -82,4 +82,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutUsers.json b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutUsers.json
index bea1bbd05f65..eb27d0cd874e 100644
--- a/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutUsers.json
+++ b/specification/apimanagement/control-plane/Microsoft.ApiManagement/preview/2017-03-01/examples/ApiManagementPutUsers.json
@@ -62,4 +62,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimanagement.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimanagement.json
index e620f8d2aab0..c75b7b57c3a7 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimanagement.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimanagement.json
@@ -663,4 +663,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapis.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapis.json
index 80344f3ac144..e4c8b5ee2ce8 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapis.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapis.json
@@ -4443,6 +4443,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapisByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapisByTags.json
index cbc5694dfb84..429e2a25ac9c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapisByTags.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapisByTags.json
@@ -103,4 +103,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapiversionsets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapiversionsets.json
index 5b3467b51251..48f0dcd643cf 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapiversionsets.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimapiversionsets.json
@@ -362,6 +362,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimauthorizationservers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimauthorizationservers.json
index b74bb40464d7..88035075892d 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimauthorizationservers.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimauthorizationservers.json
@@ -362,6 +362,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimbackends.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimbackends.json
index 72e964ee254e..16638a4f3e79 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimbackends.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimbackends.json
@@ -416,6 +416,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcaches.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcaches.json
index b34f4356304f..d83964d35104 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcaches.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcaches.json
@@ -359,7 +359,6 @@
}
}
},
- "definitions": { },
- "parameters": {
- }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcertificates.json
index 6c8cdaa0f036..b4e3ee6f3edd 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcertificates.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimcertificates.json
@@ -314,6 +314,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdeployment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdeployment.json
index 07602c54efdc..c23250cf927a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdeployment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdeployment.json
@@ -1605,4 +1605,4 @@
}
},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdiagnostics.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdiagnostics.json
index eac8784d5630..b40768c10448 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdiagnostics.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimdiagnostics.json
@@ -362,6 +362,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplates.json
index bb8d91a4d6de..e9db67b338d6 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplates.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplates.json
@@ -346,6 +346,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimgroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimgroups.json
index d32af6f27ca5..9ea19d56b1ee 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimgroups.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimgroups.json
@@ -576,6 +576,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimidentityprovider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimidentityprovider.json
index f6c96ecf5f15..c5e488b70d5c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimidentityprovider.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimidentityprovider.json
@@ -351,6 +351,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimissues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimissues.json
index e06b937af131..c6a39fb6003a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimissues.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimissues.json
@@ -147,4 +147,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimloggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimloggers.json
index 58b205a58307..d36e234336f0 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimloggers.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimloggers.json
@@ -375,6 +375,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnetworkstatus.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnetworkstatus.json
index 5d04f28a46f4..e7b0d50dd559 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnetworkstatus.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnetworkstatus.json
@@ -208,5 +208,5 @@
"description": "Network Status details."
}
},
- "parameters": { }
-}
\ No newline at end of file
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnotifications.json
index 60208669a6ce..5f6b4b9ad162 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnotifications.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimnotifications.json
@@ -553,6 +553,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimopenidconnectproviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimopenidconnectproviders.json
index c58bdc9830a1..30bc95b49e50 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimopenidconnectproviders.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimopenidconnectproviders.json
@@ -362,6 +362,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicies.json
index 87c836886c08..612f7516b2d8 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicies.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicies.json
@@ -293,6 +293,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicysnippets.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicysnippets.json
index 855764ea0e49..42dc836c0823 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicysnippets.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimpolicysnippets.json
@@ -95,6 +95,6 @@
}
}
},
- "definitions": { },
+ "definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimportalsettings.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimportalsettings.json
index 62ec39909e02..feead6446c6c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimportalsettings.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimportalsettings.json
@@ -611,5 +611,5 @@
}
}
},
- "definitions": { }
-}
\ No newline at end of file
+ "definitions": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproducts.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproducts.json
index a077b431654f..fdd01e05a1d1 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproducts.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproducts.json
@@ -1391,6 +1391,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproductsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproductsByTags.json
index df1f1f129f7f..57866632d491 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproductsByTags.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproductsByTags.json
@@ -103,4 +103,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproperties.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproperties.json
index 7ac6f0e7f2af..82e1f4342e6a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproperties.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimproperties.json
@@ -365,6 +365,6 @@
}
}
},
- "definitions": { },
+ "definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimquotas.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimquotas.json
index 0487f78dfb0f..fc39248da4ad 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimquotas.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimquotas.json
@@ -237,6 +237,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimregions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimregions.json
index 6bcca3ca0b09..0856d974ddd7 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimregions.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimregions.json
@@ -82,4 +82,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimreports.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimreports.json
index 99b6a14fe3c5..3a9e4eee9da2 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimreports.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimreports.json
@@ -467,6 +467,6 @@
}
}
},
- "definitions": { },
+ "definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimsubscriptions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimsubscriptions.json
index 4edd88739e39..0cf2a3532d04 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimsubscriptions.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimsubscriptions.json
@@ -452,6 +452,6 @@
}
}
},
- "definitions": { },
- "parameters":{}
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtagresources.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtagresources.json
index cce025bba27e..e0d6a8340736 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtagresources.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtagresources.json
@@ -96,4 +96,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtags.json
index ae30dc864a0d..59542bb8f494 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtags.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtags.json
@@ -371,4 +371,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtenant.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtenant.json
index 4c7b139ebc3d..da85e01a9042 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtenant.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimtenant.json
@@ -626,4 +626,4 @@
},
"definitions": {},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimusers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimusers.json
index fd801516a9ab..fca9e60e2a51 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimusers.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimusers.json
@@ -696,6 +696,6 @@
}
}
},
- "definitions": { },
- "parameters": { }
-}
\ No newline at end of file
+ "definitions": {},
+ "parameters": {}
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/definitions.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/definitions.json
index 87f482ba90e7..724ba4dec0d7 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/definitions.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/definitions.json
@@ -4992,4 +4992,4 @@
}
},
"parameters": {}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementApplyNetworkConfigurationUpdates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementApplyNetworkConfigurationUpdates.json
index 37b43fe49ed7..d1972dd54cf9 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementApplyNetworkConfigurationUpdates.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementApplyNetworkConfigurationUpdates.json
@@ -1,53 +1,53 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "parameters": {
- "location": "west us"
- }
+ "location": "west us"
+ }
+ },
+ "responses": {
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-06-01-preview"
+ }
},
- "responses": {
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-06-01-preview"
- }
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1",
+ "name": "apimService1",
+ "type": "Microsoft.ApiManagement/service",
+ "tags": {
+ "UID": "52ed5986-717b-45b4-b17c-3df8db372cff"
+ },
+ "location": "East Asia",
+ "etag": "AAAAAAAXX6Y=",
+ "properties": {
+ "publisherEmail": "admin@live.com",
+ "publisherName": "Contoso",
+ "provisioningState": "Succeeded",
+ "targetProvisioningState": "",
+ "createdAtUtc": "2015-09-22T01:50:34.7921566Z",
+ "gatewayUrl": "https://apimService1.azure-api.net",
+ "portalUrl": "https://apimService1.portal.azure-api.net",
+ "managementApiUrl": "https://apimService1.management.azure-api.net",
+ "scmUrl": "https://apimService1.scm.azure-api.net",
+ "hostnameConfigurations": [],
+ "publicIPAddresses": [
+ "207.46.155.24"
+ ],
+ "virtualNetworkConfiguration": {
+ "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/eastUsVirtualNetwork/subnets/apimSubnet"
+ },
+ "virtualNetworkType": "External"
},
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1",
- "name": "apimService1",
- "type": "Microsoft.ApiManagement/service",
- "tags": {
- "UID": "52ed5986-717b-45b4-b17c-3df8db372cff"
- },
- "location": "East Asia",
- "etag": "AAAAAAAXX6Y=",
- "properties": {
- "publisherEmail": "admin@live.com",
- "publisherName": "Contoso",
- "provisioningState": "Succeeded",
- "targetProvisioningState": "",
- "createdAtUtc": "2015-09-22T01:50:34.7921566Z",
- "gatewayUrl": "https://apimService1.azure-api.net",
- "portalUrl": "https://apimService1.portal.azure-api.net",
- "managementApiUrl": "https://apimService1.management.azure-api.net",
- "scmUrl": "https://apimService1.scm.azure-api.net",
- "hostnameConfigurations": [],
- "publicIPAddresses": [
- "207.46.155.24"
- ],
- "virtualNetworkConfiguration": {
- "subnetResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/eastUsVirtualNetwork/subnets/apimSubnet"
- },
- "virtualNetworkType": "External"
- },
- "sku": {
- "name": "Premium",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "Premium",
+ "capacity": 1
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementBackendReconnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementBackendReconnect.json
index dca6e0cdff9b..232256f79d0e 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementBackendReconnect.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementBackendReconnect.json
@@ -1,17 +1,17 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "backendId": "proxybackend",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "backendId": "proxybackend",
- "parameters": {
- "properties": {
- "after" : "PT3S"
- }
+ "properties": {
+ "after": "PT3S"
}
- },
- "responses": {
- "202": {}
}
- }
\ No newline at end of file
+ },
+ "responses": {
+ "202": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAILogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAILogger.json
index 6195910f1b8f..ef2cbd83a7f4 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAILogger.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAILogger.json
@@ -48,4 +48,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApi.json
index 1ad7ed14536f..64b6626d433c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApi.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApi.json
@@ -60,7 +60,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -95,4 +95,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiDiagnostic.json
index 39d95c5664d2..905686a9f2ef 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiDiagnostic.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiDiagnostic.json
@@ -157,4 +157,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssue.json
index ba320892f1a4..0296007fff09 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssue.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssue.json
@@ -1,49 +1,49 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "apiId": "57d1f7558aa04f15146d9d8a",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "parameters": {
+ "properties": {
+ "title": "New API issue",
+ "description": "New API issue description",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "state": "open",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc",
+ "type": "Microsoft.ApiManagement/service/apis/issues",
+ "name": "57d2ef278aa04f0ad01d6cdc",
"properties": {
- "title": "New API issue",
- "description": "New API issue description",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "state": "open",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
+ "title": "New API issue",
+ "description": "New API issue description",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "state": "open",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
}
}
},
- "responses": {
- "201": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc",
- "type": "Microsoft.ApiManagement/service/apis/issues",
- "name": "57d2ef278aa04f0ad01d6cdc",
- "properties": {
- "title": "New API issue",
- "description": "New API issue description",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "state": "open",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
- }
- }
- },
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc",
- "type": "Microsoft.ApiManagement/service/apis/issues",
- "name": "57d2ef278aa04f0ad01d6cdc",
- "properties": {
- "title": "New API issue",
- "description": "New API issue description",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "state": "open",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
- }
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc",
+ "type": "Microsoft.ApiManagement/service/apis/issues",
+ "name": "57d2ef278aa04f0ad01d6cdc",
+ "properties": {
+ "title": "New API issue",
+ "description": "New API issue description",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "state": "open",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
}
}
}
- }
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueAttachment.json
index 6fda2fc22ed7..063772581c08 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueAttachment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueAttachment.json
@@ -1,44 +1,44 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "apiId": "57d1f7558aa04f15146d9d8a",
+ "attachmentId": "57d2ef278aa04f0888cba3f3",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "attachmentId": "57d2ef278aa04f0888cba3f3",
- "parameters": {
+ "properties": {
+ "title": "Issue attachment.",
+ "contentFormat": "image/jpeg",
+ "content": "IEJhc2U2NA=="
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/attachments/57d2ef278aa04f0888cba3f3",
+ "type": "Microsoft.ApiManagement/service/apis/issues/attachments",
+ "name": "57d2ef278aa04f0888cba3f3",
"properties": {
- "title": "Issue attachment.",
- "contentFormat": "image/jpeg",
- "content": "IEJhc2U2NA=="
+ "title": "Issue attachment.",
+ "contentFormat": "link",
+ "content": "https://.../image.jpg"
}
}
},
- "responses": {
- "201": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/attachments/57d2ef278aa04f0888cba3f3",
- "type": "Microsoft.ApiManagement/service/apis/issues/attachments",
- "name": "57d2ef278aa04f0888cba3f3",
- "properties": {
- "title": "Issue attachment.",
- "contentFormat": "link",
- "content": "https://.../image.jpg"
- }
- }
- },
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/attachments/57d2ef278aa04f0888cba3f3",
- "type": "Microsoft.ApiManagement/service/apis/issues/attachments",
- "name": "57d2ef278aa04f0888cba3f3",
- "properties": {
- "title": "Issue attachment.",
- "contentFormat": "link",
- "content": "https://.../image.jpg"
- }
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/attachments/57d2ef278aa04f0888cba3f3",
+ "type": "Microsoft.ApiManagement/service/apis/issues/attachments",
+ "name": "57d2ef278aa04f0888cba3f3",
+ "properties": {
+ "title": "Issue attachment.",
+ "contentFormat": "link",
+ "content": "https://.../image.jpg"
}
}
}
- }
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueComment.json
index 611e66df18a4..f5d6d5a88e11 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueComment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiIssueComment.json
@@ -1,44 +1,44 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "apiId": "57d1f7558aa04f15146d9d8a",
+ "commentId": "599e29ab193c3c0bd0b3e2fb",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "commentId": "599e29ab193c3c0bd0b3e2fb",
- "parameters": {
+ "properties": {
+ "text": "Issue comment.",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/comments/599e29ab193c3c0bd0b3e2fb",
+ "type": "Microsoft.ApiManagement/service/apis/issues/comments",
+ "name": "599e29ab193c3c0bd0b3e2fb",
"properties": {
- "text": "Issue comment.",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
+ "text": "Issue comment.",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
}
}
},
- "responses": {
- "201": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/comments/599e29ab193c3c0bd0b3e2fb",
- "type": "Microsoft.ApiManagement/service/apis/issues/comments",
- "name": "599e29ab193c3c0bd0b3e2fb",
- "properties": {
- "text": "Issue comment.",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
- }
- }
- },
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/comments/599e29ab193c3c0bd0b3e2fb",
- "type": "Microsoft.ApiManagement/service/apis/issues/comments",
- "name": "599e29ab193c3c0bd0b3e2fb",
- "properties": {
- "text": "Issue comment.",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
- }
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/comments/599e29ab193c3c0bd0b3e2fb",
+ "type": "Microsoft.ApiManagement/service/apis/issues/comments",
+ "name": "599e29ab193c3c0bd0b3e2fb",
+ "properties": {
+ "text": "Issue comment.",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
}
}
}
- }
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperation.json
index 73319696eaf1..f816b639bba9 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperation.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperation.json
@@ -1,131 +1,131 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "PetStoreTemplate2",
+ "operationId": "newoperations",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "PetStoreTemplate2",
- "operationId":"newoperations",
- "parameters": {
- "name": "newoperation",
- "properties": {
- "displayName": "createUser2",
- "method": "POST",
- "urlTemplate": "/user1",
- "templateParameters": [],
- "description": "This can only be done by the logged in user.",
- "request": {
- "description": "Created user object",
- "queryParameters": [],
- "headers": [],
- "representations": [
- {
- "contentType": "application/json",
- "schemaId": "592f6c1d0af5840ca8897f0c",
- "typeName": "User"
- }
- ]
+ "name": "newoperation",
+ "properties": {
+ "displayName": "createUser2",
+ "method": "POST",
+ "urlTemplate": "/user1",
+ "templateParameters": [],
+ "description": "This can only be done by the logged in user.",
+ "request": {
+ "description": "Created user object",
+ "queryParameters": [],
+ "headers": [],
+ "representations": [
+ {
+ "contentType": "application/json",
+ "schemaId": "592f6c1d0af5840ca8897f0c",
+ "typeName": "User"
+ }
+ ]
+ },
+ "responses": [
+ {
+ "statusCode": 200,
+ "description": "successful operation",
+ "representations": [
+ {
+ "contentType": "application/xml"
+ },
+ {
+ "contentType": "application/json"
+ }
+ ],
+ "headers": []
+ }
+ ]
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/PetStoreTemplate2/operations/newoperations",
+ "type": "Microsoft.ApiManagement/service/apis/operations",
+ "name": "newoperations",
+ "properties": {
+ "displayName": "createUser2",
+ "method": "POST",
+ "urlTemplate": "/user1",
+ "templateParameters": [],
+ "description": "This can only be done by the logged in user.",
+ "request": {
+ "description": "Created user object",
+ "queryParameters": [],
+ "headers": [],
+ "representations": [
+ {
+ "contentType": "application/json",
+ "schemaId": "592f6c1d0af5840ca8897f0c",
+ "typeName": "User"
+ }
+ ]
+ },
+ "responses": [
+ {
+ "statusCode": 200,
+ "description": "successful operation",
+ "representations": [
+ {
+ "contentType": "application/xml"
},
- "responses": [
- {
- "statusCode": 200,
- "description": "successful operation",
- "representations": [
- {
- "contentType": "application/xml"
- },
- {
- "contentType": "application/json"
- }
- ],
- "headers": []
- }
- ]
+ {
+ "contentType": "application/json"
+ }
+ ],
+ "headers": []
}
+ ]
}
+ }
},
- "responses": {
- "201": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/PetStoreTemplate2/operations/newoperations",
- "type": "Microsoft.ApiManagement/service/apis/operations",
- "name": "newoperations",
- "properties": {
- "displayName": "createUser2",
- "method": "POST",
- "urlTemplate": "/user1",
- "templateParameters": [],
- "description": "This can only be done by the logged in user.",
- "request": {
- "description": "Created user object",
- "queryParameters": [],
- "headers": [],
- "representations": [
- {
- "contentType": "application/json",
- "schemaId": "592f6c1d0af5840ca8897f0c",
- "typeName": "User"
- }
- ]
- },
- "responses": [
- {
- "statusCode": 200,
- "description": "successful operation",
- "representations": [
- {
- "contentType": "application/xml"
- },
- {
- "contentType": "application/json"
- }
- ],
- "headers": []
- }
- ]
- }
- }
- },
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/PetStoreTemplate2/operations/newoperations",
- "type": "Microsoft.ApiManagement/service/apis/operations",
- "name": "newoperations",
- "properties": {
- "displayName": "createUser2",
- "method": "POST",
- "urlTemplate": "/user1",
- "templateParameters": [],
- "description": "This can only be done by the logged in user.",
- "request": {
- "description": "Created user object",
- "queryParameters": [],
- "headers": [],
- "representations": [
- {
- "contentType": "application/json",
- "schemaId": "592f6c1d0af5840ca8897f0c",
- "typeName": "User"
- }
- ]
- },
- "responses": [
- {
- "statusCode": 200,
- "description": "successful operation",
- "representations": [
- {
- "contentType": "application/xml"
- },
- {
- "contentType": "application/json"
- }
- ],
- "headers": []
- }
- ]
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/PetStoreTemplate2/operations/newoperations",
+ "type": "Microsoft.ApiManagement/service/apis/operations",
+ "name": "newoperations",
+ "properties": {
+ "displayName": "createUser2",
+ "method": "POST",
+ "urlTemplate": "/user1",
+ "templateParameters": [],
+ "description": "This can only be done by the logged in user.",
+ "request": {
+ "description": "Created user object",
+ "queryParameters": [],
+ "headers": [],
+ "representations": [
+ {
+ "contentType": "application/json",
+ "schemaId": "592f6c1d0af5840ca8897f0c",
+ "typeName": "User"
+ }
+ ]
+ },
+ "responses": [
+ {
+ "statusCode": 200,
+ "description": "successful operation",
+ "representations": [
+ {
+ "contentType": "application/xml"
+ },
+ {
+ "contentType": "application/json"
}
+ ],
+ "headers": []
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationPolicy.json
index 96490b6c51a1..30aa0ae4a07e 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationPolicy.json
@@ -37,4 +37,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationTag.json
index 3bfc89662000..1ebae19de88b 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiOperationTag.json
@@ -30,4 +30,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicy.json
index a5194d28c623..44519cc17bc2 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicy.json
@@ -6,7 +6,7 @@
"subscriptionId": "subid",
"apiId": "5600b57e7e8880006a040001",
"policyId": "policy",
- "If-Match":"*",
+ "If-Match": "*",
"parameters": {
"properties": {
"contentFormat": "xml",
@@ -36,4 +36,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json
index 5e74a5b09f10..fd02a6a65c4f 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiPolicyNonXmlEncoded.json
@@ -36,4 +36,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRelease.json
index 175fe1991e77..09a9db404559 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRelease.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRelease.json
@@ -1,44 +1,44 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "a1",
+ "releaseId": "testrev",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "a1",
- "releaseId": "testrev",
- "parameters": {
- "properties": {
- "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1",
- "notes": "yahooagain"
- }
+ "properties": {
+ "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1",
+ "notes": "yahooagain"
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/testrev",
+ "type": "Microsoft.ApiManagement/service/apis/releases",
+ "name": "testrev",
+ "properties": {
+ "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1",
+ "createdDateTime": "2018-02-08T20:52:00.65Z",
+ "updatedDateTime": "2018-02-08T20:52:00.65Z",
+ "notes": "yahooagain"
}
+ }
},
- "responses": {
- "201": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/testrev",
- "type": "Microsoft.ApiManagement/service/apis/releases",
- "name": "testrev",
- "properties": {
- "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1",
- "createdDateTime": "2018-02-08T20:52:00.65Z",
- "updatedDateTime": "2018-02-08T20:52:00.65Z",
- "notes": "yahooagain"
- }
- }
- },
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/testrev",
- "type": "Microsoft.ApiManagement/service/apis/releases",
- "name": "testrev",
- "properties": {
- "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1",
- "createdDateTime": "2018-02-08T20:52:00.65Z",
- "updatedDateTime": "2018-02-08T20:52:00.65Z",
- "notes": "yahooagain"
- }
- }
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1/releases/testrev",
+ "type": "Microsoft.ApiManagement/service/apis/releases",
+ "name": "testrev",
+ "properties": {
+ "apiId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/a1",
+ "createdDateTime": "2018-02-08T20:52:00.65Z",
+ "updatedDateTime": "2018-02-08T20:52:00.65Z",
+ "notes": "yahooagain"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRevision.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRevision.json
index 9ebc2ca8e28b..535c22961a21 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRevision.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiRevision.json
@@ -47,7 +47,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -74,4 +74,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiSchema.json
index 80832e09182e..1617fe824287 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiSchema.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiSchema.json
@@ -43,4 +43,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTag.json
index aad825037a64..0d3d42009f9c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTag.json
@@ -29,4 +29,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTagDescription.json
index c770f79ccc7b..99c807c3f955 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTagDescription.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiTagDescription.json
@@ -42,4 +42,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingOai3Import.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingOai3Import.json
index e21a0cd28a09..0ec4a96d50b6 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingOai3Import.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingOai3Import.json
@@ -36,7 +36,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -62,4 +62,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingSwaggerImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingSwaggerImport.json
index 6bedf0adf904..f5407023f2ba 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingSwaggerImport.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingSwaggerImport.json
@@ -37,7 +37,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -64,4 +64,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingWadlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingWadlImport.json
index cdd96c620675..f3b7bd854ecf 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingWadlImport.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiUsingWadlImport.json
@@ -37,7 +37,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -64,4 +64,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiVersionSet.json
index 9a46b73c7a27..6e460e7d2da0 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiVersionSet.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiVersionSet.json
@@ -39,4 +39,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiWithOpenIdConnect.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiWithOpenIdConnect.json
index bad6b8818999..54b8a610f386 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiWithOpenIdConnect.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateApiWithOpenIdConnect.json
@@ -61,7 +61,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -96,4 +96,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAuthorizationServer.json
index 3b0c8002bab6..2c6ae586659d 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAuthorizationServer.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateAuthorizationServer.json
@@ -93,4 +93,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendProxyBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendProxyBackend.json
index dc3b1951fbcc..f5a2b9f4f581 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendProxyBackend.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendProxyBackend.json
@@ -123,4 +123,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendServiceFabric.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendServiceFabric.json
index 40cf30aa7a61..281cf57ce990 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendServiceFabric.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackendServiceFabric.json
@@ -84,4 +84,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackup.json
index 9e2db72b9f62..6ab738692da8 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackup.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateBackup.json
@@ -1,53 +1,53 @@
{
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
"parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "parameters": {
- "storageAccount": "teststorageaccount",
- "accessKey": "**************************************************",
- "containerName": "backupContainer",
- "backupName": "apimService1backup_2017_03_19"
- }
+ "storageAccount": "teststorageaccount",
+ "accessKey": "**************************************************",
+ "containerName": "backupContainer",
+ "backupName": "apimService1backup_2017_03_19"
+ }
+ },
+ "responses": {
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-06-01-preview"
+ }
},
- "responses": {
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/operationresults/dGVjaGVkX01hbmFnZVJvbGVfNWRiNGI3Ng==?api-version=2018-06-01-preview"
- }
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1",
+ "name": "apimService1",
+ "type": "Microsoft.ApiManagement/service",
+ "tags": {
+ "UID": "52ed5986-717b-45b4-b17c-3df8db372cff"
+ },
+ "location": "East Asia",
+ "etag": "AAAAAAAXX6Y=",
+ "properties": {
+ "publisherEmail": "admin@live.com",
+ "publisherName": "Contoso",
+ "provisioningState": "Succeeded",
+ "targetProvisioningState": "",
+ "createdAtUtc": "2015-09-22T01:50:34.7921566Z",
+ "gatewayUrl": "https://apimService1.azure-api.net",
+ "portalUrl": "https://apimService1.portal.azure-api.net",
+ "managementApiUrl": "https://apimService1.management.azure-api.net",
+ "scmUrl": "https://apimService1.scm.azure-api.net",
+ "hostnameConfigurations": [],
+ "publicIPAddresses": [
+ "207.46.155.24"
+ ],
+ "virtualNetworkType": "None"
},
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1",
- "name": "apimService1",
- "type": "Microsoft.ApiManagement/service",
- "tags": {
- "UID": "52ed5986-717b-45b4-b17c-3df8db372cff"
- },
- "location": "East Asia",
- "etag": "AAAAAAAXX6Y=",
- "properties": {
- "publisherEmail": "admin@live.com",
- "publisherName": "Contoso",
- "provisioningState": "Succeeded",
- "targetProvisioningState": "",
- "createdAtUtc": "2015-09-22T01:50:34.7921566Z",
- "gatewayUrl": "https://apimService1.azure-api.net",
- "portalUrl": "https://apimService1.portal.azure-api.net",
- "managementApiUrl": "https://apimService1.management.azure-api.net",
- "scmUrl": "https://apimService1.scm.azure-api.net",
- "hostnameConfigurations": [],
- "publicIPAddresses": [
- "207.46.155.24"
- ],
- "virtualNetworkType": "None"
- },
- "sku": {
- "name": "Premium",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "Premium",
+ "capacity": 1
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCache.json
index 50c5b3b02aeb..1e80094a58b5 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCache.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCache.json
@@ -39,4 +39,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCertificate.json
index a7e38807c60b..3f2acecc5e0c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCertificate.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateCertificate.json
@@ -4,7 +4,7 @@
"resourceGroupName": "rg1",
"api-version": "2018-06-01-preview",
"subscriptionId": "subid",
- "certificateId":"tempcert",
+ "certificateId": "tempcert",
"parameters": {
"properties": {
"data": "****************Base 64 Encoded Certificate *******************************",
@@ -38,4 +38,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateDiagnostic.json
index 2be5b18c9c14..275fc8d8a754 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateDiagnostic.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateDiagnostic.json
@@ -156,4 +156,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEHLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEHLogger.json
index 8c36fef2b21d..207e6acf5f62 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEHLogger.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEHLogger.json
@@ -52,4 +52,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEmailTemplate.json
index becb54ac9a5c..5c6dcfedf45e 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEmailTemplate.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateEmailTemplate.json
@@ -93,4 +93,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroup.json
index 3984255ca65f..eb8dab3266fe 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroup.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroup.json
@@ -18,7 +18,7 @@
"type": "Microsoft.ApiManagement/service/groups",
"name": "tempgroup",
"properties": {
- "displayName": "temp group",
+ "displayName": "temp group",
"type": "custom"
}
}
@@ -29,10 +29,10 @@
"type": "Microsoft.ApiManagement/service/groups",
"name": "tempgroup",
"properties": {
- "displayName": "temp group",
+ "displayName": "temp group",
"type": "custom"
}
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupExternal.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupExternal.json
index e25eb7d53d6f..86fbd3e70849 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupExternal.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupExternal.json
@@ -4,11 +4,11 @@
"resourceGroupName": "rg1",
"api-version": "2018-06-01-preview",
"subscriptionId": "subid",
- "groupId":"aadGroup",
+ "groupId": "aadGroup",
"parameters": {
"properties": {
"displayName": "NewGroup (samiraad.onmicrosoft.com)",
- "description": "new group to test",
+ "description": "new group to test",
"type": "external",
"externalId": "aad://samiraad.onmicrosoft.com/groups/83cf2753-5831-4675-bc0e-2f8dc067c58d"
}
@@ -42,4 +42,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupUser.json
index 7c1326a1b246..72fe8fc79100 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupUser.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateGroupUser.json
@@ -18,7 +18,7 @@
"lastName": "user",
"email": "testuser1@live.com",
"state": "active",
- "registrationDate": "2017-06-01T20:46:45.437Z",
+ "registrationDate": "2017-06-01T20:46:45.437Z",
"groups": [],
"identities": []
}
@@ -41,4 +41,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateIdentityProvider.json
index 004479876992..fba7aa073151 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateIdentityProvider.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateIdentityProvider.json
@@ -38,4 +38,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json
index 821e6b5a0d16..d44fd26e13b5 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateMultiRegionServiceWithCustomHostname.json
@@ -4,7 +4,7 @@
"resourceGroupName": "rg1",
"api-version": "2018-06-01-preview",
"subscriptionId": "subid",
- "parameters": {
+ "parameters": {
"location": "Central US",
"sku": {
"name": "Premium",
@@ -287,4 +287,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotification.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotification.json
index b544b5e3769e..12952debbe94 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotification.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotification.json
@@ -1,32 +1,32 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "notificationName": "RequestPublisherNotificationMessage"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage",
- "type": "Microsoft.ApiManagement/service/notifications",
- "name": "RequestPublisherNotificationMessage",
- "properties": {
- "title": "Subscription requests (requiring approval)",
- "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.",
- "recipients": {
- "emails": [
- "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/contoso@live.com",
- "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar!live",
- "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar@live.com"
- ],
- "users": [
- "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642"
- ]
- }
- }
- }
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "notificationName": "RequestPublisherNotificationMessage"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage",
+ "type": "Microsoft.ApiManagement/service/notifications",
+ "name": "RequestPublisherNotificationMessage",
+ "properties": {
+ "title": "Subscription requests (requiring approval)",
+ "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.",
+ "recipients": {
+ "emails": [
+ "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/contoso@live.com",
+ "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar!live",
+ "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar@live.com"
+ ],
+ "users": [
+ "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642"
+ ]
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientEmail.json
index 2e9b568dfa5c..65bbb16c30b5 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientEmail.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientEmail.json
@@ -14,7 +14,7 @@
"type": "Microsoft.ApiManagement/service/notifications/recipientEmails",
"name": "foobar@live.com",
"properties": {
- "email": "foobar@live.com"
+ "email": "foobar@live.com"
}
}
},
@@ -24,9 +24,9 @@
"type": "Microsoft.ApiManagement/service/notifications/recipientEmails",
"name": "foobar@live.com",
"properties": {
- "email": "foobar@live.com"
+ "email": "foobar@live.com"
}
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientUser.json
index 61dd70ef5d4f..8a0147aea2e7 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientUser.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateNotificationRecipientUser.json
@@ -29,4 +29,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOpenIdConnectProvider.json
index 15b4e47130a2..9d5a5279a99b 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOpenIdConnectProvider.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOpenIdConnectProvider.json
@@ -20,7 +20,7 @@
"type": "Microsoft.ApiManagement/service/openidconnectproviders",
"name": "templateOpenIdConnect3",
"properties": {
- "displayName": "templateoidprovider3",
+ "displayName": "templateoidprovider3",
"metadataEndpoint": "https://oidprovider-template3.net",
"clientId": "oidprovidertemplate3"
}
@@ -39,4 +39,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOperationTag.json
index 3bfc89662000..1ebae19de88b 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOperationTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateOperationTag.json
@@ -30,4 +30,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreatePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreatePolicy.json
index a4de9124cdf9..5db9c740668c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreatePolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreatePolicy.json
@@ -34,4 +34,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProduct.json
index a6c036530f54..1772c3271ce9 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProduct.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProduct.json
@@ -39,4 +39,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductApi.json
index 7c56953a1c07..baf6909e5c2a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductApi.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductApi.json
@@ -37,7 +37,7 @@
"name": "5931a75ae4bbd512a88c680b",
"properties": {
"displayName": "EchoApi",
- "apiRevision": "1",
+ "apiRevision": "1",
"serviceUrl": "https://contoso.com/apis/echo",
"path": "",
"protocols": [
@@ -53,4 +53,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductGroup.json
index 3ffe9a66f46d..994f9b389b37 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductGroup.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductGroup.json
@@ -35,4 +35,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductPolicy.json
index 729d30a1171d..0c472ba0b287 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductPolicy.json
@@ -35,4 +35,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductTag.json
index 200524cacd34..325bf40d3b22 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProductTag.json
@@ -29,4 +29,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProperty.json
index 0dedc9900225..027278e3d534 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProperty.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateProperty.json
@@ -49,4 +49,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateService.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateService.json
index 02ae66c1d3bf..334f088a091c 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateService.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateService.json
@@ -107,4 +107,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceHavingMsi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceHavingMsi.json
index 6ba248e808ad..5c12b813d487 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceHavingMsi.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceHavingMsi.json
@@ -117,4 +117,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceWithSystemCertificates.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceWithSystemCertificates.json
index 5c0506b43d73..7043dab32bee 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceWithSystemCertificates.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateServiceWithSystemCertificates.json
@@ -159,4 +159,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json
index 803e05c823c7..c3ff53046daa 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json
@@ -42,7 +42,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -69,4 +69,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json
index 462f3196bf6c..26f50ed4c254 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSoapToRestApiUsingWsdlImport.json
@@ -40,7 +40,7 @@
}
},
"202": {
- "headers":{
+ "headers": {
"location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/tempgroup?api-version=2018-06-01-preview&asyncId=5c730e343244df1b9cb56e85&asyncCode=201"
}
},
@@ -66,4 +66,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSubscription.json
index 207d35bb6d4e..379faac139ef 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSubscription.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateSubscription.json
@@ -45,4 +45,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateTag.json
index 2ebc8372dff1..3a5159b825df 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateTag.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateUser.json
index b9d2454de271..9dfbb861d625 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateUser.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementCreateUser.json
@@ -58,4 +58,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApi.json
index 4f2bada7acac..04275720e53d 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApi.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApi.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "echo-api",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "echo-api",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiDiagnostic.json
index 5563f361d4ef..4196a81281d5 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiDiagnostic.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiDiagnostic.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "diagnosticId": "applicationinsights",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "If-Match": "*"
- },
- "responses": {
- "204": {},
- "200":{}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "diagnosticId": "applicationinsights",
+ "apiId": "57d1f7558aa04f15146d9d8a",
+ "If-Match": "*"
+ },
+ "responses": {
+ "204": {},
+ "200": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssue.json
index ffd44ba96911..288ef23cf627 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssue.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssue.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "apiId": "57d1f7558aa04f15146d9d8a",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueAttachment.json
index 8537f3805ca3..9434ff5005de 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueAttachment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueAttachment.json
@@ -1,16 +1,16 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "attachmentId": "57d2ef278aa04f0888cba3f3",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "apiId": "57d1f7558aa04f15146d9d8a",
+ "attachmentId": "57d2ef278aa04f0888cba3f3",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueComment.json
index 6011db3d35f3..5e0c9f574a58 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueComment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiIssueComment.json
@@ -1,16 +1,16 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "apiId": "57d1f7558aa04f15146d9d8a",
- "commentId": "599e29ab193c3c0bd0b3e2fb",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "apiId": "57d1f7558aa04f15146d9d8a",
+ "commentId": "599e29ab193c3c0bd0b3e2fb",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperation.json
index eb02721c4f6d..1d203b4ffd25 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperation.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperation.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "57d2ef278aa04f0888cba3f3",
- "operationId": "57d2ef278aa04f0ad01d6cdc",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "57d2ef278aa04f0888cba3f3",
+ "operationId": "57d2ef278aa04f0ad01d6cdc",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationPolicy.json
index 8790fb955f6f..095cbd831149 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationPolicy.json
@@ -1,16 +1,16 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "testapi",
- "operationId": "testoperation",
- "policyId": "policy",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "testapi",
+ "operationId": "testoperation",
+ "policyId": "policy",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationTag.json
index 7dcfb35dae64..6ee8f747dc89 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiOperationTag.json
@@ -9,8 +9,8 @@
"tagId": "59d5b28e1f7fab116402044e",
"If-Match": "*"
},
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiPolicy.json
index bae94de0e8a2..b6651ed7a790 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiPolicy.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "loggerId",
- "policyId": "policy",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "loggerId",
+ "policyId": "policy",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiRelease.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiRelease.json
index 1ab4e240fb72..24666a3000a5 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiRelease.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiRelease.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "5a5fcc09124a7fa9b89f2f1d",
- "releaseId": "testrev",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "5a5fcc09124a7fa9b89f2f1d",
+ "releaseId": "testrev",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiSchema.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiSchema.json
index 2ad46307bdf9..60b9619b4619 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiSchema.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiSchema.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "59d5b28d1f7fab116c282650",
- "schemaId": "59d5b28e1f7fab116402044e",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "59d5b28d1f7fab116c282650",
+ "schemaId": "59d5b28e1f7fab116402044e",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTag.json
index b2930b1b9a47..421404f907cd 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTag.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "59d5b28d1f7fab116c282650",
- "tagId": "59d5b28e1f7fab116402044e",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "59d5b28d1f7fab116c282650",
+ "tagId": "59d5b28e1f7fab116402044e",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTagDescription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTagDescription.json
index b2930b1b9a47..421404f907cd 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTagDescription.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiTagDescription.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "59d5b28d1f7fab116c282650",
- "tagId": "59d5b28e1f7fab116402044e",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "59d5b28d1f7fab116c282650",
+ "tagId": "59d5b28e1f7fab116402044e",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiVersionSet.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiVersionSet.json
index f6fb773adf05..cae697abba49 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiVersionSet.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteApiVersionSet.json
@@ -1,16 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "versionSetId": "a1",
- "If-Match": "*"
- },
- "responses": {
- "204": {
- },
- "200":{
- }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "versionSetId": "a1",
+ "If-Match": "*"
+ },
+ "responses": {
+ "204": {},
+ "200": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteAuthorizationServer.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteAuthorizationServer.json
index edfae3845b66..55ef640a1e8d 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteAuthorizationServer.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteAuthorizationServer.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "authsid": "newauthServer2",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "authsid": "newauthServer2",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteBackend.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteBackend.json
index 3e54e55c8318..9dca5dd8d189 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteBackend.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteBackend.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "backendId": "sfbackend",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "backendId": "sfbackend",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCache.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCache.json
index 8b06cd0d0ec6..a63cd98a9c47 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCache.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCache.json
@@ -11,4 +11,4 @@
"200": {},
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCertificate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCertificate.json
index d91019036638..6ff813a6d096 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCertificate.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteCertificate.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "certificateId": "tempcert",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "certificateId": "tempcert",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteDiagnostic.json
index e1c28b143ad9..cc824ab7d937 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteDiagnostic.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteDiagnostic.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "diagnosticId": "applicationinsights",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "diagnosticId": "applicationinsights",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteEmailTemplate.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteEmailTemplate.json
index 8dec3744af11..1449841141c4 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteEmailTemplate.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteEmailTemplate.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "templateName": "newIssueNotificationMessage",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "templateName": "newIssueNotificationMessage",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroup.json
index edeb1a70e435..5f2c549fe70e 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroup.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroup.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "groupId": "aadGroup",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "groupId": "aadGroup",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroupUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroupUser.json
index 74700568687f..446882e31d7d 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroupUser.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteGroupUser.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "groupId": "templategroup",
- "userId": "59307d350af58404d8a26300",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "groupId": "templategroup",
+ "userId": "59307d350af58404d8a26300",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteIdentityProvider.json
index e7f9fcc096cd..bddb3638ccc9 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteIdentityProvider.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteIdentityProvider.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "identityProviderName": "aad",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "identityProviderName": "aad",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteLogger.json
index ee79e2869ecd..86fc88c06081 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteLogger.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteLogger.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "loggerId": "loggerId",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "loggerId": "loggerId",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientEmail.json
index 59063a0102ba..d81d7a0a5f94 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientEmail.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientEmail.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "notificationName": "RequestPublisherNotificationMessage",
- "email": "contoso@live.com"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "notificationName": "RequestPublisherNotificationMessage",
+ "email": "contoso@live.com"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientUser.json
index aac72c04002e..07a388db0226 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientUser.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteNotificationRecipientUser.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "notificationName": "RequestPublisherNotificationMessage",
- "userId": "576823d0a40f7e74ec07d642"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "notificationName": "RequestPublisherNotificationMessage",
+ "userId": "576823d0a40f7e74ec07d642"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOpenIdConnectProvider.json
index 0d195cfd64ee..811aab6b8b5a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOpenIdConnectProvider.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOpenIdConnectProvider.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "opid": "templateOpenIdConnect3",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "opid": "templateOpenIdConnect3",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationPolicy.json
index 8790fb955f6f..095cbd831149 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationPolicy.json
@@ -1,16 +1,16 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "testapi",
- "operationId": "testoperation",
- "policyId": "policy",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "testapi",
+ "operationId": "testoperation",
+ "policyId": "policy",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationTag.json
index 7dcfb35dae64..6ee8f747dc89 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteOperationTag.json
@@ -9,8 +9,8 @@
"tagId": "59d5b28e1f7fab116402044e",
"If-Match": "*"
},
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeletePolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeletePolicy.json
index 908891ec6025..7492defdcfd5 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeletePolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeletePolicy.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "policyId": "policy",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "policyId": "policy",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProduct.json
index 3a5c1f9ebf88..a0a22b3b0cec 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProduct.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProduct.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "productId": "testproduct",
- "deleteSubscriptions": true,
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "productId": "testproduct",
+ "deleteSubscriptions": true,
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductApi.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductApi.json
index 99018f52fcc7..21ef15dd778a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductApi.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductApi.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "productId": "testproduct",
- "apiId": "echo-api",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "productId": "testproduct",
+ "apiId": "echo-api",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductGroup.json
index bd40ba24a78f..9ae035ffddd9 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductGroup.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductGroup.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "productId": "testproduct",
- "groupId": "templateGroup",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "productId": "testproduct",
+ "groupId": "templateGroup",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductPolicy.json
index eb17176420bd..40ffd3cee8da 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductPolicy.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductPolicy.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "productId": "testproduct",
- "policyId": "policy",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "productId": "testproduct",
+ "policyId": "policy",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductTag.json
index 0102c298b033..3e9d41d3ec37 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProductTag.json
@@ -1,15 +1,15 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "productId": "59d5b28d1f7fab116c282650",
- "tagId": "59d5b28e1f7fab116402044e",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "productId": "59d5b28d1f7fab116c282650",
+ "tagId": "59d5b28e1f7fab116402044e",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProperty.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProperty.json
index d6a9ace04cc9..a08a50cf9f3a 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProperty.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteProperty.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "propId": "testprop2",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "propId": "testprop2",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteSubscription.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteSubscription.json
index 413f98a58a51..ec87218a5309 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteSubscription.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteSubscription.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "sid": "testsub",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "sid": "testsub",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteTag.json
index a466a8e75880..86535115a6c7 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteTag.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteTag.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "tagId": "tagId1",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": {}
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "tagId": "tagId1",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteUser.json
index 8096e8128bbb..b9a62d758649 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteUser.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementDeleteUser.json
@@ -1,14 +1,14 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "userId": "5931a75ae4bbd512288c680b",
- "If-Match": "*"
- },
- "responses": {
- "200": {},
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "userId": "5931a75ae4bbd512288c680b",
+ "If-Match": "*"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiContract.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiContract.json
index 33d6a29db38f..849b0bddf844 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiContract.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiContract.json
@@ -1,34 +1,34 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "57d1f7558aa04f15146d9d8a"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a",
- "type": "Microsoft.ApiManagement/service/apis",
- "name": "57d1f7558aa04f15146d9d8a",
- "properties": {
- "displayName": "Service",
- "apiRevision": "1",
- "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx",
- "path": "schulte",
- "protocols": [
- "https"
- ],
- "subscriptionKeyParameterNames": {
- "header": "Ocp-Apim-Subscription-Key",
- "query": "subscription-key"
- },
- "type": "soap",
- "isCurrent": true,
- "isOnline": true
- }
- }
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "57d1f7558aa04f15146d9d8a"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a",
+ "type": "Microsoft.ApiManagement/service/apis",
+ "name": "57d1f7558aa04f15146d9d8a",
+ "properties": {
+ "displayName": "Service",
+ "apiRevision": "1",
+ "serviceUrl": "https://api.plexonline.com/DataSource/Service.asmx",
+ "path": "schulte",
+ "protocols": [
+ "https"
+ ],
+ "subscriptionKeyParameterNames": {
+ "header": "Ocp-Apim-Subscription-Key",
+ "query": "subscription-key"
+ },
+ "type": "soap",
+ "isCurrent": true,
+ "isOnline": true
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiDiagnostic.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiDiagnostic.json
index 68d550ed09a5..b3484c57d5d3 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiDiagnostic.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiDiagnostic.json
@@ -60,4 +60,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiExportInOpenApi2dot0.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiExportInOpenApi2dot0.json
index b57f8f513550..053d535c22ff 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiExportInOpenApi2dot0.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiExportInOpenApi2dot0.json
@@ -1,18 +1,18 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "echo-api",
- "format": "swagger-link",
- "export": "true"
- },
- "responses": {
- "200": {
- "body": {
- "link": "https://apimgmtstaobxxxxxxx.blob.core.windows.net/api-export/Echo API.json?sv=2015-07-08&sr=b&sig=xxxxxxxxxx%3D&se=2017-09-08T21:54:08Z&sp=r"
- }
- }
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "echo-api",
+ "format": "swagger-link",
+ "export": "true"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "link": "https://apimgmtstaobxxxxxxx.blob.core.windows.net/api-export/Echo API.json?sv=2015-07-08&sr=b&sig=xxxxxxxxxx%3D&se=2017-09-08T21:54:08Z&sp=r"
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssue.json
index e51e9e0b1361..c4de3b7e1353 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssue.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssue.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueAttachment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueAttachment.json
index c0dc61b619ae..83e60edb8330 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueAttachment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueAttachment.json
@@ -1,25 +1,25 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "57d2ef278aa04f0888cba3f3",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "attachmentId": "57d2ef278aa04f0888cba3f3"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/attachments/57d2ef278aa04f0888cba3f3",
- "type": "Microsoft.ApiManagement/service/apis/issues/attachments",
- "name": "57d2ef278aa04f0888cba3f3",
- "properties": {
- "title": "Issue attachment.",
- "contentFormat": "link",
- "content": "https://.../image.jpg"
- }
- }
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "57d2ef278aa04f0888cba3f3",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "attachmentId": "57d2ef278aa04f0888cba3f3"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/attachments/57d2ef278aa04f0888cba3f3",
+ "type": "Microsoft.ApiManagement/service/apis/issues/attachments",
+ "name": "57d2ef278aa04f0888cba3f3",
+ "properties": {
+ "title": "Issue attachment.",
+ "contentFormat": "link",
+ "content": "https://.../image.jpg"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueComment.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueComment.json
index 1389c196abec..fd54ef5c7a86 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueComment.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiIssueComment.json
@@ -1,25 +1,25 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "57d2ef278aa04f0888cba3f3",
- "issueId": "57d2ef278aa04f0ad01d6cdc",
- "commentId": "599e29ab193c3c0bd0b3e2fb"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/comments/599e29ab193c3c0bd0b3e2fb",
- "type": "Microsoft.ApiManagement/service/apis/issues/comments",
- "name": "599e29ab193c3c0bd0b3e2fb",
- "properties": {
- "text": "Issue comment.",
- "createdDate": "2018-02-01T22:21:20.467Z",
- "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
- }
- }
+ "parameters": {
+ "serviceName": "apimService1",
+ "resourceGroupName": "rg1",
+ "api-version": "2018-06-01-preview",
+ "subscriptionId": "subid",
+ "apiId": "57d2ef278aa04f0888cba3f3",
+ "issueId": "57d2ef278aa04f0ad01d6cdc",
+ "commentId": "599e29ab193c3c0bd0b3e2fb"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a/issues/57d2ef278aa04f0ad01d6cdc/comments/599e29ab193c3c0bd0b3e2fb",
+ "type": "Microsoft.ApiManagement/service/apis/issues/comments",
+ "name": "599e29ab193c3c0bd0b3e2fb",
+ "properties": {
+ "text": "Issue comment.",
+ "createdDate": "2018-02-01T22:21:20.467Z",
+ "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperation.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperation.json
index 6a22b5876579..003b14ca9437 100644
--- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperation.json
+++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetApiOperation.json
@@ -1,53 +1,53 @@
{
- "parameters": {
- "serviceName": "apimService1",
- "resourceGroupName": "rg1",
- "api-version": "2018-06-01-preview",
- "subscriptionId": "subid",
- "apiId": "57d2ef278aa04f0888cba3f3",
- "operationId": "57d2ef278aa04f0ad01d6cdc"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d2ef278aa04f0888cba3f3/operations/57d2ef278aa04f0ad01d6cdc",
- "type": "Microsoft.ApiManagement/service/apis/operations",
- "name": "57d2ef278aa04f0ad01d6cdc",
- "properties": {
- "displayName": "CancelOrder",
- "method": "POST",
- "urlTemplate": "/?soapAction=http://tempuri.org/IFazioService/CancelOrder",
- "templateParameters": [],
- "request": {
- "description": "IFazioService_CancelOrder_InputMessage",
- "queryParameters": [],
- "headers": [],
- "representations": [
- {
- "contentType": "text/xml",
- "sample": "\r\n
Dear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "New issue received", - "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", - "isDefault": true, - "parameters": [ - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "IssueId", - "title": "Issue id" - }, - { - "name": "IssueName", - "title": "Issue name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/NewIssueNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "NewIssueNotificationMessage", + "properties": { + "subject": "Your request $IssueName was received", + "body": "\r\n\r\n \r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "New issue received", + "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", + "isDefault": true, + "parameters": [ + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "IssueId", + "title": "Issue id" + }, + { + "name": "IssueName", + "title": "Issue name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetGroup.json index 8875d5df3262..f146a791f633 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetGroup.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIdentityProvider.json index 009ed0e86455..29733f37590a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIdentityProvider.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "aadB2C", - "properties": { - "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", - "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_signup-policy" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "aadB2C", + "properties": { + "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", + "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_signup-policy" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIssue.json index a5ef5ad9dac5..3bf353815ab1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetIssue.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetLogger.json index a0f2b37a8bc9..aa366d2925b3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetLogger.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "loggerId": "templateLogger" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "kloudapilogger1", - "properties": { - "loggerType": "azureEventHub", - "description": "testeventhub3again", - "credentials": { - "name": "testeventhub4", - "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" - }, - "isBuffered": true, - "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/eventhubapim" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "loggerId": "templateLogger" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "kloudapilogger1", + "properties": { + "loggerType": "azureEventHub", + "description": "testeventhub3again", + "credentials": { + "name": "testeventhub4", + "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" + }, + "isBuffered": true, + "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/eventhubapim" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetNotification.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetNotification.json index b28d65aa143b..12952debbe94 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetNotification.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetNotification.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOpenIdConnectProvider.json index d6475a1f8120..1a853ff6109a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOpenIdConnectProvider.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOperationTag.json index 95a96cb7cb58..bd1e6da242f2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetOperationTag.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetPolicy.json index 370368926847..230e91324a37 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementGetPolicy.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "policyContent": "\r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "Application gallery submission approved", - "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", - "isDefault": true, - "parameters": [ - { - "name": "AppId", - "title": "Application id" - }, - { - "name": "AppName", - "title": "Application name" - }, - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/ApplicationApprovedNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "ApplicationApprovedNotificationMessage", + "properties": { + "subject": "Your application $AppName is published in the application gallery", + "body": "\r\n\r\n \r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "Application gallery submission approved", + "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", + "isDefault": true, + "parameters": [ + { + "name": "AppId", + "title": "Application id" + }, + { + "name": "AppName", + "title": "Application name" + }, + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroupUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroupUsers.json index 5c6c2a8f01c2..9207b0342d97 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroupUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroupUsers.json @@ -1,37 +1,37 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "groupId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", - "type": "Microsoft.ApiManagement/service/groups/users", - "name": "armTemplateUser1", - "properties": { - "firstName": "user1", - "lastName": "lastname1", - "email": "user1@live.com", - "state": "active", - "registrationDate": "2017-05-31T18:54:41.447Z", - "note": "note for user 1", - "identities": [ - { - "provider": "Basic", - "id": "user1@live.com" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "groupId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", + "type": "Microsoft.ApiManagement/service/groups/users", + "name": "armTemplateUser1", + "properties": { + "firstName": "user1", + "lastName": "lastname1", + "email": "user1@live.com", + "state": "active", + "registrationDate": "2017-05-31T18:54:41.447Z", + "note": "note for user 1", + "identities": [ + { + "provider": "Basic", + "id": "user1@live.com" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroups.json index 53b925e01b9a..93aad88988f2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListGroups.json @@ -1,62 +1,62 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "Administrators", - "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "Developers", - "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020003", - "properties": { - "displayName": "Guests", - "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", - "builtIn": true, - "type": "system" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "Administrators", + "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", + "builtIn": true, + "type": "system" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "Developers", + "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", + "builtIn": true, + "type": "system" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020003", + "properties": { + "displayName": "Guests", + "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", + "builtIn": true, + "type": "system" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIdentityProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIdentityProviders.json index 8474ce1afa0f..39c59d18ba76 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIdentityProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIdentityProviders.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Google", - "properties": { - "clientId": "googleId", - "clientSecret": "googlesecret", - "type": "google" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Aad", - "properties": { - "clientId": "aadapplicationid", - "clientSecret": "aadapplicationkey", - "type": "aad", - "allowedTenants": [ - "samiraad.onmicrosoft.com" - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "AadB2C", - "properties": { - "clientId": "aadb2clientId", - "clientSecret": "aadb2cClientKey", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_Signin_Default" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Google", + "properties": { + "clientId": "googleId", + "clientSecret": "googlesecret", + "type": "google" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Aad", + "properties": { + "clientId": "aadapplicationid", + "clientSecret": "aadapplicationkey", + "type": "aad", + "allowedTenants": [ + "samiraad.onmicrosoft.com" + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "AadB2C", + "properties": { + "clientId": "aadb2clientId", + "clientSecret": "aadb2cClientKey", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_Signin_Default" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIssues.json index b082405354d5..f8747e76346d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListIssues.json @@ -1,30 +1,30 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/issues/57d2ef278aa04f0ad01d6cdc", - "type": "Microsoft.ApiManagement/service/issues", - "name": "57d2ef278aa04f0ad01d6cdc", - "properties": { - "title": "New API issue", - "description": "New API issue description", - "createdDate": "2018-02-01T22:21:20.467Z", - "state": "open", - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/issues/57d2ef278aa04f0ad01d6cdc", + "type": "Microsoft.ApiManagement/service/issues", + "name": "57d2ef278aa04f0ad01d6cdc", + "properties": { + "title": "New API issue", + "description": "New API issue description", + "createdDate": "2018-02-01T22:21:20.467Z", + "state": "open", + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListLoggers.json index 398790694736..26dc2a9d15d9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListLoggers.json @@ -1,46 +1,46 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "buffered111", - "properties": { - "loggerType": "azureEventHub", - "description": "Sample description", - "credentials": { - "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" - }, - "isBuffered": true, - "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/apimaccounts" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "loggerId", - "properties": { - "loggerType": "azureEventHub", - "description": "adding a new logger", - "credentials": { - "name": "hydraeventhub", - "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" - }, - "isBuffered": true, - "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/hydraeventhub-ns" - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "buffered111", + "properties": { + "loggerType": "azureEventHub", + "description": "Sample description", + "credentials": { + "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" + }, + "isBuffered": true, + "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/apimaccounts" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "loggerId", + "properties": { + "loggerType": "azureEventHub", + "description": "adding a new logger", + "credentials": { + "name": "hydraeventhub", + "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" + }, + "isBuffered": true, + "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/hydraeventhub-ns" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientEmails.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientEmails.json index 27049e2efe25..41079fa7e789 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientEmails.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientEmails.json @@ -1,42 +1,42 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "contoso@live.com", - "properties": { - "email": "contoso@live.com" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar!live", - "properties": { - "email": "foobar!live" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar@live.com", - "properties": { - "email": "foobar@live.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "contoso@live.com", + "properties": { + "email": "contoso@live.com" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar!live", + "properties": { + "email": "foobar!live" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar@live.com", + "properties": { + "email": "foobar@live.com" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientUsers.json index 68b9dcb3890a..8c20b58e638e 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotificationRecipientUsers.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", - "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", - "name": "576823d0a40f7e74ec07d642", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", + "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", + "name": "576823d0a40f7e74ec07d642", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotifications.json index 61060ccf4464..ee4ff64e3df6 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListNotifications.json @@ -1,126 +1,126 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "RequestPublisherNotificationMessage", - "properties": { - "title": "Subscription requests (requiring approval)", - "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "PurchasePublisherNotificationMessage", - "properties": { - "title": "New subscriptions", - "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewApplicationNotificationMessage", - "properties": { - "title": "Application gallery requests", - "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "BCC", - "properties": { - "title": "BCC", - "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", - "recipients": { - "emails": [], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewIssuePublisherNotificationMessage", - "properties": { - "title": "New issue or comment", - "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "AccountClosedPublisher", - "properties": { - "title": "Close account message", - "description": "The following email recipients and users will receive email notifications when developer closes his account", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "QuotaLimitApproachingPublisherNotificationMessage", - "properties": { - "title": "Approaching subscription quota limit", - "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "RequestPublisherNotificationMessage", + "properties": { + "title": "Subscription requests (requiring approval)", + "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" ], - "nextLink": "" + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" + ] + } } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "PurchasePublisherNotificationMessage", + "properties": { + "title": "New subscriptions", + "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewApplicationNotificationMessage", + "properties": { + "title": "Application gallery requests", + "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "BCC", + "properties": { + "title": "BCC", + "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", + "recipients": { + "emails": [], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewIssuePublisherNotificationMessage", + "properties": { + "title": "New issue or comment", + "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "AccountClosedPublisher", + "properties": { + "title": "Close account message", + "description": "The following email recipients and users will receive email notifications when developer closes his account", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "QuotaLimitApproachingPublisherNotificationMessage", + "properties": { + "title": "Approaching subscription quota limit", + "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOpenIdConnectProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOpenIdConnectProviders.json index b7814c75a7a0..db79e55a16e7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOpenIdConnectProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOpenIdConnectProviders.json @@ -1,29 +1,29 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-06-01-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperations.json index 9fb4700027fb..68074c284372 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperations.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperationsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperationsByTags.json index fb79ab0fe4e4..07e9a9cd8ecc 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperationsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListOperationsByTags.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicies.json index 1d0531ff13d4..3fc96bc9b607 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/examples/ApiManagementListPolicies.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-06-01-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "policyContent": "\r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "New issue received", - "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", - "isDefault": true, - "parameters": [ - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "IssueId", - "title": "Issue id" - }, - { - "name": "IssueName", - "title": "Issue name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/NewIssueNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "NewIssueNotificationMessage", + "properties": { + "subject": "Your request $IssueName was received", + "body": "\r\n\r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "New issue received", + "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", + "isDefault": true, + "parameters": [ + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "IssueId", + "title": "Issue id" + }, + { + "name": "IssueName", + "title": "Issue name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetGroup.json index 2e126d9f5a95..6425512e96b2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetGroup.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetIdentityProvider.json index 8e54606c6ec9..3463562444ca 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetIdentityProvider.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "aadB2C", - "properties": { - "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", - "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_signup-policy" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "aadB2C", + "properties": { + "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", + "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_signup-policy" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetLogger.json index 316b4e8ad4a4..2d0884151383 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetLogger.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "loggerid": "templateLogger" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "kloudapilogger1", - "properties": { - "loggerType": "azureEventHub", - "description": "testeventhub3again", - "credentials": { - "name": "testeventhub4", - "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" - }, - "isBuffered": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "loggerid": "templateLogger" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "kloudapilogger1", + "properties": { + "loggerType": "azureEventHub", + "description": "testeventhub3again", + "credentials": { + "name": "testeventhub4", + "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" + }, + "isBuffered": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetNotification.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetNotification.json index 84641b77882e..94541814ff07 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetNotification.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetNotification.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "RequestPublisherNotificationMessage", - "properties": { - "title": "Subscription requests (requiring approval)", - "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/contoso@live.com", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar!live", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - ] - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "RequestPublisherNotificationMessage", + "properties": { + "title": "Subscription requests (requiring approval)", + "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/contoso@live.com", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar!live", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar@live.com" + ], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOpenIdConnectProvider.json index dd4d1e86e29b..222e4c2261d3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOpenIdConnectProvider.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOperationTag.json index 10dea824df51..efa6364dba64 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetOperationTag.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetPolicy.json index a26107de14e2..f267f455158b 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementGetPolicy.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "policyContent": "\r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "Application gallery submission approved", - "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", - "isDefault": true, - "parameters": [ - { - "name": "AppId", - "title": "Application id" - }, - { - "name": "AppName", - "title": "Application name" - }, - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/ApplicationApprovedNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "ApplicationApprovedNotificationMessage", + "properties": { + "subject": "Your application $AppName is published in the application gallery", + "body": "\r\n\r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "Application gallery submission approved", + "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", + "isDefault": true, + "parameters": [ + { + "name": "AppId", + "title": "Application id" + }, + { + "name": "AppName", + "title": "Application name" + }, + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroupUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroupUsers.json index 8f0726a6f549..49268013798f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroupUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroupUsers.json @@ -1,37 +1,37 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "groupId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", - "type": "Microsoft.ApiManagement/service/groups/users", - "name": "armTemplateUser1", - "properties": { - "firstName": "user1", - "lastName": "lastname1", - "email": "user1@live.com", - "state": "active", - "registrationDate": "2017-05-31T18:54:41.447Z", - "note": "note for user 1", - "identities": [ - { - "provider": "Basic", - "id": "user1@live.com" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "groupId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", + "type": "Microsoft.ApiManagement/service/groups/users", + "name": "armTemplateUser1", + "properties": { + "firstName": "user1", + "lastName": "lastname1", + "email": "user1@live.com", + "state": "active", + "registrationDate": "2017-05-31T18:54:41.447Z", + "note": "note for user 1", + "identities": [ + { + "provider": "Basic", + "id": "user1@live.com" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroups.json index e575ee8fb0d5..72f78ff16526 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListGroups.json @@ -1,62 +1,62 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "Administrators", - "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "Developers", - "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020003", - "properties": { - "displayName": "Guests", - "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", - "builtIn": true, - "type": "system" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "Administrators", + "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", + "builtIn": true, + "type": "system" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "Developers", + "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", + "builtIn": true, + "type": "system" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020003", + "properties": { + "displayName": "Guests", + "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", + "builtIn": true, + "type": "system" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListIdentityProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListIdentityProviders.json index 533f04779318..5a30d4afb7a8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListIdentityProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListIdentityProviders.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Google", - "properties": { - "clientId": "googleId", - "clientSecret": "googlesecret", - "type": "google" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Aad", - "properties": { - "clientId": "aadapplicationid", - "clientSecret": "aadapplicationkey", - "type": "aad", - "allowedTenants": [ - "samiraad.onmicrosoft.com" - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "AadB2C", - "properties": { - "clientId": "aadb2clientId", - "clientSecret": "aadb2cClientKey", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_Signin_Default" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Google", + "properties": { + "clientId": "googleId", + "clientSecret": "googlesecret", + "type": "google" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Aad", + "properties": { + "clientId": "aadapplicationid", + "clientSecret": "aadapplicationkey", + "type": "aad", + "allowedTenants": [ + "samiraad.onmicrosoft.com" + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "AadB2C", + "properties": { + "clientId": "aadb2clientId", + "clientSecret": "aadb2cClientKey", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_Signin_Default" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListLoggers.json index 6f399a1f004d..23197cb86091 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListLoggers.json @@ -1,44 +1,44 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "buffered111", - "properties": { - "loggerType": "azureEventHub", - "description": "Sample description", - "credentials": { - "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" - }, - "isBuffered": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "loggerId", - "properties": { - "loggerType": "azureEventHub", - "description": "adding a new logger", - "credentials": { - "name": "hydraeventhub", - "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" - }, - "isBuffered": true - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "buffered111", + "properties": { + "loggerType": "azureEventHub", + "description": "Sample description", + "credentials": { + "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" + }, + "isBuffered": true } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "loggerId", + "properties": { + "loggerType": "azureEventHub", + "description": "adding a new logger", + "credentials": { + "name": "hydraeventhub", + "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" + }, + "isBuffered": true + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientEmail.json index 7073b3267da3..bc09c989ade3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientEmail.json @@ -1,42 +1,42 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "contoso@live.com", - "properties": { - "email": "contoso@live.com" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar!live", - "properties": { - "email": "foobar!live" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar@live.com", - "properties": { - "email": "foobar@live.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "contoso@live.com", + "properties": { + "email": "contoso@live.com" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar!live", + "properties": { + "email": "foobar!live" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar@live.com", + "properties": { + "email": "foobar@live.com" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientUser.json index e286dee424b2..18600a35c07c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotificationRecipientUser.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", - "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", - "name": "576823d0a40f7e74ec07d642", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", + "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", + "name": "576823d0a40f7e74ec07d642", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotifications.json index afa236fc3761..effaa3220faf 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListNotifications.json @@ -1,126 +1,126 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "RequestPublisherNotificationMessage", - "properties": { - "title": "Subscription requests (requiring approval)", - "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "PurchasePublisherNotificationMessage", - "properties": { - "title": "New subscriptions", - "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewApplicationNotificationMessage", - "properties": { - "title": "Application gallery requests", - "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "BCC", - "properties": { - "title": "BCC", - "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", - "recipients": { - "emails": [], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewIssuePublisherNotificationMessage", - "properties": { - "title": "New issue or comment", - "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "AccountClosedPublisher", - "properties": { - "title": "Close account message", - "description": "The following email recipients and users will receive email notifications when developer closes his account", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "QuotaLimitApproachingPublisherNotificationMessage", - "properties": { - "title": "Approaching subscription quota limit", - "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "RequestPublisherNotificationMessage", + "properties": { + "title": "Subscription requests (requiring approval)", + "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" ], - "nextLink": "" + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" + ] + } } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "PurchasePublisherNotificationMessage", + "properties": { + "title": "New subscriptions", + "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewApplicationNotificationMessage", + "properties": { + "title": "Application gallery requests", + "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "BCC", + "properties": { + "title": "BCC", + "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", + "recipients": { + "emails": [], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewIssuePublisherNotificationMessage", + "properties": { + "title": "New issue or comment", + "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "AccountClosedPublisher", + "properties": { + "title": "Close account message", + "description": "The following email recipients and users will receive email notifications when developer closes his account", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "QuotaLimitApproachingPublisherNotificationMessage", + "properties": { + "title": "Approaching subscription quota limit", + "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOpenIdConnectProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOpenIdConnectProviders.json index 31313cb5313f..cd3f113586b4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOpenIdConnectProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOpenIdConnectProviders.json @@ -1,29 +1,29 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperations.json index 0dc752bc17f6..6d51606c8e46 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperations.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperationsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperationsByTags.json index 3ea1fdcf596d..123a39f49eb2 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperationsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListOperationsByTags.json @@ -10,13 +10,15 @@ "200": { "body": { "value": [ - { + { "properties": { "tag": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020001", "type": "Microsoft.ApiManagement/service/tags", "name": "5600b59375ff190048020001", - "properties": { "displayName": "tag1" } + "properties": { + "displayName": "tag1" + } }, "operation": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/apiId1/operations/opid1", @@ -40,7 +42,9 @@ "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tags/5600b59375ff190048020001", "type": "Microsoft.ApiManagement/service/tags", "name": "5600b59375ff190048020001", - "properties": { "displayName": "tag1" } + "properties": { + "displayName": "tag1" + } }, "operation": { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/apiId1/operations/opid2", @@ -63,4 +67,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicies.json index e5454281711f..505d9dd0317d 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2017-03-01/examples/ApiManagementListPolicies.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "policyContent": "\r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "New issue received", - "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", - "isDefault": true, - "parameters": [ - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "IssueId", - "title": "Issue id" - }, - { - "name": "IssueName", - "title": "Issue name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/NewIssueNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "NewIssueNotificationMessage", + "properties": { + "subject": "Your request $IssueName was received", + "body": "\r\n\r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "New issue received", + "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", + "isDefault": true, + "parameters": [ + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "IssueId", + "title": "Issue id" + }, + { + "name": "IssueName", + "title": "Issue name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetGroup.json index 62559e461aca..712d35fb4776 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetGroup.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetIdentityProvider.json index 0a6412a82465..e451106918d3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetIdentityProvider.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "aadB2C", - "properties": { - "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", - "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_signup-policy" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "aadB2C", + "properties": { + "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", + "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_signup-policy" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetLogger.json index 617befa4e7b6..e601063d1aab 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetLogger.json @@ -1,27 +1,27 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "loggerid": "templateLogger" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "kloudapilogger1", - "properties": { - "loggerType": "azureEventHub", - "description": "testeventhub3again", - "credentials": { - "name": "testeventhub4", - "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" - }, - "isBuffered": true - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "loggerid": "templateLogger" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "kloudapilogger1", + "properties": { + "loggerType": "azureEventHub", + "description": "testeventhub3again", + "credentials": { + "name": "testeventhub4", + "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" + }, + "isBuffered": true } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetNotification.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetNotification.json index 1fc327eec957..cf424cad2653 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetNotification.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetNotification.json @@ -1,32 +1,32 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "RequestPublisherNotificationMessage", - "properties": { - "title": "Subscription requests (requiring approval)", - "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/contoso@live.com", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar!live", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - ] - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "RequestPublisherNotificationMessage", + "properties": { + "title": "Subscription requests (requiring approval)", + "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/contoso@live.com", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar!live", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/recipientEmails/foobar@live.com" + ], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" + ] + } } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOpenIdConnectProvider.json index 8ddbfdcf9820..eb17f3bd2419 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOpenIdConnectProvider.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOperationTag.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOperationTag.json index 698e1e318e4d..2d063a073dc1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOperationTag.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetOperationTag.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetPolicy.json index 1ba7069482bc..cae64c535489 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementGetPolicy.json @@ -1,21 +1,21 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "policyContent": "\r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "Application gallery submission approved", - "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", - "isDefault": true, - "parameters": [ - { - "name": "AppId", - "title": "Application id" - }, - { - "name": "AppName", - "title": "Application name" - }, - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/ApplicationApprovedNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "ApplicationApprovedNotificationMessage", + "properties": { + "subject": "Your application $AppName is published in the application gallery", + "body": "\r\n\r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "Application gallery submission approved", + "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", + "isDefault": true, + "parameters": [ + { + "name": "AppId", + "title": "Application id" + }, + { + "name": "AppName", + "title": "Application name" + }, + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroupUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroupUsers.json index 3d592beca464..1e847d2a6679 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroupUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroupUsers.json @@ -1,37 +1,37 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "groupId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", - "type": "Microsoft.ApiManagement/service/groups/users", - "name": "armTemplateUser1", - "properties": { - "firstName": "user1", - "lastName": "lastname1", - "email": "user1@live.com", - "state": "active", - "registrationDate": "2017-05-31T18:54:41.447Z", - "note": "note for user 1", - "identities": [ - { - "provider": "Basic", - "id": "user1@live.com" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "groupId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", + "type": "Microsoft.ApiManagement/service/groups/users", + "name": "armTemplateUser1", + "properties": { + "firstName": "user1", + "lastName": "lastname1", + "email": "user1@live.com", + "state": "active", + "registrationDate": "2017-05-31T18:54:41.447Z", + "note": "note for user 1", + "identities": [ + { + "provider": "Basic", + "id": "user1@live.com" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroups.json index 84c27d333707..397f98cb9d9a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListGroups.json @@ -1,62 +1,62 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "Administrators", - "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "Developers", - "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020003", - "properties": { - "displayName": "Guests", - "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", - "builtIn": true, - "type": "system" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "Administrators", + "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", + "builtIn": true, + "type": "system" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "Developers", + "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", + "builtIn": true, + "type": "system" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020003", + "properties": { + "displayName": "Guests", + "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", + "builtIn": true, + "type": "system" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIdentityProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIdentityProviders.json index 51a9f3db0022..f4ad65a57d14 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIdentityProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIdentityProviders.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Google", - "properties": { - "clientId": "googleId", - "clientSecret": "googlesecret", - "type": "google" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Aad", - "properties": { - "clientId": "aadapplicationid", - "clientSecret": "aadapplicationkey", - "type": "aad", - "allowedTenants": [ - "samiraad.onmicrosoft.com" - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "AadB2C", - "properties": { - "clientId": "aadb2clientId", - "clientSecret": "aadb2cClientKey", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_Signin_Default" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Google", + "properties": { + "clientId": "googleId", + "clientSecret": "googlesecret", + "type": "google" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Aad", + "properties": { + "clientId": "aadapplicationid", + "clientSecret": "aadapplicationkey", + "type": "aad", + "allowedTenants": [ + "samiraad.onmicrosoft.com" + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "AadB2C", + "properties": { + "clientId": "aadb2clientId", + "clientSecret": "aadb2cClientKey", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_Signin_Default" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIssues.json index 6a2d429f5834..60712db80448 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListIssues.json @@ -1,30 +1,30 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2017-03-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/issues/57d2ef278aa04f0ad01d6cdc", - "type": "Microsoft.ApiManagement/service/issues", - "name": "57d2ef278aa04f0ad01d6cdc", - "properties": { - "title": "New API issue", - "description": "New API issue description", - "createdDate": "2018-02-01T22:21:20.467Z", - "state": "open", - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2017-03-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/issues/57d2ef278aa04f0ad01d6cdc", + "type": "Microsoft.ApiManagement/service/issues", + "name": "57d2ef278aa04f0ad01d6cdc", + "properties": { + "title": "New API issue", + "description": "New API issue description", + "createdDate": "2018-02-01T22:21:20.467Z", + "state": "open", + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListLoggers.json index 7a3846f7d5de..88f1a94928db 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListLoggers.json @@ -1,44 +1,44 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "buffered111", - "properties": { - "loggerType": "azureEventHub", - "description": "Sample description", - "credentials": { - "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" - }, - "isBuffered": true - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "loggerId", - "properties": { - "loggerType": "azureEventHub", - "description": "adding a new logger", - "credentials": { - "name": "hydraeventhub", - "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" - }, - "isBuffered": true - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "buffered111", + "properties": { + "loggerType": "azureEventHub", + "description": "Sample description", + "credentials": { + "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" + }, + "isBuffered": true } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "loggerId", + "properties": { + "loggerType": "azureEventHub", + "description": "adding a new logger", + "credentials": { + "name": "hydraeventhub", + "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" + }, + "isBuffered": true + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientEmail.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientEmail.json index 5faa07c30d79..95c38f32e7d0 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientEmail.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientEmail.json @@ -1,42 +1,42 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "contoso@live.com", - "properties": { - "email": "contoso@live.com" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar!live", - "properties": { - "email": "foobar!live" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar@live.com", - "properties": { - "email": "foobar@live.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "contoso@live.com", + "properties": { + "email": "contoso@live.com" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar!live", + "properties": { + "email": "foobar!live" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar@live.com", + "properties": { + "email": "foobar@live.com" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientUser.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientUser.json index 4ca3db0b0d61..c03c5fbd0402 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientUser.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotificationRecipientUser.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", - "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", - "name": "576823d0a40f7e74ec07d642", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", + "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", + "name": "576823d0a40f7e74ec07d642", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotifications.json index c48bb872c37e..26bbc2c03a69 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListNotifications.json @@ -1,126 +1,126 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "RequestPublisherNotificationMessage", - "properties": { - "title": "Subscription requests (requiring approval)", - "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "PurchasePublisherNotificationMessage", - "properties": { - "title": "New subscriptions", - "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewApplicationNotificationMessage", - "properties": { - "title": "Application gallery requests", - "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "BCC", - "properties": { - "title": "BCC", - "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", - "recipients": { - "emails": [], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewIssuePublisherNotificationMessage", - "properties": { - "title": "New issue or comment", - "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "AccountClosedPublisher", - "properties": { - "title": "Close account message", - "description": "The following email recipients and users will receive email notifications when developer closes his account", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "QuotaLimitApproachingPublisherNotificationMessage", - "properties": { - "title": "Approaching subscription quota limit", - "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "RequestPublisherNotificationMessage", + "properties": { + "title": "Subscription requests (requiring approval)", + "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" ], - "nextLink": "" + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" + ] + } } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "PurchasePublisherNotificationMessage", + "properties": { + "title": "New subscriptions", + "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewApplicationNotificationMessage", + "properties": { + "title": "Application gallery requests", + "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "BCC", + "properties": { + "title": "BCC", + "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", + "recipients": { + "emails": [], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewIssuePublisherNotificationMessage", + "properties": { + "title": "New issue or comment", + "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "AccountClosedPublisher", + "properties": { + "title": "Close account message", + "description": "The following email recipients and users will receive email notifications when developer closes his account", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "QuotaLimitApproachingPublisherNotificationMessage", + "properties": { + "title": "Approaching subscription quota limit", + "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOpenIdConnectProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOpenIdConnectProviders.json index 3958f9e37cdb..edbeb0f5b1d1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOpenIdConnectProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOpenIdConnectProviders.json @@ -1,29 +1,29 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2018-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperations.json index f52496d14fed..97f3f486d0ad 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperations.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperationsByTags.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperationsByTags.json index d175cf77fc79..a1f0f46befe8 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperationsByTags.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListOperationsByTags.json @@ -30,4 +30,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicies.json index e69962a7f906..9450c06dbd97 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/examples/ApiManagementListPolicies.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2018-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "policyContent": "\r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "New issue received", - "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", - "isDefault": true, - "parameters": [ - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "IssueId", - "title": "Issue id" - }, - { - "name": "IssueName", - "title": "Issue name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "templateName": "newIssueNotificationMessage" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/NewIssueNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "NewIssueNotificationMessage", + "properties": { + "subject": "Your request $IssueName was received", + "body": "\r\n\r\nDear $DevFirstName $DevLastName,
\r\nThank you for contacting us. Our API team will review your issue and get back to you soon.
\r\n\r\n Click this link to view or edit your request.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "New issue received", + "description": "This email is sent to developers after they create a new topic on the Issues page of the developer portal.", + "isDefault": true, + "parameters": [ + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "IssueId", + "title": "Issue id" + }, + { + "name": "IssueName", + "title": "Issue name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" } + ] } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetGroup.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetGroup.json index dbfbc1bbd651..fccf2fdb84c9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetGroup.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetGroup.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "groupId": "59306a29e4bbd510dc24e5f9" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "groupId": "59306a29e4bbd510dc24e5f9" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIdentityProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIdentityProvider.json index d09c6588c459..194c9b30d93f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIdentityProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIdentityProvider.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "identityProviderName": "aadB2C" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "aadB2C", - "properties": { - "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", - "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_signup-policy" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "identityProviderName": "aadB2C" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/aadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "aadB2C", + "properties": { + "clientId": "315c8e2b-29fc-413d-822f-4efab7f43c42", + "clientSecret": "SnE4laLjmxc2QKWTPoRxOiwvSnnwMCFN+jLYDpBCUXw=", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_signup-policy" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIssue.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIssue.json index 0643543e73ba..4e89b610cf83 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIssue.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetIssue.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetLogger.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetLogger.json index 99a890ea296a..997534518162 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetLogger.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetLogger.json @@ -1,28 +1,28 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "loggerId": "templateLogger" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "kloudapilogger1", - "properties": { - "loggerType": "azureEventHub", - "description": "testeventhub3again", - "credentials": { - "name": "testeventhub4", - "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" - }, - "isBuffered": true, - "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/eventhubapim" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "loggerId": "templateLogger" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/kloudapilogger1", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "kloudapilogger1", + "properties": { + "loggerType": "azureEventHub", + "description": "testeventhub3again", + "credentials": { + "name": "testeventhub4", + "connectionString": "Endpoint=sb://eventhubapim.servicebus.windows.net/;SharedAccessKeyName=Sender;SharedAccessKey=************" + }, + "isBuffered": true, + "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/eventhubapim" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetNotification.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetNotification.json index 76e2c4b31026..b6fb1ff77b9f 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetNotification.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetNotification.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetOpenIdConnectProvider.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetOpenIdConnectProvider.json index 75c18aa2094d..c8aa98a4ade7 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetOpenIdConnectProvider.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetOpenIdConnectProvider.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "opid": "templateOpenIdConnect2" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "opid": "templateOpenIdConnect2" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicy.json index 5178f5ea3699..dfee0b71348c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicy.json @@ -18,4 +18,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicyFormat.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicyFormat.json index a968a51ff5f4..9b7287dfc159 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicyFormat.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetPolicyFormat.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProduct.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProduct.json index 5e12c072c1d1..88ee71f470b9 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProduct.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProduct.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "unlimited" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/unlimited", - "type": "Microsoft.ApiManagement/service/products", - "name": "unlimited", - "properties": { - "displayName": "Unlimited", - "description": "Subscribers have completely unlimited access to the API. Administrator approval is required.", - "subscriptionRequired": true, - "approvalRequired": true, - "subscriptionsLimit": 1, - "state": "published" - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "productId": "unlimited" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/unlimited", + "type": "Microsoft.ApiManagement/service/products", + "name": "unlimited", + "properties": { + "displayName": "Unlimited", + "description": "Subscribers have completely unlimited access to the API. Administrator approval is required.", + "subscriptionRequired": true, + "approvalRequired": true, + "subscriptionsLimit": 1, + "state": "published" } + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductPolicy.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductPolicy.json index 044a5669350b..bf8479eb2a19 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductPolicy.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementGetProductPolicy.json @@ -1,22 +1,22 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "productId": "kjoshiarmTemplateProduct4", - "policyId": "policy" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/products/kjoshiarmTemplateProduct4/policies/policy", - "type": "Microsoft.ApiManagement/service/products/policies", - "name": "policy", - "properties": { - "value": "Dear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", - "title": "Application gallery submission approved", - "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", - "isDefault": true, - "parameters": [ - { - "name": "AppId", - "title": "Application id" - }, - { - "name": "AppName", - "title": "Application name" - }, - { - "name": "DevFirstName", - "title": "Developer first name" - }, - { - "name": "DevLastName", - "title": "Developer last name" - }, - { - "name": "OrganizationName", - "title": "Organization name" - }, - { - "name": "DevPortalUrl", - "title": "Developer portal URL" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/templates/ApplicationApprovedNotificationMessage", + "type": "Microsoft.ApiManagement/service/templates", + "name": "ApplicationApprovedNotificationMessage", + "properties": { + "subject": "Your application $AppName is published in the application gallery", + "body": "\r\n\r\nDear $DevFirstName $DevLastName,
\r\n\r\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\r\n
\r\nBest,
\r\nThe $OrganizationName API Team
\r\n \r\n", + "title": "Application gallery submission approved", + "description": "Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.", + "isDefault": true, + "parameters": [ + { + "name": "AppId", + "title": "Application id" + }, + { + "name": "AppName", + "title": "Application name" + }, + { + "name": "DevFirstName", + "title": "Developer first name" + }, + { + "name": "DevLastName", + "title": "Developer last name" + }, + { + "name": "OrganizationName", + "title": "Organization name" + }, + { + "name": "DevPortalUrl", + "title": "Developer portal URL" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroupUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroupUsers.json index 498b30a7bf88..b61476eb0c3a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroupUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroupUsers.json @@ -1,37 +1,37 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "groupId": "57d2ef278aa04f0888cba3f3" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", - "type": "Microsoft.ApiManagement/service/groups/users", - "name": "armTemplateUser1", - "properties": { - "firstName": "user1", - "lastName": "lastname1", - "email": "user1@live.com", - "state": "active", - "registrationDate": "2017-05-31T18:54:41.447Z", - "note": "note for user 1", - "identities": [ - { - "provider": "Basic", - "id": "user1@live.com" - } - ] - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "groupId": "57d2ef278aa04f0888cba3f3" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/kjoshiarmTemplateUser1", + "type": "Microsoft.ApiManagement/service/groups/users", + "name": "armTemplateUser1", + "properties": { + "firstName": "user1", + "lastName": "lastname1", + "email": "user1@live.com", + "state": "active", + "registrationDate": "2017-05-31T18:54:41.447Z", + "note": "note for user 1", + "identities": [ + { + "provider": "Basic", + "id": "user1@live.com" + } + ] } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroups.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroups.json index 3bfb0a19f3c2..efc17808e9b4 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroups.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListGroups.json @@ -1,62 +1,62 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020001", - "properties": { - "displayName": "Administrators", - "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", - "type": "Microsoft.ApiManagement/service/groups", - "name": "59306a29e4bbd510dc24e5f9", - "properties": { - "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", - "description": "awesome group of people", - "builtIn": false, - "type": "external", - "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020002", - "properties": { - "displayName": "Developers", - "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", - "builtIn": true, - "type": "system" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", - "type": "Microsoft.ApiManagement/service/groups", - "name": "5600b59375ff190048020003", - "properties": { - "displayName": "Guests", - "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", - "builtIn": true, - "type": "system" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020001", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020001", + "properties": { + "displayName": "Administrators", + "description": "Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.", + "builtIn": true, + "type": "system" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/59306a29e4bbd510dc24e5f9", + "type": "Microsoft.ApiManagement/service/groups", + "name": "59306a29e4bbd510dc24e5f9", + "properties": { + "displayName": "AwesomeGroup (samiraad.onmicrosoft.com)", + "description": "awesome group of people", + "builtIn": false, + "type": "external", + "externalId": "aad://samiraad.onmicrosoft.com/groups/3773adf4-032e-4d25-9988-eaff9ca72eca" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020002", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020002", + "properties": { + "displayName": "Developers", + "description": "Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.", + "builtIn": true, + "type": "system" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/groups/5600b59375ff190048020003", + "type": "Microsoft.ApiManagement/service/groups", + "name": "5600b59375ff190048020003", + "properties": { + "displayName": "Guests", + "description": "Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.", + "builtIn": true, + "type": "system" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIdentityProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIdentityProviders.json index 6a6de60e2f3e..d25e17789ff3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIdentityProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIdentityProviders.json @@ -1,55 +1,55 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Google", - "properties": { - "clientId": "googleId", - "clientSecret": "googlesecret", - "type": "google" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "Aad", - "properties": { - "clientId": "aadapplicationid", - "clientSecret": "aadapplicationkey", - "type": "aad", - "allowedTenants": [ - "samiraad.onmicrosoft.com" - ] - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", - "type": "Microsoft.ApiManagement/service/identityProviders", - "name": "AadB2C", - "properties": { - "clientId": "aadb2clientId", - "clientSecret": "aadb2cClientKey", - "type": "aadB2C", - "allowedTenants": [ - "samirtestbc.onmicrosoft.com" - ], - "signupPolicyName": "B2C_1_Signup_Default", - "signinPolicyName": "B2C_1_Signin_Default" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Google", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Google", + "properties": { + "clientId": "googleId", + "clientSecret": "googlesecret", + "type": "google" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/Aad", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "Aad", + "properties": { + "clientId": "aadapplicationid", + "clientSecret": "aadapplicationkey", + "type": "aad", + "allowedTenants": [ + "samiraad.onmicrosoft.com" + ] + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/identityProviders/AadB2C", + "type": "Microsoft.ApiManagement/service/identityProviders", + "name": "AadB2C", + "properties": { + "clientId": "aadb2clientId", + "clientSecret": "aadb2cClientKey", + "type": "aadB2C", + "allowedTenants": [ + "samirtestbc.onmicrosoft.com" + ], + "signupPolicyName": "B2C_1_Signup_Default", + "signinPolicyName": "B2C_1_Signin_Default" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIssues.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIssues.json index 79d6cb98772b..88f5920c6386 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIssues.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListIssues.json @@ -1,30 +1,30 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/issues/57d2ef278aa04f0ad01d6cdc", - "type": "Microsoft.ApiManagement/service/issues", - "name": "57d2ef278aa04f0ad01d6cdc", - "properties": { - "title": "New API issue", - "description": "New API issue description", - "createdDate": "2018-02-01T22:21:20.467Z", - "state": "open", - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", - "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/issues/57d2ef278aa04f0ad01d6cdc", + "type": "Microsoft.ApiManagement/service/issues", + "name": "57d2ef278aa04f0ad01d6cdc", + "properties": { + "title": "New API issue", + "description": "New API issue description", + "createdDate": "2018-02-01T22:21:20.467Z", + "state": "open", + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1", + "apiId": "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/apis/57d1f7558aa04f15146d9d8a" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListLoggers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListLoggers.json index 93eb4c45d346..04cf850108f1 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListLoggers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListLoggers.json @@ -1,46 +1,46 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "buffered111", - "properties": { - "loggerType": "azureEventHub", - "description": "Sample description", - "credentials": { - "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" - }, - "isBuffered": true, - "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/apimaccounts" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", - "type": "Microsoft.ApiManagement/service/loggers", - "name": "loggerId", - "properties": { - "loggerType": "azureEventHub", - "description": "adding a new logger", - "credentials": { - "name": "hydraeventhub", - "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" - }, - "isBuffered": true, - "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/hydraeventhub-ns" - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/buffered111", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "buffered111", + "properties": { + "loggerType": "azureEventHub", + "description": "Sample description", + "credentials": { + "connectionString": "Endpoint=sb://apimaccounts.servicebus.windows.net/;SharedAccessKeyName=Send;SharedAccessKey=*******************h=****" + }, + "isBuffered": true, + "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/apimaccounts" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/loggers/loggerId", + "type": "Microsoft.ApiManagement/service/loggers", + "name": "loggerId", + "properties": { + "loggerType": "azureEventHub", + "description": "adding a new logger", + "credentials": { + "name": "hydraeventhub", + "connectionString": "{{Logger-Credentials-59544ef2e4bbd50d9468c618}}" + }, + "isBuffered": true, + "resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.EventHub/namespaces/hydraeventhub-ns" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientEmails.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientEmails.json index 2551c969038f..1ddcfc404062 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientEmails.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientEmails.json @@ -1,42 +1,42 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "contoso@live.com", - "properties": { - "email": "contoso@live.com" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar!live", - "properties": { - "email": "foobar!live" - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", - "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", - "name": "foobar@live.com", - "properties": { - "email": "foobar@live.com" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "contoso@live.com", + "properties": { + "email": "contoso@live.com" } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar!live", + "properties": { + "email": "foobar!live" + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com", + "type": "Microsoft.ApiManagement/service/notifications/recipientEmails", + "name": "foobar@live.com", + "properties": { + "email": "foobar@live.com" + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientUsers.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientUsers.json index 5e8d9faceb40..0c0438b5e12c 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientUsers.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotificationRecipientUsers.json @@ -1,26 +1,26 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid", - "notificationName": "RequestPublisherNotificationMessage" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", - "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", - "name": "576823d0a40f7e74ec07d642", - "properties": { - "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - } - } - ], - "nextLink": "" + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid", + "notificationName": "RequestPublisherNotificationMessage" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientUsers/576823d0a40f7e74ec07d642", + "type": "Microsoft.ApiManagement/service/notifications/recipientUsers", + "name": "576823d0a40f7e74ec07d642", + "properties": { + "userId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotifications.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotifications.json index 5392d1ced903..51c33cf2b8fa 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotifications.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListNotifications.json @@ -1,126 +1,126 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "RequestPublisherNotificationMessage", - "properties": { - "title": "Subscription requests (requiring approval)", - "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "PurchasePublisherNotificationMessage", - "properties": { - "title": "New subscriptions", - "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewApplicationNotificationMessage", - "properties": { - "title": "Application gallery requests", - "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "BCC", - "properties": { - "title": "BCC", - "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", - "recipients": { - "emails": [], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "NewIssuePublisherNotificationMessage", - "properties": { - "title": "New issue or comment", - "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "AccountClosedPublisher", - "properties": { - "title": "Close account message", - "description": "The following email recipients and users will receive email notifications when developer closes his account", - "recipients": { - "emails": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" - ], - "users": [] - } - } - }, - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", - "type": "Microsoft.ApiManagement/service/notifications", - "name": "QuotaLimitApproachingPublisherNotificationMessage", - "properties": { - "title": "Approaching subscription quota limit", - "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", - "recipients": { - "emails": [], - "users": [ - "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" - ] - } - } - } + "parameters": { + "serviceName": "apimService1", + "resourceGroupName": "rg1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "RequestPublisherNotificationMessage", + "properties": { + "title": "Subscription requests (requiring approval)", + "description": "The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar!live", + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/foobar@live.com" ], - "nextLink": "" + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/576823d0a40f7e74ec07d642" + ] + } } - } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/PurchasePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "PurchasePublisherNotificationMessage", + "properties": { + "title": "New subscriptions", + "description": "The following email recipients and users will receive email notifications about new API product subscriptions.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewApplicationNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewApplicationNotificationMessage", + "properties": { + "title": "Application gallery requests", + "description": "The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/BCC", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "BCC", + "properties": { + "title": "BCC", + "description": "The following recipients will receive blind carbon copies of all emails sent to developers.", + "recipients": { + "emails": [], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/NewIssuePublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "NewIssuePublisherNotificationMessage", + "properties": { + "title": "New issue or comment", + "description": "The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/AccountClosedPublisher", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "AccountClosedPublisher", + "properties": { + "title": "Close account message", + "description": "The following email recipients and users will receive email notifications when developer closes his account", + "recipients": { + "emails": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@live.com" + ], + "users": [] + } + } + }, + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/notifications/QuotaLimitApproachingPublisherNotificationMessage", + "type": "Microsoft.ApiManagement/service/notifications", + "name": "QuotaLimitApproachingPublisherNotificationMessage", + "properties": { + "title": "Approaching subscription quota limit", + "description": "The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.", + "recipients": { + "emails": [], + "users": [ + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/users/1" + ] + } + } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOpenIdConnectProviders.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOpenIdConnectProviders.json index 4e0e02888f6c..48a4384151d3 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOpenIdConnectProviders.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOpenIdConnectProviders.json @@ -1,29 +1,29 @@ { - "parameters": { - "resourceGroupName": "rg1", - "serviceName": "apimService1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", - "type": "Microsoft.ApiManagement/service/openidconnectproviders", - "name": "templateOpenIdConnect2", - "properties": { - "displayName": "templateoidprovider2", - "description": "open id provider template2", - "metadataEndpoint": "https://oidprovider-template2.net", - "clientId": "oidprovidertemplate2", - "clientSecret": "oidsecretproviderTemplate2" - } - } - ], - "nextLink": "" + "parameters": { + "resourceGroupName": "rg1", + "serviceName": "apimService1", + "api-version": "2019-01-01", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/openidConnectProviders/templateOpenIdConnect2", + "type": "Microsoft.ApiManagement/service/openidconnectproviders", + "name": "templateOpenIdConnect2", + "properties": { + "displayName": "templateoidprovider2", + "description": "open id provider template2", + "metadataEndpoint": "https://oidprovider-template2.net", + "clientId": "oidprovidertemplate2", + "clientSecret": "oidsecretproviderTemplate2" } - } + } + ], + "nextLink": "" + } } -} \ No newline at end of file + } +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOperations.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOperations.json index 3a324cc049cf..d5f967742505 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOperations.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListOperations.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicies.json b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicies.json index aef1dd4c3f21..60728624561a 100644 --- a/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicies.json +++ b/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/examples/ApiManagementListPolicies.json @@ -1,25 +1,25 @@ { - "parameters": { - "serviceName": "apimService1", - "resourceGroupName": "rg1", - "api-version": "2019-01-01", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policies/policy", - "type": "Microsoft.ApiManagement/service/policies", - "name": "policy", - "properties": { - "value": "\r\n\n
|
\n
|
\n
|
\n
|
\n
|
\n
|
\n
|
\n
|
true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available\n (most likely because NSG blocked the incoming traffic).",
- "type": "boolean"
- },
- "dynamicCacheEnabled": {
- "description": "True/false indicating whether the App Service Environment is suspended. The environment can be suspended e.g. when the management endpoint is no longer available\n(most likely because NSG blocked the incoming traffic).",
- "type": "boolean"
- },
- "clusterSettings": {
- "description": "Custom settings for changing the behavior of the App Service Environment.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/NameValuePair"
- }
- },
- "userWhitelistedIpRanges": {
- "description": "User added ip ranges to whitelist on ASE db",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "AppServicePlan": {
- "description": "App Service plan.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/Resource"
- }
- ],
- "properties": {
- "properties": {
- "description": "AppServicePlan resource specific properties",
- "required": [
- "name"
- ],
- "properties": {
- "name": {
- "description": "Name for the App Service plan.",
- "type": "string"
- },
- "workerTierName": {
- "description": "Target worker tier assigned to the App Service plan.",
- "type": "string"
- },
- "status": {
- "description": "App Service plan status.",
- "enum": [
- "Ready",
- "Pending",
- "Creating"
- ],
- "type": "string",
- "readOnly": true,
- "x-ms-enum": {
- "name": "StatusOptions",
- "modelAsString": false
- }
- },
- "subscription": {
- "description": "App Service plan subscription.",
- "type": "string",
- "readOnly": true
- },
- "adminSiteName": {
- "description": "App Service plan administration site.",
- "type": "string"
- },
- "hostingEnvironmentProfile": {
- "$ref": "#/definitions/HostingEnvironmentProfile",
- "description": "Specification for the App Service Environment to use for the App Service plan.",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "maximumNumberOfWorkers": {
- "format": "int32",
- "description": "Maximum number of instances that can be assigned to this App Service plan.",
- "type": "integer",
- "readOnly": true
- },
- "geoRegion": {
- "description": "Geographical location for the App Service plan.",
- "type": "string",
- "readOnly": true
- },
- "perSiteScaling": {
- "description": "If true, apps assigned to this App Service plan can be scaled independently.\nIf false, apps assigned to this App Service plan will scale to all instances of the plan.",
- "default": false,
- "type": "boolean"
- },
- "numberOfSites": {
- "format": "int32",
- "description": "Number of apps assigned to this App Service plan.",
- "type": "integer",
- "readOnly": true
- },
- "isSpot": {
- "description": "If true, this App Service Plan owns spot instances.",
- "type": "boolean"
- },
- "spotExpirationTime": {
- "format": "date-time",
- "description": "The time when the server farm expires. Valid only if it is a spot server farm.",
- "type": "string"
- },
- "resourceGroup": {
- "description": "Resource group of the App Service plan.",
- "type": "string",
- "readOnly": true
- },
- "reserved": {
- "description": "If Linux app service plan true, false otherwise.",
- "default": false,
- "type": "boolean",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "targetWorkerCount": {
- "format": "int32",
- "description": "Scaling worker count.",
- "type": "integer"
- },
- "targetWorkerSizeId": {
- "format": "int32",
- "description": "Scaling worker size ID.",
- "type": "integer"
- },
- "provisioningState": {
- "description": "Provisioning state of the App Service Environment.",
- "enum": [
- "Succeeded",
- "Failed",
- "Canceled",
- "InProgress",
- "Deleting"
- ],
- "type": "string",
- "readOnly": true,
- "x-ms-enum": {
- "name": "ProvisioningState",
- "modelAsString": false
- }
- }
- },
- "x-ms-client-flatten": true
- },
- "sku": {
- "$ref": "#/definitions/SkuDescription"
- }
- }
- },
- "AppServicePlanCollection": {
- "description": "Collection of App Service plans.",
- "required": [
- "value"
- ],
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of resources.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/AppServicePlan"
- }
- },
- "nextLink": {
- "description": "Link to next page of resources.",
- "type": "string"
- }
- }
- },
- "AutoHealActions": {
- "description": "Actions which to take by the auto-heal module when a rule is triggered.",
- "type": "object",
- "properties": {
- "actionType": {
- "description": "Predefined action to be taken.",
- "enum": [
- "Recycle",
- "LogEvent",
- "CustomAction"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "AutoHealActionType",
- "modelAsString": false
- }
- },
- "customAction": {
- "$ref": "#/definitions/AutoHealCustomAction",
- "description": "Custom action to be taken."
- },
- "minProcessExecutionTime": {
- "description": "Minimum time the process must execute\nbefore taking the action",
- "type": "string"
- }
- }
- },
- "AutoHealCustomAction": {
- "description": "Custom action to be executed\nwhen an auto heal rule is triggered.",
- "type": "object",
- "properties": {
- "exe": {
- "description": "Executable to be run.",
- "type": "string"
- },
- "parameters": {
- "description": "Parameters for the executable.",
- "type": "string"
- }
- }
- },
- "AutoHealRules": {
- "description": "Rules that can be defined for auto-heal.",
- "type": "object",
- "properties": {
- "triggers": {
- "$ref": "#/definitions/AutoHealTriggers",
- "description": "Conditions that describe when to execute the auto-heal actions."
- },
- "actions": {
- "$ref": "#/definitions/AutoHealActions",
- "description": "Actions to be executed when a rule is triggered."
- }
- }
- },
- "AutoHealTriggers": {
- "description": "Triggers for auto-heal.",
- "type": "object",
- "properties": {
- "requests": {
- "$ref": "#/definitions/RequestsBasedTrigger",
- "description": "A rule based on total requests."
- },
- "privateBytesInKB": {
- "format": "int32",
- "description": "A rule based on private bytes.",
- "type": "integer"
- },
- "statusCodes": {
- "description": "A rule based on status codes.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/StatusCodesBasedTrigger"
- }
- },
- "slowRequests": {
- "$ref": "#/definitions/SlowRequestsBasedTrigger",
- "description": "A rule based on request execution time."
- }
- }
- },
- "Capability": {
- "description": "Describes the capabilities/features allowed for a specific SKU.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Name of the SKU capability.",
- "type": "string"
- },
- "value": {
- "description": "Value of the SKU capability.",
- "type": "string"
- },
- "reason": {
- "description": "Reason of the SKU capability.",
- "type": "string"
- }
- }
- },
- "CloningInfo": {
- "description": "Information needed for cloning operation.",
- "required": [
- "sourceWebAppId"
- ],
- "type": "object",
- "properties": {
- "correlationId": {
- "format": "uuid",
- "description": "Correlation ID of cloning operation. This ID ties multiple cloning operations\ntogether to use the same snapshot.",
- "type": "string",
- "example": "00000000-0000-0000-0000-000000000000"
- },
- "overwrite": {
- "description": "true to overwrite destination app; otherwise, false.",
- "type": "boolean"
- },
- "cloneCustomHostNames": {
- "description": "true to clone custom hostnames from source app; otherwise, false.",
- "type": "boolean"
- },
- "cloneSourceControl": {
- "description": "true to clone source control from source app; otherwise, false.",
- "type": "boolean"
- },
- "sourceWebAppId": {
- "description": "ARM resource ID of the source app. App resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.",
- "type": "string"
- },
- "hostingEnvironment": {
- "description": "App Service Environment.",
- "type": "string"
- },
- "appSettingsOverrides": {
- "description": "Application setting overrides for cloned app. If specified, these settings override the settings cloned \nfrom source app. Otherwise, application settings from source app are retained.",
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- },
- "configureLoadBalancing": {
- "description": "true to configure load balancing for source and destination app.",
- "type": "boolean"
- },
- "trafficManagerProfileId": {
- "description": "ARM resource ID of the Traffic Manager profile to use, if it exists. Traffic Manager resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.",
- "type": "string"
- },
- "trafficManagerProfileName": {
- "description": "Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.",
- "type": "string"
- },
- "ignoreQuotas": {
- "description": "true if quotas should be ignored; otherwise, false.",
- "type": "boolean"
- }
- }
- },
- "ConnStringInfo": {
- "description": "Database connection string information.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Name of connection string.",
- "type": "string"
- },
- "connectionString": {
- "description": "Connection string value.",
- "type": "string"
- },
- "type": {
- "description": "Type of database.",
- "enum": [
- "MySql",
- "SQLServer",
- "SQLAzure",
- "Custom",
- "NotificationHub",
- "ServiceBus",
- "EventHub",
- "ApiHub",
- "DocDb",
- "RedisCache",
- "PostgreSQL"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ConnectionStringType",
- "modelAsString": false
- }
- }
- }
- },
- "CorsSettings": {
- "description": "Cross-Origin Resource Sharing (CORS) settings for the app.",
- "type": "object",
- "properties": {
- "allowedOrigins": {
- "description": "Gets or sets the list of origins that should be allowed to make cross-origin\ncalls (for example: http://example.com:12345). Use \"*\" to allow all.",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
+ "swagger": "2.0",
+ "info": {
+ "version": "2016-03-01",
+ "title": "Common Definitions"
},
- "CsmOperationCollection": {
- "description": "Collection of Azure resource manager operation metadata.",
+ "host": "management.azure.com",
+ "schemes": [
+ "https"
+ ],
+ "paths": {},
+ "definitions": {
+ "ApiDefinitionInfo": {
+ "description": "Information about the formal API definition for the app.",
+ "type": "object",
+ "properties": {
+ "url": {
+ "description": "The URL of the API definition.",
+ "type": "string"
+ }
+ }
+ },
+ "AppServiceEnvironment": {
+ "description": "Description of an App Service Environment.",
+ "required": [
+ "name",
+ "location",
+ "virtualNetwork",
+ "workerPools"
+ ],
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Name of the App Service Environment.",
+ "type": "string"
+ },
+ "location": {
+ "description": "Location of the App Service Environment, e.g. \"West US\".",
+ "type": "string"
+ },
+ "provisioningState": {
+ "description": "Provisioning state of the App Service Environment.",
+ "enum": [
+ "Succeeded",
+ "Failed",
+ "Canceled",
+ "InProgress",
+ "Deleting"
+ ],
+ "type": "string",
+ "readOnly": true,
+ "x-ms-enum": {
+ "name": "ProvisioningState",
+ "modelAsString": false
+ }
+ },
+ "status": {
+ "description": "Current status of the App Service Environment.",
+ "enum": [
+ "Preparing",
+ "Ready",
+ "Scaling",
+ "Deleting"
+ ],
+ "type": "string",
+ "readOnly": true,
+ "x-ms-enum": {
+ "name": "HostingEnvironmentStatus",
+ "modelAsString": false
+ }
+ },
+ "vnetName": {
+ "description": "Name of the Virtual Network for the App Service Environment.",
+ "type": "string"
+ },
+ "vnetResourceGroupName": {
+ "description": "Resource group of the Virtual Network.",
+ "type": "string"
+ },
+ "vnetSubnetName": {
+ "description": "Subnet of the Virtual Network.",
+ "type": "string"
+ },
+ "virtualNetwork": {
+ "$ref": "#/definitions/VirtualNetworkProfile",
+ "description": "Description of the Virtual Network."
+ },
+ "internalLoadBalancingMode": {
+ "description": "Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.",
+ "enum": [
+ "None",
+ "Web",
+ "Publishing"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "InternalLoadBalancingMode",
+ "modelAsString": false
+ }
+ },
+ "multiSize": {
+ "description": "Front-end VM size, e.g. \"Medium\", \"Large\".",
+ "type": "string"
+ },
+ "multiRoleCount": {
+ "format": "int32",
+ "description": "Number of front-end instances.",
+ "type": "integer"
+ },
+ "workerPools": {
+ "description": "Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/WorkerPool"
+ }
+ },
+ "ipsslAddressCount": {
+ "format": "int32",
+ "description": "Number of IP SSL addresses reserved for the App Service Environment.",
+ "type": "integer"
+ },
+ "databaseEdition": {
+ "description": "Edition of the metadata database for the App Service Environment, e.g. \"Standard\".",
+ "type": "string",
+ "readOnly": true
+ },
+ "databaseServiceObjective": {
+ "description": "Service objective of the metadata database for the App Service Environment, e.g. \"S0\".",
+ "type": "string",
+ "readOnly": true
+ },
+ "upgradeDomains": {
+ "format": "int32",
+ "description": "Number of upgrade domains of the App Service Environment.",
+ "type": "integer",
+ "readOnly": true
+ },
+ "subscriptionId": {
+ "description": "Subscription of the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ },
+ "dnsSuffix": {
+ "description": "DNS suffix of the App Service Environment.",
+ "type": "string"
+ },
+ "lastAction": {
+ "description": "Last deployment action on the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ },
+ "lastActionResult": {
+ "description": "Result of the last deployment action on the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ },
+ "allowedMultiSizes": {
+ "description": "List of comma separated strings describing which VM sizes are allowed for front-ends.",
+ "type": "string",
+ "readOnly": true
+ },
+ "allowedWorkerSizes": {
+ "description": "List of comma separated strings describing which VM sizes are allowed for workers.",
+ "type": "string",
+ "readOnly": true
+ },
+ "maximumNumberOfMachines": {
+ "format": "int32",
+ "description": "Maximum number of VMs in the App Service Environment.",
+ "type": "integer",
+ "readOnly": true
+ },
+ "vipMappings": {
+ "description": "Description of IP SSL mapping for the App Service Environment.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/VirtualIPMapping"
+ },
+ "readOnly": true
+ },
+ "environmentCapacities": {
+ "description": "Current total, used, and available worker capacities.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/StampCapacity"
+ },
+ "readOnly": true
+ },
+ "networkAccessControlList": {
+ "description": "Access control list for controlling traffic to the App Service Environment.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/NetworkAccessControlEntry"
+ }
+ },
+ "environmentIsHealthy": {
+ "description": "True/false indicating whether the App Service Environment is healthy.",
+ "type": "boolean",
+ "readOnly": true
+ },
+ "environmentStatus": {
+ "description": "Detailed message about with results of the last check of the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ },
+ "resourceGroup": {
+ "description": "Resource group of the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ },
+ "frontEndScaleFactor": {
+ "format": "int32",
+ "description": "Scale factor for front-ends.",
+ "type": "integer"
+ },
+ "defaultFrontEndScaleFactor": {
+ "format": "int32",
+ "description": "Default Scale Factor for FrontEnds.",
+ "type": "integer",
+ "readOnly": true
+ },
+ "apiManagementAccountId": {
+ "description": "API Management Account associated with the App Service Environment.",
+ "type": "string"
+ },
+ "suspended": {
+ "description": "true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available\n (most likely because NSG blocked the incoming traffic).",
+ "type": "boolean"
+ },
+ "dynamicCacheEnabled": {
+ "description": "True/false indicating whether the App Service Environment is suspended. The environment can be suspended e.g. when the management endpoint is no longer available\n(most likely because NSG blocked the incoming traffic).",
+ "type": "boolean"
+ },
+ "clusterSettings": {
+ "description": "Custom settings for changing the behavior of the App Service Environment.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/NameValuePair"
+ }
+ },
+ "userWhitelistedIpRanges": {
+ "description": "User added ip ranges to whitelist on ASE db",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ }
+ },
+ "AppServicePlan": {
+ "description": "App Service plan.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Resource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "AppServicePlan resource specific properties",
+ "required": [
+ "name"
+ ],
+ "properties": {
+ "name": {
+ "description": "Name for the App Service plan.",
+ "type": "string"
+ },
+ "workerTierName": {
+ "description": "Target worker tier assigned to the App Service plan.",
+ "type": "string"
+ },
+ "status": {
+ "description": "App Service plan status.",
+ "enum": [
+ "Ready",
+ "Pending",
+ "Creating"
+ ],
+ "type": "string",
+ "readOnly": true,
+ "x-ms-enum": {
+ "name": "StatusOptions",
+ "modelAsString": false
+ }
+ },
+ "subscription": {
+ "description": "App Service plan subscription.",
+ "type": "string",
+ "readOnly": true
+ },
+ "adminSiteName": {
+ "description": "App Service plan administration site.",
+ "type": "string"
+ },
+ "hostingEnvironmentProfile": {
+ "$ref": "#/definitions/HostingEnvironmentProfile",
+ "description": "Specification for the App Service Environment to use for the App Service plan.",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "maximumNumberOfWorkers": {
+ "format": "int32",
+ "description": "Maximum number of instances that can be assigned to this App Service plan.",
+ "type": "integer",
+ "readOnly": true
+ },
+ "geoRegion": {
+ "description": "Geographical location for the App Service plan.",
+ "type": "string",
+ "readOnly": true
+ },
+ "perSiteScaling": {
+ "description": "If true, apps assigned to this App Service plan can be scaled independently.\nIf false, apps assigned to this App Service plan will scale to all instances of the plan.",
+ "default": false,
+ "type": "boolean"
+ },
+ "numberOfSites": {
+ "format": "int32",
+ "description": "Number of apps assigned to this App Service plan.",
+ "type": "integer",
+ "readOnly": true
+ },
+ "isSpot": {
+ "description": "If true, this App Service Plan owns spot instances.",
+ "type": "boolean"
+ },
+ "spotExpirationTime": {
+ "format": "date-time",
+ "description": "The time when the server farm expires. Valid only if it is a spot server farm.",
+ "type": "string"
+ },
+ "resourceGroup": {
+ "description": "Resource group of the App Service plan.",
+ "type": "string",
+ "readOnly": true
+ },
+ "reserved": {
+ "description": "If Linux app service plan true, false otherwise.",
+ "default": false,
+ "type": "boolean",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "targetWorkerCount": {
+ "format": "int32",
+ "description": "Scaling worker count.",
+ "type": "integer"
+ },
+ "targetWorkerSizeId": {
+ "format": "int32",
+ "description": "Scaling worker size ID.",
+ "type": "integer"
+ },
+ "provisioningState": {
+ "description": "Provisioning state of the App Service Environment.",
+ "enum": [
+ "Succeeded",
+ "Failed",
+ "Canceled",
+ "InProgress",
+ "Deleting"
+ ],
+ "type": "string",
+ "readOnly": true,
+ "x-ms-enum": {
+ "name": "ProvisioningState",
+ "modelAsString": false
+ }
+ }
+ },
+ "x-ms-client-flatten": true
+ },
+ "sku": {
+ "$ref": "#/definitions/SkuDescription"
+ }
+ }
+ },
+ "AppServicePlanCollection": {
+ "description": "Collection of App Service plans.",
"required": [
"value"
],
@@ -616,407 +391,2338 @@
"description": "Collection of resources.",
"type": "array",
"items": {
- "$ref": "#/definitions/CsmOperationDescription"
+ "$ref": "#/definitions/AppServicePlan"
+ }
+ },
+ "nextLink": {
+ "description": "Link to next page of resources.",
+ "type": "string"
+ }
+ }
+ },
+ "AutoHealActions": {
+ "description": "Actions which to take by the auto-heal module when a rule is triggered.",
+ "type": "object",
+ "properties": {
+ "actionType": {
+ "description": "Predefined action to be taken.",
+ "enum": [
+ "Recycle",
+ "LogEvent",
+ "CustomAction"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "AutoHealActionType",
+ "modelAsString": false
+ }
+ },
+ "customAction": {
+ "$ref": "#/definitions/AutoHealCustomAction",
+ "description": "Custom action to be taken."
+ },
+ "minProcessExecutionTime": {
+ "description": "Minimum time the process must execute\nbefore taking the action",
+ "type": "string"
+ }
+ }
+ },
+ "AutoHealCustomAction": {
+ "description": "Custom action to be executed\nwhen an auto heal rule is triggered.",
+ "type": "object",
+ "properties": {
+ "exe": {
+ "description": "Executable to be run.",
+ "type": "string"
+ },
+ "parameters": {
+ "description": "Parameters for the executable.",
+ "type": "string"
+ }
+ }
+ },
+ "AutoHealRules": {
+ "description": "Rules that can be defined for auto-heal.",
+ "type": "object",
+ "properties": {
+ "triggers": {
+ "$ref": "#/definitions/AutoHealTriggers",
+ "description": "Conditions that describe when to execute the auto-heal actions."
+ },
+ "actions": {
+ "$ref": "#/definitions/AutoHealActions",
+ "description": "Actions to be executed when a rule is triggered."
+ }
+ }
+ },
+ "AutoHealTriggers": {
+ "description": "Triggers for auto-heal.",
+ "type": "object",
+ "properties": {
+ "requests": {
+ "$ref": "#/definitions/RequestsBasedTrigger",
+ "description": "A rule based on total requests."
+ },
+ "privateBytesInKB": {
+ "format": "int32",
+ "description": "A rule based on private bytes.",
+ "type": "integer"
+ },
+ "statusCodes": {
+ "description": "A rule based on status codes.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/StatusCodesBasedTrigger"
+ }
+ },
+ "slowRequests": {
+ "$ref": "#/definitions/SlowRequestsBasedTrigger",
+ "description": "A rule based on request execution time."
+ }
+ }
+ },
+ "Capability": {
+ "description": "Describes the capabilities/features allowed for a specific SKU.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Name of the SKU capability.",
+ "type": "string"
+ },
+ "value": {
+ "description": "Value of the SKU capability.",
+ "type": "string"
+ },
+ "reason": {
+ "description": "Reason of the SKU capability.",
+ "type": "string"
+ }
+ }
+ },
+ "CloningInfo": {
+ "description": "Information needed for cloning operation.",
+ "required": [
+ "sourceWebAppId"
+ ],
+ "type": "object",
+ "properties": {
+ "correlationId": {
+ "format": "uuid",
+ "description": "Correlation ID of cloning operation. This ID ties multiple cloning operations\ntogether to use the same snapshot.",
+ "type": "string",
+ "example": "00000000-0000-0000-0000-000000000000"
+ },
+ "overwrite": {
+ "description": "true to overwrite destination app; otherwise, false.",
+ "type": "boolean"
+ },
+ "cloneCustomHostNames": {
+ "description": "true to clone custom hostnames from source app; otherwise, false.",
+ "type": "boolean"
+ },
+ "cloneSourceControl": {
+ "description": "true to clone source control from source app; otherwise, false.",
+ "type": "boolean"
+ },
+ "sourceWebAppId": {
+ "description": "ARM resource ID of the source app. App resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.",
+ "type": "string"
+ },
+ "hostingEnvironment": {
+ "description": "App Service Environment.",
+ "type": "string"
+ },
+ "appSettingsOverrides": {
+ "description": "Application setting overrides for cloned app. If specified, these settings override the settings cloned \nfrom source app. Otherwise, application settings from source app are retained.",
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ },
+ "configureLoadBalancing": {
+ "description": "true to configure load balancing for source and destination app.",
+ "type": "boolean"
+ },
+ "trafficManagerProfileId": {
+ "description": "ARM resource ID of the Traffic Manager profile to use, if it exists. Traffic Manager resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.",
+ "type": "string"
+ },
+ "trafficManagerProfileName": {
+ "description": "Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.",
+ "type": "string"
+ },
+ "ignoreQuotas": {
+ "description": "true if quotas should be ignored; otherwise, false.",
+ "type": "boolean"
+ }
+ }
+ },
+ "ConnStringInfo": {
+ "description": "Database connection string information.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Name of connection string.",
+ "type": "string"
+ },
+ "connectionString": {
+ "description": "Connection string value.",
+ "type": "string"
+ },
+ "type": {
+ "description": "Type of database.",
+ "enum": [
+ "MySql",
+ "SQLServer",
+ "SQLAzure",
+ "Custom",
+ "NotificationHub",
+ "ServiceBus",
+ "EventHub",
+ "ApiHub",
+ "DocDb",
+ "RedisCache",
+ "PostgreSQL"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ConnectionStringType",
+ "modelAsString": false
+ }
+ }
+ }
+ },
+ "CorsSettings": {
+ "description": "Cross-Origin Resource Sharing (CORS) settings for the app.",
+ "type": "object",
+ "properties": {
+ "allowedOrigins": {
+ "description": "Gets or sets the list of origins that should be allowed to make cross-origin\ncalls (for example: http://example.com:12345). Use \"*\" to allow all.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ }
+ },
+ "CsmOperationCollection": {
+ "description": "Collection of Azure resource manager operation metadata.",
+ "required": [
+ "value"
+ ],
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of resources.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CsmOperationDescription"
+ }
+ },
+ "nextLink": {
+ "description": "Link to next page of resources.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "CsmOperationDescription": {
+ "description": "Description of an operation available for Microsoft.Web resource provider.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "display": {
+ "$ref": "#/definitions/CsmOperationDisplay"
+ },
+ "origin": {
+ "type": "string"
+ },
+ "properties": {
+ "$ref": "#/definitions/CsmOperationDescriptionProperties"
+ }
+ }
+ },
+ "CsmOperationDescriptionProperties": {
+ "description": "Properties available for a Microsoft.Web resource provider operation.",
+ "type": "object",
+ "properties": {
+ "serviceSpecification": {
+ "$ref": "#/definitions/ServiceSpecification"
+ }
+ }
+ },
+ "CsmOperationDisplay": {
+ "description": "Meta data about operation used for display in portal.",
+ "type": "object",
+ "properties": {
+ "provider": {
+ "type": "string"
+ },
+ "resource": {
+ "type": "string"
+ },
+ "operation": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ }
+ }
+ },
+ "CsmUsageQuota": {
+ "description": "Usage of the quota resource.",
+ "type": "object",
+ "properties": {
+ "unit": {
+ "description": "Units of measurement for the quota resource.",
+ "type": "string"
+ },
+ "nextResetTime": {
+ "format": "date-time",
+ "description": "Next reset time for the resource counter.",
+ "type": "string"
+ },
+ "currentValue": {
+ "format": "int64",
+ "description": "The current value of the resource counter.",
+ "type": "integer"
+ },
+ "limit": {
+ "format": "int64",
+ "description": "The resource limit.",
+ "type": "integer"
+ },
+ "name": {
+ "$ref": "#/definitions/LocalizableString",
+ "description": "Quota name."
+ }
+ }
+ },
+ "CsmUsageQuotaCollection": {
+ "description": "Collection of CSM usage quotas.",
+ "required": [
+ "value"
+ ],
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of resources.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CsmUsageQuota"
+ }
+ },
+ "nextLink": {
+ "description": "Link to next page of resources.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "Dimension": {
+ "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, \nwhere instance name is dimension of the metric HTTP request",
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "displayName": {
+ "type": "string"
+ },
+ "internalName": {
+ "type": "string"
+ },
+ "toBeExportedForShoebox": {
+ "type": "boolean"
+ }
+ }
+ },
+ "ErrorEntity": {
+ "description": "Body of the error response returned from the API.",
+ "type": "object",
+ "properties": {
+ "extendedCode": {
+ "description": "Type of error.",
+ "type": "string"
+ },
+ "messageTemplate": {
+ "description": "Message template.",
+ "type": "string"
+ },
+ "parameters": {
+ "description": "Parameters for the template.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "innerErrors": {
+ "description": "Inner errors.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ErrorEntity"
+ }
+ },
+ "code": {
+ "description": "Basic error code.",
+ "type": "string"
+ },
+ "message": {
+ "description": "Any details of the error.",
+ "type": "string"
+ }
+ }
+ },
+ "DefaultErrorResponse": {
+ "description": "App Service error response.",
+ "type": "object",
+ "properties": {
+ "error": {
+ "description": "Error model.",
+ "type": "object",
+ "properties": {
+ "code": {
+ "description": "Standardized string to programmatically identify the error.",
+ "type": "string",
+ "readOnly": true
+ },
+ "message": {
+ "description": "Detailed error description and debugging information.",
+ "type": "string",
+ "readOnly": true
+ },
+ "target": {
+ "description": "Detailed error description and debugging information.",
+ "type": "string",
+ "readOnly": true
+ },
+ "details": {
+ "type": "array",
+ "items": {
+ "description": "Detailed errors.",
+ "properties": {
+ "code": {
+ "description": "Standardized string to programmatically identify the error.",
+ "type": "string",
+ "readOnly": true
+ },
+ "message": {
+ "description": "Detailed error description and debugging information.",
+ "type": "string",
+ "readOnly": true
+ },
+ "target": {
+ "description": "Detailed error description and debugging information.",
+ "type": "string",
+ "readOnly": true
+ }
+ },
+ "readOnly": true
+ }
+ },
+ "innererror": {
+ "description": "More information to debug error.",
+ "type": "string",
+ "readOnly": true
+ }
+ },
+ "readOnly": true
+ }
+ }
+ },
+ "Experiments": {
+ "description": "Routing rules in production experiments.",
+ "type": "object",
+ "properties": {
+ "rampUpRules": {
+ "description": "List of ramp-up rules.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/RampUpRule"
+ }
+ }
+ }
+ },
+ "HandlerMapping": {
+ "description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension. \nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.",
+ "type": "object",
+ "properties": {
+ "extension": {
+ "description": "Requests with this extension will be handled using the specified FastCGI application.",
+ "type": "string"
+ },
+ "scriptProcessor": {
+ "description": "The absolute path to the FastCGI application.",
+ "type": "string"
+ },
+ "arguments": {
+ "description": "Command-line arguments to be passed to the script processor.",
+ "type": "string"
+ }
+ }
+ },
+ "HostNameSslState": {
+ "description": "SSL-enabled hostname.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Hostname.",
+ "type": "string"
+ },
+ "sslState": {
+ "description": "SSL type.",
+ "enum": [
+ "Disabled",
+ "SniEnabled",
+ "IpBasedEnabled"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "SslState",
+ "modelAsString": false
+ }
+ },
+ "virtualIP": {
+ "description": "Virtual IP address assigned to the hostname if IP based SSL is enabled.",
+ "type": "string"
+ },
+ "thumbprint": {
+ "description": "SSL certificate thumbprint.",
+ "type": "string"
+ },
+ "toUpdate": {
+ "description": "Set to true to update existing hostname.",
+ "type": "boolean"
+ },
+ "hostType": {
+ "description": "Indicates whether the hostname is a standard or repository hostname.",
+ "enum": [
+ "Standard",
+ "Repository"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "HostType",
+ "modelAsString": false
+ }
+ }
+ }
+ },
+ "HostingEnvironmentProfile": {
+ "description": "Specification for an App Service Environment to use for this resource.",
+ "type": "object",
+ "properties": {
+ "id": {
+ "description": "Resource ID of the App Service Environment.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Name of the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ },
+ "type": {
+ "description": "Resource type of the App Service Environment.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "HybridConnection": {
+ "description": "Hybrid Connection contract. This is used to configure a Hybrid Connection.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "HybridConnection resource specific properties",
+ "properties": {
+ "serviceBusNamespace": {
+ "description": "The name of the Service Bus namespace.",
+ "type": "string",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "relayName": {
+ "description": "The name of the Service Bus relay.",
+ "type": "string",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "relayArmUri": {
+ "description": "The ARM URI to the Service Bus relay.",
+ "type": "string"
+ },
+ "hostname": {
+ "description": "The hostname of the endpoint.",
+ "type": "string"
+ },
+ "port": {
+ "format": "int32",
+ "description": "The port of the endpoint.",
+ "type": "integer"
+ },
+ "sendKeyName": {
+ "description": "The name of the Service Bus key which has Send permissions. This is used to authenticate to Service Bus.",
+ "type": "string"
+ },
+ "sendKeyValue": {
+ "description": "The value of the Service Bus key. This is used to authenticate to Service Bus. In ARM this key will not be returned\nnormally, use the POST /listKeys API instead.",
+ "type": "string"
+ },
+ "serviceBusSuffix": {
+ "description": "The suffix for the service bus endpoint. By default this is .servicebus.windows.net",
+ "type": "string"
+ }
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "HybridConnectionKey": {
+ "description": "Hybrid Connection key contract. This has the send key name and value for a Hybrid Connection.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "HybridConnectionKey resource specific properties",
+ "properties": {
+ "sendKeyName": {
+ "description": "The name of the send key.",
+ "type": "string",
+ "readOnly": true
+ },
+ "sendKeyValue": {
+ "description": "The value of the send key.",
+ "type": "string",
+ "readOnly": true
+ }
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "Identifier": {
+ "description": "A domain specific resource identifier.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "Identifier resource specific properties",
+ "properties": {
+ "id": {
+ "description": "String representation of the identity.",
+ "type": "string"
+ }
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "IdentifierCollection": {
+ "description": "Collection of identifiers.",
+ "required": [
+ "value"
+ ],
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of resources.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Identifier"
+ }
+ },
+ "nextLink": {
+ "description": "Link to next page of resources.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "IpSecurityRestriction": {
+ "description": "IP security restriction on an app.",
+ "required": [
+ "ipAddress"
+ ],
+ "type": "object",
+ "properties": {
+ "ipAddress": {
+ "description": "IP address the security restriction is valid for.",
+ "type": "string"
+ },
+ "subnetMask": {
+ "description": "Subnet mask for the range of IP addresses the restriction is valid for.",
+ "type": "string"
+ }
+ }
+ },
+ "LocalizableString": {
+ "description": "Localizable string object containing the name and a localized value.",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Non-localized name.",
+ "type": "string"
+ },
+ "localizedValue": {
+ "description": "Localized name.",
+ "type": "string"
+ }
+ }
+ },
+ "ManagedServiceIdentity": {
+ "description": "Managed service identity.",
+ "type": "object",
+ "properties": {
+ "type": {
+ "description": "Type of managed service identity.",
+ "enum": [
+ "SystemAssigned"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ManagedServiceIdentityType",
+ "modelAsString": true
+ }
+ },
+ "tenantId": {
+ "description": "Tenant of managed service identity.",
+ "type": "string",
+ "readOnly": true
+ },
+ "principalId": {
+ "description": "Principal Id of managed service identity.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "MetricAvailability": {
+ "description": "Retention policy of a resource metric.",
+ "type": "object",
+ "properties": {
+ "timeGrain": {
+ "type": "string"
+ },
+ "blobDuration": {
+ "type": "string"
+ }
+ }
+ },
+ "MetricSpecification": {
+ "description": "Definition of a single resource metric.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "displayName": {
+ "type": "string"
+ },
+ "displayDescription": {
+ "type": "string"
+ },
+ "unit": {
+ "type": "string"
+ },
+ "aggregationType": {
+ "type": "string"
+ },
+ "supportsInstanceLevelAggregation": {
+ "type": "boolean"
+ },
+ "enableRegionalMdmAccount": {
+ "type": "boolean"
+ },
+ "sourceMdmAccount": {
+ "type": "string"
+ },
+ "sourceMdmNamespace": {
+ "type": "string"
+ },
+ "metricFilterPattern": {
+ "type": "string"
+ },
+ "fillGapWithZero": {
+ "type": "boolean"
+ },
+ "isInternal": {
+ "type": "boolean"
+ },
+ "dimensions": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Dimension"
+ }
+ },
+ "category": {
+ "type": "string"
+ },
+ "availabilities": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/MetricAvailability"
+ }
+ }
+ }
+ },
+ "NameIdentifier": {
+ "description": "Identifies an object.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Name of the object.",
+ "type": "string"
+ }
+ }
+ },
+ "NameValuePair": {
+ "description": "Name value pair.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Pair name.",
+ "type": "string"
+ },
+ "value": {
+ "description": "Pair value.",
+ "type": "string"
+ }
+ }
+ },
+ "NetworkAccessControlEntry": {
+ "description": "Network access control entry.",
+ "type": "object",
+ "properties": {
+ "action": {
+ "description": "Action object.",
+ "enum": [
+ "Permit",
+ "Deny"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "AccessControlEntryAction",
+ "modelAsString": false
+ }
+ },
+ "description": {
+ "description": "Description of network access control entry.",
+ "type": "string"
+ },
+ "order": {
+ "format": "int32",
+ "description": "Order of precedence.",
+ "type": "integer"
+ },
+ "remoteSubnet": {
+ "description": "Remote subnet.",
+ "type": "string"
+ }
+ }
+ },
+ "Operation": {
+ "description": "An operation on a resource.",
+ "type": "object",
+ "properties": {
+ "id": {
+ "description": "Operation ID.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Operation name.",
+ "type": "string"
+ },
+ "status": {
+ "description": "The current status of the operation.",
+ "enum": [
+ "InProgress",
+ "Failed",
+ "Succeeded",
+ "TimedOut",
+ "Created"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "OperationStatus",
+ "modelAsString": false
+ }
+ },
+ "errors": {
+ "description": "Any errors associate with the operation.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ErrorEntity"
+ }
+ },
+ "createdTime": {
+ "format": "date-time",
+ "description": "Time when operation has started.",
+ "type": "string"
+ },
+ "modifiedTime": {
+ "format": "date-time",
+ "description": "Time when operation has been updated.",
+ "type": "string"
+ },
+ "expirationTime": {
+ "format": "date-time",
+ "description": "Time when operation will expire.",
+ "type": "string"
+ },
+ "geoMasterOperationId": {
+ "format": "uuid",
+ "description": "Applicable only for stamp operation ids.",
+ "type": "string",
+ "example": "00000000-0000-0000-0000-000000000000"
+ }
+ }
+ },
+ "ProxyOnlyResource": {
+ "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.",
+ "properties": {
+ "id": {
+ "description": "Resource Id.",
+ "type": "string",
+ "readOnly": true
+ },
+ "name": {
+ "description": "Resource Name.",
+ "type": "string",
+ "readOnly": true
+ },
+ "kind": {
+ "description": "Kind of resource.",
+ "type": "string"
+ },
+ "type": {
+ "description": "Resource type.",
+ "type": "string",
+ "readOnly": true
+ }
+ },
+ "x-ms-azure-resource": true
+ },
+ "PushSettings": {
+ "description": "Push settings for the App.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "PushSettings resource specific properties",
+ "required": [
+ "isPushEnabled"
+ ],
+ "properties": {
+ "isPushEnabled": {
+ "description": "Gets or sets a flag indicating whether the Push endpoint is enabled.",
+ "type": "boolean"
+ },
+ "tagWhitelistJson": {
+ "description": "Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.",
+ "type": "string"
+ },
+ "tagsRequiringAuth": {
+ "description": "Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.\nTags can consist of alphanumeric characters and the following:\n'_', '@', '#', '.', ':', '-'. \nValidation should be performed at the PushRequestHandler.",
+ "type": "string"
+ },
+ "dynamicTagsJson": {
+ "description": "Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.",
+ "type": "string"
+ }
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "RampUpRule": {
+ "description": "Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.",
+ "type": "object",
+ "properties": {
+ "actionHostName": {
+ "description": "Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net.",
+ "type": "string"
+ },
+ "reroutePercentage": {
+ "format": "double",
+ "description": "Percentage of the traffic which will be redirected to ActionHostName.",
+ "type": "number"
+ },
+ "changeStep": {
+ "format": "double",
+ "description": "In auto ramp up scenario this is the step to add/remove from ReroutePercentage until it reaches \nMinReroutePercentage or MaxReroutePercentage. Site metrics are checked every N minutes specified in ChangeIntervalInMinutes.\nCustom decision algorithm can be provided in TiPCallback site extension which URL can be specified in ChangeDecisionCallbackUrl.",
+ "type": "number"
+ },
+ "changeIntervalInMinutes": {
+ "format": "int32",
+ "description": "Specifies interval in minutes to reevaluate ReroutePercentage.",
+ "type": "integer"
+ },
+ "minReroutePercentage": {
+ "format": "double",
+ "description": "Specifies lower boundary above which ReroutePercentage will stay.",
+ "type": "number"
+ },
+ "maxReroutePercentage": {
+ "format": "double",
+ "description": "Specifies upper boundary below which ReroutePercentage will stay.",
+ "type": "number"
+ },
+ "changeDecisionCallbackUrl": {
+ "description": "Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified. See TiPCallback site extension for the scaffold and contracts.\nhttps://www.siteextensions.net/packages/TiPCallback/",
+ "type": "string"
+ },
+ "name": {
+ "description": "Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment.",
+ "type": "string"
+ }
+ }
+ },
+ "RequestsBasedTrigger": {
+ "description": "Trigger based on total requests.",
+ "type": "object",
+ "properties": {
+ "count": {
+ "format": "int32",
+ "description": "Request Count.",
+ "type": "integer"
+ },
+ "timeInterval": {
+ "description": "Time interval.",
+ "type": "string"
+ }
+ }
+ },
+ "Resource": {
+ "description": "Azure resource. This resource is tracked in Azure Resource Manager",
+ "required": [
+ "location"
+ ],
+ "properties": {
+ "id": {
+ "description": "Resource Id.",
+ "type": "string",
+ "readOnly": true
+ },
+ "name": {
+ "description": "Resource Name.",
+ "type": "string",
+ "readOnly": true
+ },
+ "kind": {
+ "description": "Kind of resource.",
+ "type": "string"
+ },
+ "location": {
+ "description": "Resource Location.",
+ "type": "string"
+ },
+ "type": {
+ "description": "Resource type.",
+ "type": "string",
+ "readOnly": true
+ },
+ "tags": {
+ "description": "Resource tags.",
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ }
+ },
+ "x-ms-azure-resource": true
+ },
+ "ResourceMetric": {
+ "description": "Object representing a metric for any resource .",
+ "type": "object",
+ "properties": {
+ "name": {
+ "$ref": "#/definitions/ResourceMetricName",
+ "description": "Name of metric.",
+ "readOnly": true
+ },
+ "unit": {
+ "description": "Metric unit.",
+ "type": "string",
+ "readOnly": true
+ },
+ "timeGrain": {
+ "description": "Metric granularity. E.g PT1H, PT5M, P1D",
+ "type": "string",
+ "readOnly": true
+ },
+ "startTime": {
+ "format": "date-time",
+ "description": "Metric start time.",
+ "type": "string",
+ "readOnly": true
+ },
+ "endTime": {
+ "format": "date-time",
+ "description": "Metric end time.",
+ "type": "string",
+ "readOnly": true
+ },
+ "resourceId": {
+ "description": "Metric resource Id.",
+ "type": "string",
+ "readOnly": true
+ },
+ "id": {
+ "description": "Resource Id.",
+ "type": "string",
+ "readOnly": true
+ },
+ "metricValues": {
+ "description": "Metric values.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ResourceMetricValue"
+ },
+ "readOnly": true
+ },
+ "properties": {
+ "description": "Resource metric properties collection.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ResourceMetricProperty"
+ },
+ "readOnly": true
+ }
+ }
+ },
+ "ResourceMetricAvailability": {
+ "description": "Metrics availability and retention.",
+ "type": "object",
+ "properties": {
+ "timeGrain": {
+ "description": "Time grain .",
+ "type": "string",
+ "readOnly": true
+ },
+ "retention": {
+ "description": "Retention period for the current time grain.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "ResourceMetricCollection": {
+ "description": "Collection of metric responses.",
+ "required": [
+ "value"
+ ],
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of resources.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ResourceMetric"
+ }
+ },
+ "nextLink": {
+ "description": "Link to next page of resources.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "ResourceMetricDefinition": {
+ "description": "Metadata for the metrics.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "ResourceMetricDefinition resource specific properties",
+ "properties": {
+ "name": {
+ "$ref": "#/definitions/ResourceMetricName",
+ "description": "Name of the metric.",
+ "readOnly": true
+ },
+ "unit": {
+ "description": "Unit of the metric.",
+ "type": "string",
+ "readOnly": true
+ },
+ "primaryAggregationType": {
+ "description": "Primary aggregation type.",
+ "type": "string",
+ "readOnly": true
+ },
+ "metricAvailabilities": {
+ "description": "List of time grains supported for the metric together with retention period.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ResourceMetricAvailability"
+ },
+ "readOnly": true
+ },
+ "resourceUri": {
+ "description": "Resource URI.",
+ "type": "string",
+ "readOnly": true
+ },
+ "id": {
+ "description": "Resource ID.",
+ "type": "string",
+ "readOnly": true
+ },
+ "properties": {
+ "description": "Resource metric definition properties.",
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "readOnly": true
+ }
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "ResourceMetricDefinitionCollection": {
+ "description": "Collection of metric definitions.",
+ "required": [
+ "value"
+ ],
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of resources.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ResourceMetricDefinition"
+ }
+ },
+ "nextLink": {
+ "description": "Link to next page of resources.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "ResourceMetricName": {
+ "description": "Name of a metric for any resource .",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "metric name value.",
+ "type": "string",
+ "readOnly": true
+ },
+ "localizedValue": {
+ "description": "Localized metric name value.",
+ "type": "string",
+ "readOnly": true
+ }
+ }
+ },
+ "ResourceMetricProperty": {
+ "description": "Resource metric property.",
+ "type": "object",
+ "properties": {
+ "key": {
+ "description": "Key for resource metric property.",
+ "type": "string"
+ },
+ "value": {
+ "description": "Value of pair.",
+ "type": "string"
+ }
+ }
+ },
+ "ResourceMetricValue": {
+ "description": "Value of resource metric.",
+ "type": "object",
+ "properties": {
+ "timestamp": {
+ "description": "Value timestamp.",
+ "type": "string",
+ "readOnly": true
+ },
+ "average": {
+ "format": "float",
+ "description": "Value average.",
+ "type": "number",
+ "readOnly": true
+ },
+ "minimum": {
+ "format": "float",
+ "description": "Value minimum.",
+ "type": "number",
+ "readOnly": true
+ },
+ "maximum": {
+ "format": "float",
+ "description": "Value maximum.",
+ "type": "number",
+ "readOnly": true
+ },
+ "total": {
+ "format": "float",
+ "description": "Value total.",
+ "type": "number",
+ "readOnly": true
+ },
+ "count": {
+ "format": "float",
+ "description": "Value count.",
+ "type": "number",
+ "readOnly": true
+ },
+ "properties": {
+ "description": "Resource metric properties collection.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ResourceMetricProperty"
+ },
+ "readOnly": true
+ }
+ }
+ },
+ "ServiceSpecification": {
+ "description": "Resource metrics service provided by Microsoft.Insights resource provider.",
+ "type": "object",
+ "properties": {
+ "metricSpecifications": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/MetricSpecification"
+ }
+ }
+ }
+ },
+ "Site": {
+ "description": "A web app, a mobile app backend, or an API app.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Resource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "Site resource specific properties",
+ "properties": {
+ "state": {
+ "description": "Current state of the app.",
+ "type": "string",
+ "readOnly": true
+ },
+ "hostNames": {
+ "description": "Hostnames associated with the app.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "readOnly": true
+ },
+ "repositorySiteName": {
+ "description": "Name of the repository site.",
+ "type": "string",
+ "readOnly": true
+ },
+ "usageState": {
+ "description": "State indicating whether the app has exceeded its quota usage. Read-only.",
+ "enum": [
+ "Normal",
+ "Exceeded"
+ ],
+ "type": "string",
+ "readOnly": true,
+ "x-ms-enum": {
+ "name": "UsageState",
+ "modelAsString": false
+ }
+ },
+ "enabled": {
+ "description": "true if the app is enabled; otherwise, false. Setting this value to false disables the app (takes the app offline).",
+ "type": "boolean"
+ },
+ "enabledHostNames": {
+ "description": "Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\nthe app is not served on those hostnames.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "readOnly": true
+ },
+ "availabilityState": {
+ "description": "Management information availability state for the app.",
+ "enum": [
+ "Normal",
+ "Limited",
+ "DisasterRecoveryMode"
+ ],
+ "type": "string",
+ "readOnly": true,
+ "x-ms-enum": {
+ "name": "SiteAvailabilityState",
+ "modelAsString": false
+ }
+ },
+ "hostNameSslStates": {
+ "description": "Hostname SSL states are used to manage the SSL bindings for app's hostnames.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/HostNameSslState"
+ }
+ },
+ "serverFarmId": {
+ "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\".",
+ "type": "string"
+ },
+ "reserved": {
+ "description": "true if reserved; otherwise, false.",
+ "default": false,
+ "type": "boolean",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "lastModifiedTimeUtc": {
+ "format": "date-time",
+ "description": "Last time the app was modified, in UTC. Read-only.",
+ "type": "string",
+ "readOnly": true
+ },
+ "siteConfig": {
+ "$ref": "#/definitions/SiteConfig",
+ "description": "Configuration of the app."
+ },
+ "trafficManagerHostNames": {
+ "description": "Azure Traffic Manager hostnames associated with the app. Read-only.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "readOnly": true
+ },
+ "scmSiteAlsoStopped": {
+ "description": "true to stop SCM (KUDU) site when the app is stopped; otherwise, false. The default is false.",
+ "default": false,
+ "type": "boolean"
+ },
+ "targetSwapSlot": {
+ "description": "Specifies which deployment slot this app will swap into. Read-only.",
+ "type": "string",
+ "readOnly": true
+ },
+ "hostingEnvironmentProfile": {
+ "$ref": "#/definitions/HostingEnvironmentProfile",
+ "description": "App Service Environment to use for the app.",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "clientAffinityEnabled": {
+ "description": "true to enable client affinity; false to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is true.",
+ "type": "boolean"
+ },
+ "clientCertEnabled": {
+ "description": "true to enable client certificate authentication (TLS mutual authentication); otherwise, false. Default is false.",
+ "type": "boolean"
+ },
+ "hostNamesDisabled": {
+ "description": "true to disable the public hostnames of the app; otherwise, false.\n If true, the app is only accessible via API management process.",
+ "type": "boolean"
+ },
+ "outboundIpAddresses": {
+ "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only.",
+ "type": "string",
+ "readOnly": true
+ },
+ "possibleOutboundIpAddresses": {
+ "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants. Read-only.",
+ "type": "string",
+ "readOnly": true
+ },
+ "containerSize": {
+ "format": "int32",
+ "description": "Size of the function container.",
+ "type": "integer"
+ },
+ "dailyMemoryTimeQuota": {
+ "format": "int32",
+ "description": "Maximum allowed daily memory-time quota (applicable on dynamic apps only).",
+ "type": "integer"
+ },
+ "suspendedTill": {
+ "format": "date-time",
+ "description": "App suspended till in case memory-time quota is exceeded.",
+ "type": "string",
+ "readOnly": true
+ },
+ "maxNumberOfWorkers": {
+ "format": "int32",
+ "description": "Maximum number of workers.\nThis only applies to Functions container.",
+ "type": "integer",
+ "readOnly": true
+ },
+ "cloningInfo": {
+ "$ref": "#/definitions/CloningInfo",
+ "description": "If specified during app creation, the app is cloned from a source app.",
+ "x-ms-mutability": [
+ "create"
+ ]
+ },
+ "snapshotInfo": {
+ "$ref": "#/definitions/SnapshotRecoveryRequest",
+ "description": "If specified during app creation, the app is created from a previous snapshot.",
+ "x-ms-mutability": [
+ "create"
+ ]
+ },
+ "resourceGroup": {
+ "description": "Name of the resource group the app belongs to. Read-only.",
+ "type": "string",
+ "readOnly": true
+ },
+ "isDefaultContainer": {
+ "description": "true if the app is a default container; otherwise, false.",
+ "type": "boolean",
+ "readOnly": true
+ },
+ "defaultHostName": {
+ "description": "Default hostname of the app. Read-only.",
+ "type": "string",
+ "readOnly": true
+ },
+ "slotSwapStatus": {
+ "$ref": "#/definitions/SlotSwapStatus",
+ "description": "Status of the last deployment slot swap operation.",
+ "readOnly": true
+ },
+ "httpsOnly": {
+ "description": "HttpsOnly: configures a web site to accept only https requests. Issues redirect for\nhttp requests",
+ "type": "boolean"
+ }
+ },
+ "x-ms-client-flatten": true
+ },
+ "identity": {
+ "$ref": "#/definitions/ManagedServiceIdentity"
+ }
+ }
+ },
+ "SiteConfig": {
+ "description": "Configuration of an App Service app.",
+ "type": "object",
+ "properties": {
+ "numberOfWorkers": {
+ "format": "int32",
+ "description": "Number of workers.",
+ "type": "integer"
+ },
+ "defaultDocuments": {
+ "description": "Default documents.",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "netFrameworkVersion": {
+ "description": ".NET Framework version.",
+ "default": "v4.6",
+ "type": "string"
+ },
+ "phpVersion": {
+ "description": "Version of PHP.",
+ "type": "string"
+ },
+ "pythonVersion": {
+ "description": "Version of Python.",
+ "type": "string"
+ },
+ "nodeVersion": {
+ "description": "Version of Node.js.",
+ "type": "string"
+ },
+ "linuxFxVersion": {
+ "description": "Linux App Framework and version",
+ "type": "string"
+ },
+ "requestTracingEnabled": {
+ "description": "true if request tracing is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "requestTracingExpirationTime": {
+ "format": "date-time",
+ "description": "Request tracing expiration time.",
+ "type": "string"
+ },
+ "remoteDebuggingEnabled": {
+ "description": "true if remote debugging is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "remoteDebuggingVersion": {
+ "description": "Remote debugging version.",
+ "type": "string"
+ },
+ "httpLoggingEnabled": {
+ "description": "true if HTTP logging is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "logsDirectorySizeLimit": {
+ "format": "int32",
+ "description": "HTTP logs directory size limit.",
+ "type": "integer"
+ },
+ "detailedErrorLoggingEnabled": {
+ "description": "true if detailed error logging is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "publishingUsername": {
+ "description": "Publishing user name.",
+ "type": "string"
+ },
+ "appSettings": {
+ "description": "Application settings.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/NameValuePair"
+ }
+ },
+ "connectionStrings": {
+ "description": "Connection strings.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ConnStringInfo"
+ }
+ },
+ "machineKey": {
+ "$ref": "#/definitions/SiteMachineKey",
+ "description": "Site MachineKey.",
+ "readOnly": true
+ },
+ "handlerMappings": {
+ "description": "Handler mappings.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/HandlerMapping"
+ }
+ },
+ "documentRoot": {
+ "description": "Document root.",
+ "type": "string"
+ },
+ "scmType": {
+ "description": "SCM type.",
+ "enum": [
+ "None",
+ "Dropbox",
+ "Tfs",
+ "LocalGit",
+ "GitHub",
+ "CodePlexGit",
+ "CodePlexHg",
+ "BitbucketGit",
+ "BitbucketHg",
+ "ExternalGit",
+ "ExternalHg",
+ "OneDrive",
+ "VSO"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ScmType",
+ "modelAsString": true
+ }
+ },
+ "use32BitWorkerProcess": {
+ "description": "true to use 32-bit worker process; otherwise, false.",
+ "type": "boolean"
+ },
+ "webSocketsEnabled": {
+ "description": "true if WebSocket is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "alwaysOn": {
+ "description": "true if Always On is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "javaVersion": {
+ "description": "Java version.",
+ "type": "string"
+ },
+ "javaContainer": {
+ "description": "Java container.",
+ "type": "string"
+ },
+ "javaContainerVersion": {
+ "description": "Java container version.",
+ "type": "string"
+ },
+ "appCommandLine": {
+ "description": "App command line to launch.",
+ "type": "string"
+ },
+ "managedPipelineMode": {
+ "description": "Managed pipeline mode.",
+ "enum": [
+ "Integrated",
+ "Classic"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ManagedPipelineMode",
+ "modelAsString": false
+ }
+ },
+ "virtualApplications": {
+ "description": "Virtual applications.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/VirtualApplication"
+ }
+ },
+ "loadBalancing": {
+ "description": "Site load balancing.",
+ "enum": [
+ "WeightedRoundRobin",
+ "LeastRequests",
+ "LeastResponseTime",
+ "WeightedTotalTraffic",
+ "RequestHash"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "SiteLoadBalancing",
+ "modelAsString": false
+ }
+ },
+ "experiments": {
+ "$ref": "#/definitions/Experiments",
+ "description": "This is work around for polymorphic types."
+ },
+ "limits": {
+ "$ref": "#/definitions/SiteLimits",
+ "description": "Site limits."
+ },
+ "autoHealEnabled": {
+ "description": "true if Auto Heal is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "autoHealRules": {
+ "$ref": "#/definitions/AutoHealRules",
+ "description": "Auto Heal rules."
+ },
+ "tracingOptions": {
+ "description": "Tracing options.",
+ "type": "string"
+ },
+ "vnetName": {
+ "description": "Virtual Network name.",
+ "type": "string",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
+ },
+ "cors": {
+ "$ref": "#/definitions/CorsSettings",
+ "description": "Cross-Origin Resource Sharing (CORS) settings."
+ },
+ "push": {
+ "$ref": "#/definitions/PushSettings",
+ "description": "Push endpoint settings."
+ },
+ "apiDefinition": {
+ "$ref": "#/definitions/ApiDefinitionInfo",
+ "description": "Information about the formal API definition for the app."
+ },
+ "autoSwapSlotName": {
+ "description": "Auto-swap slot name.",
+ "type": "string"
+ },
+ "localMySqlEnabled": {
+ "description": "true to enable local MySQL; otherwise, false.",
+ "default": false,
+ "type": "boolean"
+ },
+ "ipSecurityRestrictions": {
+ "description": "IP security restrictions.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/IpSecurityRestriction"
+ }
+ },
+ "http20Enabled": {
+ "description": "Http20Enabled: configures a web site to allow clients to connect over http2.0",
+ "default": true,
+ "type": "boolean"
+ },
+ "minTlsVersion": {
+ "description": "MinTlsVersion: configures the minimum version of TLS required for SSL requests",
+ "enum": [
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "SupportedTlsVersions",
+ "modelAsString": true
+ }
+ }
+ }
+ },
+ "SiteLimits": {
+ "description": "Metric limits set on an app.",
+ "type": "object",
+ "properties": {
+ "maxPercentageCpu": {
+ "format": "double",
+ "description": "Maximum allowed CPU usage percentage.",
+ "type": "number"
+ },
+ "maxMemoryInMb": {
+ "format": "int64",
+ "description": "Maximum allowed memory usage in MB.",
+ "type": "integer"
+ },
+ "maxDiskSizeInMb": {
+ "format": "int64",
+ "description": "Maximum allowed disk size usage in MB.",
+ "type": "integer"
+ }
+ }
+ },
+ "SiteMachineKey": {
+ "description": "MachineKey of an app.",
+ "type": "object",
+ "properties": {
+ "validation": {
+ "description": "MachineKey validation.",
+ "type": "string"
+ },
+ "validationKey": {
+ "description": "Validation key.",
+ "type": "string"
+ },
+ "decryption": {
+ "description": "Algorithm used for decryption.",
+ "type": "string"
+ },
+ "decryptionKey": {
+ "description": "Decryption key.",
+ "type": "string"
+ }
+ }
+ },
+ "SkuCapacity": {
+ "description": "Description of the App Service plan scale options.",
+ "type": "object",
+ "properties": {
+ "minimum": {
+ "format": "int32",
+ "description": "Minimum number of workers for this App Service plan SKU.",
+ "type": "integer"
+ },
+ "maximum": {
+ "format": "int32",
+ "description": "Maximum number of workers for this App Service plan SKU.",
+ "type": "integer"
+ },
+ "default": {
+ "format": "int32",
+ "description": "Default number of workers for this App Service plan SKU.",
+ "type": "integer"
+ },
+ "scaleType": {
+ "description": "Available scale configurations for an App Service plan.",
+ "type": "string"
+ }
+ }
+ },
+ "SkuDescription": {
+ "description": "Description of a SKU for a scalable resource.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Name of the resource SKU.",
+ "type": "string"
+ },
+ "tier": {
+ "description": "Service tier of the resource SKU.",
+ "type": "string"
+ },
+ "size": {
+ "description": "Size specifier of the resource SKU.",
+ "type": "string"
+ },
+ "family": {
+ "description": "Family code of the resource SKU.",
+ "type": "string"
+ },
+ "capacity": {
+ "format": "int32",
+ "description": "Current number of instances assigned to the resource.",
+ "type": "integer"
+ },
+ "skuCapacity": {
+ "$ref": "#/definitions/SkuCapacity",
+ "description": "Min, max, and default scale values of the SKU."
+ },
+ "locations": {
+ "description": "Locations of the SKU.",
+ "type": "array",
+ "items": {
+ "type": "string"
}
},
- "nextLink": {
- "description": "Link to next page of resources.",
+ "capabilities": {
+ "description": "Capabilities of the SKU, e.g., is traffic manager enabled?",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Capability"
+ }
+ }
+ }
+ },
+ "SlotSwapStatus": {
+ "description": "The status of the last successful slot swap operation.",
+ "type": "object",
+ "properties": {
+ "timestampUtc": {
+ "format": "date-time",
+ "description": "The time the last successful slot swap completed.",
+ "type": "string",
+ "readOnly": true
+ },
+ "sourceSlotName": {
+ "description": "The source slot of the last swap operation.",
+ "type": "string",
+ "readOnly": true
+ },
+ "destinationSlotName": {
+ "description": "The destination slot of the last swap operation.",
"type": "string",
"readOnly": true
}
}
},
- "CsmOperationDescription": {
- "description": "Description of an operation available for Microsoft.Web resource provider.",
+ "SlowRequestsBasedTrigger": {
+ "description": "Trigger based on request execution time.",
"type": "object",
"properties": {
- "name": {
+ "timeTaken": {
+ "description": "Time taken.",
"type": "string"
},
- "display": {
- "$ref": "#/definitions/CsmOperationDisplay"
+ "count": {
+ "format": "int32",
+ "description": "Request Count.",
+ "type": "integer"
},
- "origin": {
+ "timeInterval": {
+ "description": "Time interval.",
"type": "string"
- },
- "properties": {
- "$ref": "#/definitions/CsmOperationDescriptionProperties"
}
}
},
- "CsmOperationDescriptionProperties": {
- "description": "Properties available for a Microsoft.Web resource provider operation.",
+ "SnapshotRecoveryRequest": {
+ "description": "Details about app recovery operation.",
"type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
"properties": {
- "serviceSpecification": {
- "$ref": "#/definitions/ServiceSpecification"
+ "properties": {
+ "description": "SnapshotRecoveryRequest resource specific properties",
+ "required": [
+ "overwrite"
+ ],
+ "properties": {
+ "snapshotTime": {
+ "description": "Point in time in which the app recovery should be attempted, formatted as a DateTime string.",
+ "type": "string"
+ },
+ "recoveryTarget": {
+ "$ref": "#/definitions/SnapshotRecoveryTarget",
+ "description": "Specifies the web app that snapshot contents will be written to."
+ },
+ "overwrite": {
+ "description": "If true the recovery operation can overwrite source app; otherwise, false.",
+ "type": "boolean"
+ },
+ "recoverConfiguration": {
+ "description": "If true, site configuration, in addition to content, will be reverted.",
+ "type": "boolean"
+ },
+ "ignoreConflictingHostNames": {
+ "description": "If true, custom hostname conflicts will be ignored when recovering to a target web app.\nThis setting is only necessary when RecoverConfiguration is enabled.",
+ "type": "boolean"
+ }
+ },
+ "x-ms-client-flatten": true
}
}
},
- "CsmOperationDisplay": {
- "description": "Meta data about operation used for display in portal.",
+ "SnapshotRecoveryTarget": {
+ "description": "Specifies the web app that snapshot contents will be written to.",
"type": "object",
"properties": {
- "provider": {
+ "location": {
+ "description": "Geographical location of the target web app, e.g. SouthEastAsia, SouthCentralUS",
"type": "string"
},
- "resource": {
+ "id": {
+ "description": "ARM resource ID of the target app. \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.",
+ "type": "string"
+ }
+ }
+ },
+ "StampCapacity": {
+ "description": "Stamp capacity information.",
+ "type": "object",
+ "properties": {
+ "name": {
+ "description": "Name of the stamp.",
"type": "string"
},
- "operation": {
+ "availableCapacity": {
+ "format": "int64",
+ "description": "Available capacity (# of machines, bytes of storage etc...).",
+ "type": "integer"
+ },
+ "totalCapacity": {
+ "format": "int64",
+ "description": "Total capacity (# of machines, bytes of storage etc...).",
+ "type": "integer"
+ },
+ "unit": {
+ "description": "Name of the unit.",
"type": "string"
},
- "description": {
+ "computeMode": {
+ "description": "Shared/dedicated workers.",
+ "enum": [
+ "Shared",
+ "Dedicated",
+ "Dynamic"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ComputeModeOptions",
+ "modelAsString": false
+ }
+ },
+ "workerSize": {
+ "description": "Size of the machines.",
+ "enum": [
+ "Default",
+ "Small",
+ "Medium",
+ "Large",
+ "D1",
+ "D2",
+ "D3"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "WorkerSizeOptions",
+ "modelAsString": false
+ }
+ },
+ "workerSizeId": {
+ "format": "int32",
+ "description": "Size ID of machines: \n0 - Small\n1 - Medium\n2 - Large",
+ "type": "integer"
+ },
+ "excludeFromCapacityAllocation": {
+ "description": "If true, it includes basic apps.\nBasic apps are not used for capacity allocation.",
+ "type": "boolean"
+ },
+ "isApplicableForAllComputeModes": {
+ "description": "true if capacity is applicable for all apps; otherwise, false.",
+ "type": "boolean"
+ },
+ "siteMode": {
+ "description": "Shared or Dedicated.",
"type": "string"
}
}
},
- "CsmUsageQuota": {
- "description": "Usage of the quota resource.",
- "type": "object",
- "properties": {
- "unit": {
- "description": "Units of measurement for the quota resource.",
- "type": "string"
- },
- "nextResetTime": {
- "format": "date-time",
- "description": "Next reset time for the resource counter.",
- "type": "string"
- },
- "currentValue": {
- "format": "int64",
- "description": "The current value of the resource counter.",
- "type": "integer"
- },
- "limit": {
- "format": "int64",
- "description": "The resource limit.",
- "type": "integer"
+ "StatusCodesBasedTrigger": {
+ "description": "Trigger based on status code.",
+ "type": "object",
+ "properties": {
+ "status": {
+ "format": "int32",
+ "description": "HTTP status code.",
+ "type": "integer"
+ },
+ "subStatus": {
+ "format": "int32",
+ "description": "Request Sub Status.",
+ "type": "integer"
+ },
+ "win32Status": {
+ "format": "int32",
+ "description": "Win32 error code.",
+ "type": "integer"
+ },
+ "count": {
+ "format": "int32",
+ "description": "Request Count.",
+ "type": "integer"
+ },
+ "timeInterval": {
+ "description": "Time interval.",
+ "type": "string"
+ }
+ }
},
- "name": {
- "$ref": "#/definitions/LocalizableString",
- "description": "Quota name."
- }
- }
- },
- "CsmUsageQuotaCollection": {
- "description": "Collection of CSM usage quotas.",
- "required": [
- "value"
- ],
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of resources.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/CsmUsageQuota"
- }
- },
- "nextLink": {
- "description": "Link to next page of resources.",
- "type": "string",
- "readOnly": true
+ "User": {
+ "description": "User credentials used for publishing activity.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "User resource specific properties",
+ "required": [
+ "publishingUserName"
+ ],
+ "properties": {
+ "name": {
+ "description": "Username",
+ "type": "string",
+ "x-ms-client-name": "UserName"
+ },
+ "publishingUserName": {
+ "description": "Username used for publishing.",
+ "type": "string"
+ },
+ "publishingPassword": {
+ "format": "password",
+ "description": "Password used for publishing.",
+ "type": "string"
+ },
+ "publishingPasswordHash": {
+ "format": "password",
+ "description": "Password hash used for publishing.",
+ "type": "string"
+ },
+ "publishingPasswordHashSalt": {
+ "format": "password",
+ "description": "Password hash salt used for publishing.",
+ "type": "string"
+ }
+ },
+ "x-ms-client-flatten": true
}
}
},
- "Dimension": {
- "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, \nwhere instance name is dimension of the metric HTTP request",
+ "VirtualApplication": {
+ "description": "Virtual application in an app.",
"type": "object",
"properties": {
- "name": {
+ "virtualPath": {
+ "description": "Virtual path.",
"type": "string"
},
- "displayName": {
+ "physicalPath": {
+ "description": "Physical path.",
"type": "string"
},
- "internalName": {
+ "preloadEnabled": {
+ "description": "true if preloading is enabled; otherwise, false.",
+ "type": "boolean"
+ },
+ "virtualDirectories": {
+ "description": "Virtual directories for virtual application.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/VirtualDirectory"
+ }
+ }
+ }
+ },
+ "VirtualDirectory": {
+ "description": "Directory for virtual application.",
+ "type": "object",
+ "properties": {
+ "virtualPath": {
+ "description": "Path to virtual application.",
"type": "string"
},
- "toBeExportedForShoebox": {
+ "physicalPath": {
+ "description": "Physical path.",
+ "type": "string"
+ }
+ }
+ },
+ "VirtualIPMapping": {
+ "description": "Virtual IP mapping.",
+ "type": "object",
+ "properties": {
+ "virtualIP": {
+ "description": "Virtual IP address.",
+ "type": "string"
+ },
+ "internalHttpPort": {
+ "format": "int32",
+ "description": "Internal HTTP port.",
+ "type": "integer"
+ },
+ "internalHttpsPort": {
+ "format": "int32",
+ "description": "Internal HTTPS port.",
+ "type": "integer"
+ },
+ "inUse": {
+ "description": "Is virtual IP mapping in use.",
"type": "boolean"
- }
- }
- },
- "ErrorEntity": {
- "description": "Body of the error response returned from the API.",
- "type": "object",
- "properties": {
- "extendedCode": {
- "description": "Type of error.",
- "type": "string"
- },
- "messageTemplate": {
- "description": "Message template.",
- "type": "string"
- },
- "parameters": {
- "description": "Parameters for the template.",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "innerErrors": {
- "description": "Inner errors.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ErrorEntity"
- }
- },
- "code": {
- "description": "Basic error code.",
- "type": "string"
- },
- "message": {
- "description": "Any details of the error.",
- "type": "string"
- }
- }
- },
- "DefaultErrorResponse": {
- "description": "App Service error response.",
+ }
+ }
+ },
+ "VirtualNetworkProfile": {
+ "description": "Specification for using a Virtual Network.",
"type": "object",
"properties": {
- "error": {
- "description": "Error model.",
- "type": "object",
+ "id": {
+ "description": "Resource id of the Virtual Network.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Name of the Virtual Network (read-only).",
+ "type": "string",
+ "readOnly": true
+ },
+ "type": {
+ "description": "Resource type of the Virtual Network (read-only).",
+ "type": "string",
+ "readOnly": true
+ },
+ "subnet": {
+ "description": "Subnet within the Virtual Network.",
+ "type": "string"
+ }
+ }
+ },
+ "VnetGateway": {
+ "description": "The Virtual Network gateway contract. This is used to give the Virtual Network gateway access to the VPN package.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "VnetGateway resource specific properties",
+ "required": [
+ "vpnPackageUri"
+ ],
"properties": {
- "code": {
- "description": "Standardized string to programmatically identify the error.",
+ "vnetName": {
+ "description": "The Virtual Network name.",
"type": "string",
- "readOnly": true
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ]
},
- "message": {
- "description": "Detailed error description and debugging information.",
+ "vpnPackageUri": {
+ "description": "The URI where the VPN package can be downloaded.",
"type": "string",
- "readOnly": true
+ "x-ms-mutability": [
+ "create",
+ "update"
+ ]
+ }
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "VnetInfo": {
+ "description": "Virtual Network information contract.",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ProxyOnlyResource"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "description": "VnetInfo resource specific properties",
+ "properties": {
+ "vnetResourceId": {
+ "description": "The Virtual Network's resource ID.",
+ "type": "string"
},
- "target": {
- "description": "Detailed error description and debugging information.",
+ "certThumbprint": {
+ "description": "The client certificate thumbprint.",
"type": "string",
"readOnly": true
},
- "details": {
+ "certBlob": {
+ "format": "byte",
+ "description": "A certificate file (.cer) blob containing the public key of the private key used to authenticate a \nPoint-To-Site VPN connection.",
+ "type": "string"
+ },
+ "routes": {
+ "description": "The routes that this Virtual Network connection uses.",
"type": "array",
"items": {
- "description": "Detailed errors.",
- "properties": {
- "code": {
- "description": "Standardized string to programmatically identify the error.",
- "type": "string",
- "readOnly": true
- },
- "message": {
- "description": "Detailed error description and debugging information.",
- "type": "string",
- "readOnly": true
- },
- "target": {
- "description": "Detailed error description and debugging information.",
- "type": "string",
- "readOnly": true
- }
- },
- "readOnly": true
- }
+ "$ref": "#/definitions/VnetRoute"
+ },
+ "readOnly": true
},
- "innererror": {
- "description": "More information to debug error.",
- "type": "string",
+ "resyncRequired": {
+ "description": "true if a resync is required; otherwise, false.",
+ "type": "boolean",
"readOnly": true
+ },
+ "dnsServers": {
+ "description": "DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses.",
+ "type": "string"
}
},
- "readOnly": true
- }
- }
- },
- "Experiments": {
- "description": "Routing rules in production experiments.",
- "type": "object",
- "properties": {
- "rampUpRules": {
- "description": "List of ramp-up rules.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/RampUpRule"
- }
- }
- }
- },
- "HandlerMapping": {
- "description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension. \nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.",
- "type": "object",
- "properties": {
- "extension": {
- "description": "Requests with this extension will be handled using the specified FastCGI application.",
- "type": "string"
- },
- "scriptProcessor": {
- "description": "The absolute path to the FastCGI application.",
- "type": "string"
- },
- "arguments": {
- "description": "Command-line arguments to be passed to the script processor.",
- "type": "string"
- }
- }
- },
- "HostNameSslState": {
- "description": "SSL-enabled hostname.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Hostname.",
- "type": "string"
- },
- "sslState": {
- "description": "SSL type.",
- "enum": [
- "Disabled",
- "SniEnabled",
- "IpBasedEnabled"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "SslState",
- "modelAsString": false
- }
- },
- "virtualIP": {
- "description": "Virtual IP address assigned to the hostname if IP based SSL is enabled.",
- "type": "string"
- },
- "thumbprint": {
- "description": "SSL certificate thumbprint.",
- "type": "string"
- },
- "toUpdate": {
- "description": "Set to true to update existing hostname.",
- "type": "boolean"
- },
- "hostType": {
- "description": "Indicates whether the hostname is a standard or repository hostname.",
- "enum": [
- "Standard",
- "Repository"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "HostType",
- "modelAsString": false
- }
- }
- }
- },
- "HostingEnvironmentProfile": {
- "description": "Specification for an App Service Environment to use for this resource.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Resource ID of the App Service Environment.",
- "type": "string"
- },
- "name": {
- "description": "Name of the App Service Environment.",
- "type": "string",
- "readOnly": true
- },
- "type": {
- "description": "Resource type of the App Service Environment.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "HybridConnection": {
- "description": "Hybrid Connection contract. This is used to configure a Hybrid Connection.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "HybridConnection resource specific properties",
- "properties": {
- "serviceBusNamespace": {
- "description": "The name of the Service Bus namespace.",
- "type": "string",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "relayName": {
- "description": "The name of the Service Bus relay.",
- "type": "string",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "relayArmUri": {
- "description": "The ARM URI to the Service Bus relay.",
- "type": "string"
- },
- "hostname": {
- "description": "The hostname of the endpoint.",
- "type": "string"
- },
- "port": {
- "format": "int32",
- "description": "The port of the endpoint.",
- "type": "integer"
- },
- "sendKeyName": {
- "description": "The name of the Service Bus key which has Send permissions. This is used to authenticate to Service Bus.",
- "type": "string"
- },
- "sendKeyValue": {
- "description": "The value of the Service Bus key. This is used to authenticate to Service Bus. In ARM this key will not be returned\nnormally, use the POST /listKeys API instead.",
- "type": "string"
- },
- "serviceBusSuffix": {
- "description": "The suffix for the service bus endpoint. By default this is .servicebus.windows.net",
- "type": "string"
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "HybridConnectionKey": {
- "description": "Hybrid Connection key contract. This has the send key name and value for a Hybrid Connection.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "HybridConnectionKey resource specific properties",
- "properties": {
- "sendKeyName": {
- "description": "The name of the send key.",
- "type": "string",
- "readOnly": true
- },
- "sendKeyValue": {
- "description": "The value of the send key.",
- "type": "string",
- "readOnly": true
+ "x-ms-client-flatten": true
+ }
}
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "Identifier": {
- "description": "A domain specific resource identifier.",
+ },
+ "VnetRoute": {
+ "description": "Virtual Network route contract used to pass routing information for a Virtual Network.",
"type": "object",
"allOf": [
{
@@ -1025,19 +2731,45 @@
],
"properties": {
"properties": {
- "description": "Identifier resource specific properties",
+ "description": "VnetRoute resource specific properties",
"properties": {
- "id": {
- "description": "String representation of the identity.",
+ "name": {
+ "description": "The name of this route. This is only returned by the server and does not need to be set by the client.",
+ "type": "string",
+ "x-ms-mutability": [
+ "create",
+ "read"
+ ],
+ "x-ms-client-name": "vnetRouteName"
+ },
+ "startAddress": {
+ "description": "The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified.",
+ "type": "string"
+ },
+ "endAddress": {
+ "description": "The ending address for this route. If the start address is specified in CIDR notation, this must be omitted.",
"type": "string"
+ },
+ "routeType": {
+ "description": "The type of route this is:\nDEFAULT - By default, every app has routes to the local address ranges specified by RFC1918\nINHERITED - Routes inherited from the real Virtual Network routes\nSTATIC - Static route set on the app only\n\nThese values will be used for syncing an app's routes with those from a Virtual Network.",
+ "enum": [
+ "DEFAULT",
+ "INHERITED",
+ "STATIC"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "RouteType",
+ "modelAsString": true
+ }
}
},
"x-ms-client-flatten": true
}
}
},
- "IdentifierCollection": {
- "description": "Collection of identifiers.",
+ "WebAppCollection": {
+ "description": "Collection of App Service apps.",
"required": [
"value"
],
@@ -1047,7 +2779,7 @@
"description": "Collection of resources.",
"type": "array",
"items": {
- "$ref": "#/definitions/Identifier"
+ "$ref": "#/definitions/Site"
}
},
"nextLink": {
@@ -1057,1796 +2789,64 @@
}
}
},
- "IpSecurityRestriction": {
- "description": "IP security restriction on an app.",
- "required": [
- "ipAddress"
- ],
- "type": "object",
- "properties": {
- "ipAddress": {
- "description": "IP address the security restriction is valid for.",
- "type": "string"
- },
- "subnetMask": {
- "description": "Subnet mask for the range of IP addresses the restriction is valid for.",
- "type": "string"
- }
- }
- },
- "LocalizableString": {
- "description": "Localizable string object containing the name and a localized value.",
- "type": "object",
- "properties": {
- "value": {
- "description": "Non-localized name.",
- "type": "string"
- },
- "localizedValue": {
- "description": "Localized name.",
- "type": "string"
- }
- }
- },
- "ManagedServiceIdentity": {
- "description": "Managed service identity.",
- "type": "object",
- "properties": {
- "type": {
- "description": "Type of managed service identity.",
- "enum": [
- "SystemAssigned"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ManagedServiceIdentityType",
- "modelAsString": true
- }
- },
- "tenantId": {
- "description": "Tenant of managed service identity.",
- "type": "string",
- "readOnly": true
- },
- "principalId": {
- "description": "Principal Id of managed service identity.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "MetricAvailability": {
- "description": "Retention policy of a resource metric.",
- "type": "object",
- "properties": {
- "timeGrain": {
- "type": "string"
- },
- "blobDuration": {
- "type": "string"
- }
- }
- },
- "MetricSpecification": {
- "description": "Definition of a single resource metric.",
+ "WorkerPool": {
+ "description": "Worker pool of an App Service Environment.",
"type": "object",
"properties": {
- "name": {
- "type": "string"
- },
- "displayName": {
- "type": "string"
- },
- "displayDescription": {
- "type": "string"
- },
- "unit": {
- "type": "string"
- },
- "aggregationType": {
- "type": "string"
- },
- "supportsInstanceLevelAggregation": {
- "type": "boolean"
- },
- "enableRegionalMdmAccount": {
- "type": "boolean"
- },
- "sourceMdmAccount": {
- "type": "string"
- },
- "sourceMdmNamespace": {
- "type": "string"
- },
- "metricFilterPattern": {
- "type": "string"
- },
- "fillGapWithZero": {
- "type": "boolean"
+ "workerSizeId": {
+ "format": "int32",
+ "description": "Worker size ID for referencing this worker pool.",
+ "type": "integer"
},
- "isInternal": {
- "type": "boolean"
- },
- "dimensions": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/Dimension"
+ "computeMode": {
+ "description": "Shared or dedicated app hosting.",
+ "enum": [
+ "Shared",
+ "Dedicated",
+ "Dynamic"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ComputeModeOptions",
+ "modelAsString": false
}
},
- "category": {
+ "workerSize": {
+ "description": "VM size of the worker pool instances.",
"type": "string"
},
- "availabilities": {
+ "workerCount": {
+ "format": "int32",
+ "description": "Number of instances in the worker pool.",
+ "type": "integer"
+ },
+ "instanceNames": {
+ "description": "Names of all instances in the worker pool (read only).",
"type": "array",
"items": {
- "$ref": "#/definitions/MetricAvailability"
- }
- }
- }
- },
- "NameIdentifier": {
- "description": "Identifies an object.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Name of the object.",
- "type": "string"
- }
- }
- },
- "NameValuePair": {
- "description": "Name value pair.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Pair name.",
- "type": "string"
- },
- "value": {
- "description": "Pair value.",
- "type": "string"
- }
- }
- },
- "NetworkAccessControlEntry": {
- "description": "Network access control entry.",
- "type": "object",
- "properties": {
- "action": {
- "description": "Action object.",
- "enum": [
- "Permit",
- "Deny"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "AccessControlEntryAction",
- "modelAsString": false
- }
- },
- "description": {
- "description": "Description of network access control entry.",
- "type": "string"
- },
- "order": {
- "format": "int32",
- "description": "Order of precedence.",
- "type": "integer"
- },
- "remoteSubnet": {
- "description": "Remote subnet.",
- "type": "string"
- }
- }
- },
- "Operation": {
- "description": "An operation on a resource.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Operation ID.",
- "type": "string"
- },
- "name": {
- "description": "Operation name.",
- "type": "string"
- },
- "status": {
- "description": "The current status of the operation.",
- "enum": [
- "InProgress",
- "Failed",
- "Succeeded",
- "TimedOut",
- "Created"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "OperationStatus",
- "modelAsString": false
- }
- },
- "errors": {
- "description": "Any errors associate with the operation.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ErrorEntity"
- }
- },
- "createdTime": {
- "format": "date-time",
- "description": "Time when operation has started.",
- "type": "string"
- },
- "modifiedTime": {
- "format": "date-time",
- "description": "Time when operation has been updated.",
- "type": "string"
- },
- "expirationTime": {
- "format": "date-time",
- "description": "Time when operation will expire.",
- "type": "string"
- },
- "geoMasterOperationId": {
- "format": "uuid",
- "description": "Applicable only for stamp operation ids.",
- "type": "string",
- "example": "00000000-0000-0000-0000-000000000000"
- }
- }
- },
- "ProxyOnlyResource": {
- "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.",
- "properties": {
- "id": {
- "description": "Resource Id.",
- "type": "string",
- "readOnly": true
- },
- "name": {
- "description": "Resource Name.",
- "type": "string",
- "readOnly": true
- },
- "kind": {
- "description": "Kind of resource.",
- "type": "string"
- },
- "type": {
- "description": "Resource type.",
- "type": "string",
- "readOnly": true
- }
- },
- "x-ms-azure-resource": true
- },
- "PushSettings": {
- "description": "Push settings for the App.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "PushSettings resource specific properties",
- "required": [
- "isPushEnabled"
- ],
- "properties": {
- "isPushEnabled": {
- "description": "Gets or sets a flag indicating whether the Push endpoint is enabled.",
- "type": "boolean"
- },
- "tagWhitelistJson": {
- "description": "Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.",
- "type": "string"
- },
- "tagsRequiringAuth": {
- "description": "Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.\nTags can consist of alphanumeric characters and the following:\n'_', '@', '#', '.', ':', '-'. \nValidation should be performed at the PushRequestHandler.",
- "type": "string"
- },
- "dynamicTagsJson": {
- "description": "Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.",
- "type": "string"
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "RampUpRule": {
- "description": "Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.",
- "type": "object",
- "properties": {
- "actionHostName": {
- "description": "Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net.",
- "type": "string"
- },
- "reroutePercentage": {
- "format": "double",
- "description": "Percentage of the traffic which will be redirected to ActionHostName.",
- "type": "number"
- },
- "changeStep": {
- "format": "double",
- "description": "In auto ramp up scenario this is the step to add/remove from ReroutePercentage until it reaches \nMinReroutePercentage or MaxReroutePercentage. Site metrics are checked every N minutes specified in ChangeIntervalInMinutes.\nCustom decision algorithm can be provided in TiPCallback site extension which URL can be specified in ChangeDecisionCallbackUrl.",
- "type": "number"
- },
- "changeIntervalInMinutes": {
- "format": "int32",
- "description": "Specifies interval in minutes to reevaluate ReroutePercentage.",
- "type": "integer"
- },
- "minReroutePercentage": {
- "format": "double",
- "description": "Specifies lower boundary above which ReroutePercentage will stay.",
- "type": "number"
- },
- "maxReroutePercentage": {
- "format": "double",
- "description": "Specifies upper boundary below which ReroutePercentage will stay.",
- "type": "number"
- },
- "changeDecisionCallbackUrl": {
- "description": "Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified. See TiPCallback site extension for the scaffold and contracts.\nhttps://www.siteextensions.net/packages/TiPCallback/",
- "type": "string"
- },
- "name": {
- "description": "Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment.",
- "type": "string"
- }
- }
- },
- "RequestsBasedTrigger": {
- "description": "Trigger based on total requests.",
- "type": "object",
- "properties": {
- "count": {
- "format": "int32",
- "description": "Request Count.",
- "type": "integer"
- },
- "timeInterval": {
- "description": "Time interval.",
- "type": "string"
- }
- }
- },
- "Resource": {
- "description": "Azure resource. This resource is tracked in Azure Resource Manager",
- "required": [
- "location"
- ],
- "properties": {
- "id": {
- "description": "Resource Id.",
- "type": "string",
- "readOnly": true
- },
- "name": {
- "description": "Resource Name.",
- "type": "string",
- "readOnly": true
- },
- "kind": {
- "description": "Kind of resource.",
- "type": "string"
- },
- "location": {
- "description": "Resource Location.",
- "type": "string"
- },
- "type": {
- "description": "Resource type.",
- "type": "string",
- "readOnly": true
- },
- "tags": {
- "description": "Resource tags.",
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- }
- },
- "x-ms-azure-resource": true
- },
- "ResourceMetric": {
- "description": "Object representing a metric for any resource .",
- "type": "object",
- "properties": {
- "name": {
- "$ref": "#/definitions/ResourceMetricName",
- "description": "Name of metric.",
- "readOnly": true
- },
- "unit": {
- "description": "Metric unit.",
- "type": "string",
- "readOnly": true
- },
- "timeGrain": {
- "description": "Metric granularity. E.g PT1H, PT5M, P1D",
- "type": "string",
- "readOnly": true
- },
- "startTime": {
- "format": "date-time",
- "description": "Metric start time.",
- "type": "string",
- "readOnly": true
- },
- "endTime": {
- "format": "date-time",
- "description": "Metric end time.",
- "type": "string",
- "readOnly": true
- },
- "resourceId": {
- "description": "Metric resource Id.",
- "type": "string",
- "readOnly": true
- },
- "id": {
- "description": "Resource Id.",
- "type": "string",
- "readOnly": true
- },
- "metricValues": {
- "description": "Metric values.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ResourceMetricValue"
- },
- "readOnly": true
- },
- "properties": {
- "description": "Resource metric properties collection.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ResourceMetricProperty"
- },
- "readOnly": true
- }
- }
- },
- "ResourceMetricAvailability": {
- "description": "Metrics availability and retention.",
- "type": "object",
- "properties": {
- "timeGrain": {
- "description": "Time grain .",
- "type": "string",
- "readOnly": true
- },
- "retention": {
- "description": "Retention period for the current time grain.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "ResourceMetricCollection": {
- "description": "Collection of metric responses.",
- "required": [
- "value"
- ],
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of resources.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ResourceMetric"
- }
- },
- "nextLink": {
- "description": "Link to next page of resources.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "ResourceMetricDefinition": {
- "description": "Metadata for the metrics.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "ResourceMetricDefinition resource specific properties",
- "properties": {
- "name": {
- "$ref": "#/definitions/ResourceMetricName",
- "description": "Name of the metric.",
- "readOnly": true
- },
- "unit": {
- "description": "Unit of the metric.",
- "type": "string",
- "readOnly": true
- },
- "primaryAggregationType": {
- "description": "Primary aggregation type.",
- "type": "string",
- "readOnly": true
- },
- "metricAvailabilities": {
- "description": "List of time grains supported for the metric together with retention period.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ResourceMetricAvailability"
- },
- "readOnly": true
- },
- "resourceUri": {
- "description": "Resource URI.",
- "type": "string",
- "readOnly": true
- },
- "id": {
- "description": "Resource ID.",
- "type": "string",
- "readOnly": true
- },
- "properties": {
- "description": "Resource metric definition properties.",
- "type": "object",
- "additionalProperties": {
- "type": "string"
- },
- "readOnly": true
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "ResourceMetricDefinitionCollection": {
- "description": "Collection of metric definitions.",
- "required": [
- "value"
- ],
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of resources.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ResourceMetricDefinition"
- }
- },
- "nextLink": {
- "description": "Link to next page of resources.",
- "type": "string",
+ "type": "string"
+ },
"readOnly": true
- }
- }
- },
- "ResourceMetricName": {
- "description": "Name of a metric for any resource .",
- "type": "object",
- "properties": {
- "value": {
- "description": "metric name value.",
- "type": "string",
- "readOnly": true
- },
- "localizedValue": {
- "description": "Localized metric name value.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "ResourceMetricProperty": {
- "description": "Resource metric property.",
- "type": "object",
- "properties": {
- "key": {
- "description": "Key for resource metric property.",
- "type": "string"
- },
- "value": {
- "description": "Value of pair.",
- "type": "string"
- }
- }
- },
- "ResourceMetricValue": {
- "description": "Value of resource metric.",
- "type": "object",
- "properties": {
- "timestamp": {
- "description": "Value timestamp.",
- "type": "string",
- "readOnly": true
- },
- "average": {
- "format": "float",
- "description": "Value average.",
- "type": "number",
- "readOnly": true
- },
- "minimum": {
- "format": "float",
- "description": "Value minimum.",
- "type": "number",
- "readOnly": true
- },
- "maximum": {
- "format": "float",
- "description": "Value maximum.",
- "type": "number",
- "readOnly": true
- },
- "total": {
- "format": "float",
- "description": "Value total.",
- "type": "number",
- "readOnly": true
- },
- "count": {
- "format": "float",
- "description": "Value count.",
- "type": "number",
- "readOnly": true
- },
- "properties": {
- "description": "Resource metric properties collection.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ResourceMetricProperty"
- },
- "readOnly": true
- }
- }
- },
- "ServiceSpecification": {
- "description": "Resource metrics service provided by Microsoft.Insights resource provider.",
- "type": "object",
- "properties": {
- "metricSpecifications": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/MetricSpecification"
- }
}
}
- },
- "Site": {
- "description": "A web app, a mobile app backend, or an API app.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/Resource"
- }
- ],
- "properties": {
- "properties": {
- "description": "Site resource specific properties",
- "properties": {
- "state": {
- "description": "Current state of the app.",
- "type": "string",
- "readOnly": true
- },
- "hostNames": {
- "description": "Hostnames associated with the app.",
- "type": "array",
- "items": {
- "type": "string"
- },
- "readOnly": true
- },
- "repositorySiteName": {
- "description": "Name of the repository site.",
- "type": "string",
- "readOnly": true
- },
- "usageState": {
- "description": "State indicating whether the app has exceeded its quota usage. Read-only.",
- "enum": [
- "Normal",
- "Exceeded"
- ],
- "type": "string",
- "readOnly": true,
- "x-ms-enum": {
- "name": "UsageState",
- "modelAsString": false
- }
- },
- "enabled": {
- "description": "true if the app is enabled; otherwise, false. Setting this value to false disables the app (takes the app offline).",
- "type": "boolean"
- },
- "enabledHostNames": {
- "description": "Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\nthe app is not served on those hostnames.",
- "type": "array",
- "items": {
- "type": "string"
- },
- "readOnly": true
- },
- "availabilityState": {
- "description": "Management information availability state for the app.",
- "enum": [
- "Normal",
- "Limited",
- "DisasterRecoveryMode"
- ],
- "type": "string",
- "readOnly": true,
- "x-ms-enum": {
- "name": "SiteAvailabilityState",
- "modelAsString": false
- }
- },
- "hostNameSslStates": {
- "description": "Hostname SSL states are used to manage the SSL bindings for app's hostnames.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/HostNameSslState"
- }
- },
- "serverFarmId": {
- "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\".",
- "type": "string"
- },
- "reserved": {
- "description": "true if reserved; otherwise, false.",
- "default": false,
- "type": "boolean",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "lastModifiedTimeUtc": {
- "format": "date-time",
- "description": "Last time the app was modified, in UTC. Read-only.",
- "type": "string",
- "readOnly": true
- },
- "siteConfig": {
- "$ref": "#/definitions/SiteConfig",
- "description": "Configuration of the app."
- },
- "trafficManagerHostNames": {
- "description": "Azure Traffic Manager hostnames associated with the app. Read-only.",
- "type": "array",
- "items": {
- "type": "string"
- },
- "readOnly": true
- },
- "scmSiteAlsoStopped": {
- "description": "true to stop SCM (KUDU) site when the app is stopped; otherwise, false. The default is false.",
- "default": false,
- "type": "boolean"
- },
- "targetSwapSlot": {
- "description": "Specifies which deployment slot this app will swap into. Read-only.",
- "type": "string",
- "readOnly": true
- },
- "hostingEnvironmentProfile": {
- "$ref": "#/definitions/HostingEnvironmentProfile",
- "description": "App Service Environment to use for the app.",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "clientAffinityEnabled": {
- "description": "true to enable client affinity; false to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is true.",
- "type": "boolean"
- },
- "clientCertEnabled": {
- "description": "true to enable client certificate authentication (TLS mutual authentication); otherwise, false. Default is false.",
- "type": "boolean"
- },
- "hostNamesDisabled": {
- "description": "true to disable the public hostnames of the app; otherwise, false.\n If true, the app is only accessible via API management process.",
- "type": "boolean"
- },
- "outboundIpAddresses": {
- "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only.",
- "type": "string",
- "readOnly": true
- },
- "possibleOutboundIpAddresses": {
- "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants. Read-only.",
- "type": "string",
- "readOnly": true
- },
- "containerSize": {
- "format": "int32",
- "description": "Size of the function container.",
- "type": "integer"
- },
- "dailyMemoryTimeQuota": {
- "format": "int32",
- "description": "Maximum allowed daily memory-time quota (applicable on dynamic apps only).",
- "type": "integer"
- },
- "suspendedTill": {
- "format": "date-time",
- "description": "App suspended till in case memory-time quota is exceeded.",
- "type": "string",
- "readOnly": true
- },
- "maxNumberOfWorkers": {
- "format": "int32",
- "description": "Maximum number of workers.\nThis only applies to Functions container.",
- "type": "integer",
- "readOnly": true
- },
- "cloningInfo": {
- "$ref": "#/definitions/CloningInfo",
- "description": "If specified during app creation, the app is cloned from a source app.",
- "x-ms-mutability": [
- "create"
- ]
- },
- "snapshotInfo": {
- "$ref": "#/definitions/SnapshotRecoveryRequest",
- "description": "If specified during app creation, the app is created from a previous snapshot.",
- "x-ms-mutability": [
- "create"
- ]
- },
- "resourceGroup": {
- "description": "Name of the resource group the app belongs to. Read-only.",
- "type": "string",
- "readOnly": true
- },
- "isDefaultContainer": {
- "description": "true if the app is a default container; otherwise, false.",
- "type": "boolean",
- "readOnly": true
- },
- "defaultHostName": {
- "description": "Default hostname of the app. Read-only.",
- "type": "string",
- "readOnly": true
- },
- "slotSwapStatus": {
- "$ref": "#/definitions/SlotSwapStatus",
- "description": "Status of the last deployment slot swap operation.",
- "readOnly": true
- },
- "httpsOnly": {
- "description": "HttpsOnly: configures a web site to accept only https requests. Issues redirect for\nhttp requests",
- "type": "boolean"
- }
- },
- "x-ms-client-flatten": true
- },
- "identity": {
- "$ref": "#/definitions/ManagedServiceIdentity"
- }
- }
- },
- "SiteConfig": {
- "description": "Configuration of an App Service app.",
- "type": "object",
- "properties": {
- "numberOfWorkers": {
- "format": "int32",
- "description": "Number of workers.",
- "type": "integer"
- },
- "defaultDocuments": {
- "description": "Default documents.",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "netFrameworkVersion": {
- "description": ".NET Framework version.",
- "default": "v4.6",
- "type": "string"
- },
- "phpVersion": {
- "description": "Version of PHP.",
- "type": "string"
- },
- "pythonVersion": {
- "description": "Version of Python.",
- "type": "string"
- },
- "nodeVersion": {
- "description": "Version of Node.js.",
- "type": "string"
- },
- "linuxFxVersion": {
- "description": "Linux App Framework and version",
- "type": "string"
- },
- "requestTracingEnabled": {
- "description": "true if request tracing is enabled; otherwise, false.",
- "type": "boolean"
- },
- "requestTracingExpirationTime": {
- "format": "date-time",
- "description": "Request tracing expiration time.",
- "type": "string"
- },
- "remoteDebuggingEnabled": {
- "description": "true if remote debugging is enabled; otherwise, false.",
- "type": "boolean"
- },
- "remoteDebuggingVersion": {
- "description": "Remote debugging version.",
- "type": "string"
- },
- "httpLoggingEnabled": {
- "description": "true if HTTP logging is enabled; otherwise, false.",
- "type": "boolean"
- },
- "logsDirectorySizeLimit": {
- "format": "int32",
- "description": "HTTP logs directory size limit.",
- "type": "integer"
- },
- "detailedErrorLoggingEnabled": {
- "description": "true if detailed error logging is enabled; otherwise, false.",
- "type": "boolean"
- },
- "publishingUsername": {
- "description": "Publishing user name.",
- "type": "string"
- },
- "appSettings": {
- "description": "Application settings.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/NameValuePair"
- }
- },
- "connectionStrings": {
- "description": "Connection strings.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ConnStringInfo"
- }
- },
- "machineKey": {
- "$ref": "#/definitions/SiteMachineKey",
- "description": "Site MachineKey.",
- "readOnly": true
- },
- "handlerMappings": {
- "description": "Handler mappings.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/HandlerMapping"
- }
- },
- "documentRoot": {
- "description": "Document root.",
- "type": "string"
- },
- "scmType": {
- "description": "SCM type.",
- "enum": [
- "None",
- "Dropbox",
- "Tfs",
- "LocalGit",
- "GitHub",
- "CodePlexGit",
- "CodePlexHg",
- "BitbucketGit",
- "BitbucketHg",
- "ExternalGit",
- "ExternalHg",
- "OneDrive",
- "VSO"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ScmType",
- "modelAsString": true
- }
- },
- "use32BitWorkerProcess": {
- "description": "true to use 32-bit worker process; otherwise, false.",
- "type": "boolean"
- },
- "webSocketsEnabled": {
- "description": "true if WebSocket is enabled; otherwise, false.",
- "type": "boolean"
- },
- "alwaysOn": {
- "description": "true if Always On is enabled; otherwise, false.",
- "type": "boolean"
- },
- "javaVersion": {
- "description": "Java version.",
- "type": "string"
- },
- "javaContainer": {
- "description": "Java container.",
- "type": "string"
- },
- "javaContainerVersion": {
- "description": "Java container version.",
- "type": "string"
- },
- "appCommandLine": {
- "description": "App command line to launch.",
- "type": "string"
- },
- "managedPipelineMode": {
- "description": "Managed pipeline mode.",
- "enum": [
- "Integrated",
- "Classic"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ManagedPipelineMode",
- "modelAsString": false
- }
- },
- "virtualApplications": {
- "description": "Virtual applications.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/VirtualApplication"
- }
- },
- "loadBalancing": {
- "description": "Site load balancing.",
- "enum": [
- "WeightedRoundRobin",
- "LeastRequests",
- "LeastResponseTime",
- "WeightedTotalTraffic",
- "RequestHash"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "SiteLoadBalancing",
- "modelAsString": false
- }
- },
- "experiments": {
- "$ref": "#/definitions/Experiments",
- "description": "This is work around for polymorphic types."
- },
- "limits": {
- "$ref": "#/definitions/SiteLimits",
- "description": "Site limits."
- },
- "autoHealEnabled": {
- "description": "true if Auto Heal is enabled; otherwise, false.",
- "type": "boolean"
- },
- "autoHealRules": {
- "$ref": "#/definitions/AutoHealRules",
- "description": "Auto Heal rules."
- },
- "tracingOptions": {
- "description": "Tracing options.",
- "type": "string"
- },
- "vnetName": {
- "description": "Virtual Network name.",
- "type": "string",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "cors": {
- "$ref": "#/definitions/CorsSettings",
- "description": "Cross-Origin Resource Sharing (CORS) settings."
- },
- "push": {
- "$ref": "#/definitions/PushSettings",
- "description": "Push endpoint settings."
- },
- "apiDefinition": {
- "$ref": "#/definitions/ApiDefinitionInfo",
- "description": "Information about the formal API definition for the app."
- },
- "autoSwapSlotName": {
- "description": "Auto-swap slot name.",
- "type": "string"
- },
- "localMySqlEnabled": {
- "description": "true to enable local MySQL; otherwise, false.",
- "default": false,
- "type": "boolean"
- },
- "ipSecurityRestrictions": {
- "description": "IP security restrictions.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/IpSecurityRestriction"
- }
- },
- "http20Enabled": {
- "description": "Http20Enabled: configures a web site to allow clients to connect over http2.0",
- "default": true,
- "type": "boolean"
- },
- "minTlsVersion": {
- "description": "MinTlsVersion: configures the minimum version of TLS required for SSL requests",
- "enum": [
- "1.0",
- "1.1",
- "1.2"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "SupportedTlsVersions",
- "modelAsString": true
- }
- }
- }
- },
- "SiteLimits": {
- "description": "Metric limits set on an app.",
- "type": "object",
- "properties": {
- "maxPercentageCpu": {
- "format": "double",
- "description": "Maximum allowed CPU usage percentage.",
- "type": "number"
- },
- "maxMemoryInMb": {
- "format": "int64",
- "description": "Maximum allowed memory usage in MB.",
- "type": "integer"
- },
- "maxDiskSizeInMb": {
- "format": "int64",
- "description": "Maximum allowed disk size usage in MB.",
- "type": "integer"
- }
- }
- },
- "SiteMachineKey": {
- "description": "MachineKey of an app.",
- "type": "object",
- "properties": {
- "validation": {
- "description": "MachineKey validation.",
- "type": "string"
- },
- "validationKey": {
- "description": "Validation key.",
- "type": "string"
- },
- "decryption": {
- "description": "Algorithm used for decryption.",
- "type": "string"
- },
- "decryptionKey": {
- "description": "Decryption key.",
- "type": "string"
- }
- }
- },
- "SkuCapacity": {
- "description": "Description of the App Service plan scale options.",
- "type": "object",
- "properties": {
- "minimum": {
- "format": "int32",
- "description": "Minimum number of workers for this App Service plan SKU.",
- "type": "integer"
- },
- "maximum": {
- "format": "int32",
- "description": "Maximum number of workers for this App Service plan SKU.",
- "type": "integer"
- },
- "default": {
- "format": "int32",
- "description": "Default number of workers for this App Service plan SKU.",
- "type": "integer"
- },
- "scaleType": {
- "description": "Available scale configurations for an App Service plan.",
- "type": "string"
- }
- }
- },
- "SkuDescription": {
- "description": "Description of a SKU for a scalable resource.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Name of the resource SKU.",
- "type": "string"
- },
- "tier": {
- "description": "Service tier of the resource SKU.",
- "type": "string"
- },
- "size": {
- "description": "Size specifier of the resource SKU.",
- "type": "string"
- },
- "family": {
- "description": "Family code of the resource SKU.",
- "type": "string"
- },
- "capacity": {
- "format": "int32",
- "description": "Current number of instances assigned to the resource.",
- "type": "integer"
- },
- "skuCapacity": {
- "$ref": "#/definitions/SkuCapacity",
- "description": "Min, max, and default scale values of the SKU."
- },
- "locations": {
- "description": "Locations of the SKU.",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "capabilities": {
- "description": "Capabilities of the SKU, e.g., is traffic manager enabled?",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- }
- }
- },
- "SlotSwapStatus": {
- "description": "The status of the last successful slot swap operation.",
- "type": "object",
- "properties": {
- "timestampUtc": {
- "format": "date-time",
- "description": "The time the last successful slot swap completed.",
- "type": "string",
- "readOnly": true
- },
- "sourceSlotName": {
- "description": "The source slot of the last swap operation.",
- "type": "string",
- "readOnly": true
- },
- "destinationSlotName": {
- "description": "The destination slot of the last swap operation.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "SlowRequestsBasedTrigger": {
- "description": "Trigger based on request execution time.",
- "type": "object",
- "properties": {
- "timeTaken": {
- "description": "Time taken.",
- "type": "string"
- },
- "count": {
- "format": "int32",
- "description": "Request Count.",
- "type": "integer"
- },
- "timeInterval": {
- "description": "Time interval.",
- "type": "string"
- }
- }
- },
- "SnapshotRecoveryRequest": {
- "description": "Details about app recovery operation.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "SnapshotRecoveryRequest resource specific properties",
- "required": [
- "overwrite"
- ],
- "properties": {
- "snapshotTime": {
- "description": "Point in time in which the app recovery should be attempted, formatted as a DateTime string.",
- "type": "string"
- },
- "recoveryTarget": {
- "$ref": "#/definitions/SnapshotRecoveryTarget",
- "description": "Specifies the web app that snapshot contents will be written to."
- },
- "overwrite": {
- "description": "If true the recovery operation can overwrite source app; otherwise, false.",
- "type": "boolean"
- },
- "recoverConfiguration": {
- "description": "If true, site configuration, in addition to content, will be reverted.",
- "type": "boolean"
- },
- "ignoreConflictingHostNames": {
- "description": "If true, custom hostname conflicts will be ignored when recovering to a target web app.\nThis setting is only necessary when RecoverConfiguration is enabled.",
- "type": "boolean"
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "SnapshotRecoveryTarget": {
- "description": "Specifies the web app that snapshot contents will be written to.",
- "type": "object",
- "properties": {
- "location": {
- "description": "Geographical location of the target web app, e.g. SouthEastAsia, SouthCentralUS",
- "type": "string"
- },
- "id": {
- "description": "ARM resource ID of the target app. \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.",
- "type": "string"
- }
- }
- },
- "StampCapacity": {
- "description": "Stamp capacity information.",
- "type": "object",
- "properties": {
- "name": {
- "description": "Name of the stamp.",
- "type": "string"
- },
- "availableCapacity": {
- "format": "int64",
- "description": "Available capacity (# of machines, bytes of storage etc...).",
- "type": "integer"
- },
- "totalCapacity": {
- "format": "int64",
- "description": "Total capacity (# of machines, bytes of storage etc...).",
- "type": "integer"
- },
- "unit": {
- "description": "Name of the unit.",
- "type": "string"
- },
- "computeMode": {
- "description": "Shared/dedicated workers.",
- "enum": [
- "Shared",
- "Dedicated",
- "Dynamic"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ComputeModeOptions",
- "modelAsString": false
- }
- },
- "workerSize": {
- "description": "Size of the machines.",
- "enum": [
- "Default",
- "Small",
- "Medium",
- "Large",
- "D1",
- "D2",
- "D3"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "WorkerSizeOptions",
- "modelAsString": false
- }
- },
- "workerSizeId": {
- "format": "int32",
- "description": "Size ID of machines: \n0 - Small\n1 - Medium\n2 - Large",
- "type": "integer"
- },
- "excludeFromCapacityAllocation": {
- "description": "If true, it includes basic apps.\nBasic apps are not used for capacity allocation.",
- "type": "boolean"
- },
- "isApplicableForAllComputeModes": {
- "description": "true if capacity is applicable for all apps; otherwise, false.",
- "type": "boolean"
- },
- "siteMode": {
- "description": "Shared or Dedicated.",
- "type": "string"
- }
- }
- },
- "StatusCodesBasedTrigger": {
- "description": "Trigger based on status code.",
- "type": "object",
- "properties": {
- "status": {
- "format": "int32",
- "description": "HTTP status code.",
- "type": "integer"
- },
- "subStatus": {
- "format": "int32",
- "description": "Request Sub Status.",
- "type": "integer"
- },
- "win32Status": {
- "format": "int32",
- "description": "Win32 error code.",
- "type": "integer"
- },
- "count": {
- "format": "int32",
- "description": "Request Count.",
- "type": "integer"
- },
- "timeInterval": {
- "description": "Time interval.",
- "type": "string"
- }
- }
- },
- "User": {
- "description": "User credentials used for publishing activity.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "User resource specific properties",
- "required": [
- "publishingUserName"
- ],
- "properties": {
- "name": {
- "description": "Username",
- "type": "string",
- "x-ms-client-name": "UserName"
- },
- "publishingUserName": {
- "description": "Username used for publishing.",
- "type": "string"
- },
- "publishingPassword": {
- "format": "password",
- "description": "Password used for publishing.",
- "type": "string"
- },
- "publishingPasswordHash": {
- "format": "password",
- "description": "Password hash used for publishing.",
- "type": "string"
- },
- "publishingPasswordHashSalt": {
- "format": "password",
- "description": "Password hash salt used for publishing.",
- "type": "string"
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "VirtualApplication": {
- "description": "Virtual application in an app.",
- "type": "object",
- "properties": {
- "virtualPath": {
- "description": "Virtual path.",
- "type": "string"
- },
- "physicalPath": {
- "description": "Physical path.",
- "type": "string"
- },
- "preloadEnabled": {
- "description": "true if preloading is enabled; otherwise, false.",
- "type": "boolean"
- },
- "virtualDirectories": {
- "description": "Virtual directories for virtual application.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/VirtualDirectory"
- }
- }
- }
- },
- "VirtualDirectory": {
- "description": "Directory for virtual application.",
- "type": "object",
- "properties": {
- "virtualPath": {
- "description": "Path to virtual application.",
- "type": "string"
- },
- "physicalPath": {
- "description": "Physical path.",
- "type": "string"
- }
- }
- },
- "VirtualIPMapping": {
- "description": "Virtual IP mapping.",
- "type": "object",
- "properties": {
- "virtualIP": {
- "description": "Virtual IP address.",
- "type": "string"
- },
- "internalHttpPort": {
- "format": "int32",
- "description": "Internal HTTP port.",
- "type": "integer"
- },
- "internalHttpsPort": {
- "format": "int32",
- "description": "Internal HTTPS port.",
- "type": "integer"
- },
- "inUse": {
- "description": "Is virtual IP mapping in use.",
- "type": "boolean"
}
- }
},
- "VirtualNetworkProfile": {
- "description": "Specification for using a Virtual Network.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Resource id of the Virtual Network.",
- "type": "string"
- },
- "name": {
- "description": "Name of the Virtual Network (read-only).",
- "type": "string",
- "readOnly": true
- },
- "type": {
- "description": "Resource type of the Virtual Network (read-only).",
- "type": "string",
- "readOnly": true
- },
- "subnet": {
- "description": "Subnet within the Virtual Network.",
- "type": "string"
- }
- }
- },
- "VnetGateway": {
- "description": "The Virtual Network gateway contract. This is used to give the Virtual Network gateway access to the VPN package.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "VnetGateway resource specific properties",
- "required": [
- "vpnPackageUri"
- ],
- "properties": {
- "vnetName": {
- "description": "The Virtual Network name.",
- "type": "string",
- "x-ms-mutability": [
- "create",
- "read"
- ]
- },
- "vpnPackageUri": {
- "description": "The URI where the VPN package can be downloaded.",
- "type": "string",
- "x-ms-mutability": [
- "create",
- "update"
- ]
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "VnetInfo": {
- "description": "Virtual Network information contract.",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "VnetInfo resource specific properties",
- "properties": {
- "vnetResourceId": {
- "description": "The Virtual Network's resource ID.",
- "type": "string"
- },
- "certThumbprint": {
- "description": "The client certificate thumbprint.",
- "type": "string",
- "readOnly": true
- },
- "certBlob": {
- "format": "byte",
- "description": "A certificate file (.cer) blob containing the public key of the private key used to authenticate a \nPoint-To-Site VPN connection.",
- "type": "string"
- },
- "routes": {
- "description": "The routes that this Virtual Network connection uses.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/VnetRoute"
- },
- "readOnly": true
- },
- "resyncRequired": {
- "description": "true if a resync is required; otherwise, false.",
- "type": "boolean",
- "readOnly": true
- },
- "dnsServers": {
- "description": "DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses.",
- "type": "string"
+ "securityDefinitions": {
+ "azure_auth": {
+ "type": "oauth2",
+ "description": "Azure Active Directory OAuth2 Flow",
+ "flow": "implicit",
+ "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
+ "scopes": {
+ "user_impersonation": "impersonate your user account"
}
- },
- "x-ms-client-flatten": true
}
- }
},
- "VnetRoute": {
- "description": "Virtual Network route contract used to pass routing information for a Virtual Network.",
- "type": "object",
- "allOf": [
+ "security": [
{
- "$ref": "#/definitions/ProxyOnlyResource"
- }
- ],
- "properties": {
- "properties": {
- "description": "VnetRoute resource specific properties",
- "properties": {
- "name": {
- "description": "The name of this route. This is only returned by the server and does not need to be set by the client.",
- "type": "string",
- "x-ms-mutability": [
- "create",
- "read"
- ],
- "x-ms-client-name": "vnetRouteName"
- },
- "startAddress": {
- "description": "The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified.",
- "type": "string"
- },
- "endAddress": {
- "description": "The ending address for this route. If the start address is specified in CIDR notation, this must be omitted.",
- "type": "string"
- },
- "routeType": {
- "description": "The type of route this is:\nDEFAULT - By default, every app has routes to the local address ranges specified by RFC1918\nINHERITED - Routes inherited from the real Virtual Network routes\nSTATIC - Static route set on the app only\n\nThese values will be used for syncing an app's routes with those from a Virtual Network.",
- "enum": [
- "DEFAULT",
- "INHERITED",
- "STATIC"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "RouteType",
- "modelAsString": true
- }
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "WebAppCollection": {
- "description": "Collection of App Service apps.",
- "required": [
- "value"
- ],
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of resources.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Site"
- }
- },
- "nextLink": {
- "description": "Link to next page of resources.",
- "type": "string",
- "readOnly": true
- }
- }
- },
- "WorkerPool": {
- "description": "Worker pool of an App Service Environment.",
- "type": "object",
- "properties": {
- "workerSizeId": {
- "format": "int32",
- "description": "Worker size ID for referencing this worker pool.",
- "type": "integer"
- },
- "computeMode": {
- "description": "Shared or dedicated app hosting.",
- "enum": [
- "Shared",
- "Dedicated",
- "Dynamic"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ComputeModeOptions",
- "modelAsString": false
- }
- },
- "workerSize": {
- "description": "VM size of the worker pool instances.",
- "type": "string"
- },
- "workerCount": {
- "format": "int32",
- "description": "Number of instances in the worker pool.",
- "type": "integer"
- },
- "instanceNames": {
- "description": "Names of all instances in the worker pool (read only).",
- "type": "array",
- "items": {
- "type": "string"
- },
- "readOnly": true
+ "azure_auth": [
+ "user_impersonation"
+ ]
}
- }
- }
- },
- "securityDefinitions": {
- "azure_auth": {
- "type": "oauth2",
- "description": "Azure Active Directory OAuth2 Flow",
- "flow": "implicit",
- "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
- "scopes": {
- "user_impersonation": "impersonate your user account"
- }
- }
- },
- "security": [
- {
- "azure_auth": [
- "user_impersonation"
- ]
- }
- ]
+ ]
}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/DeletedWebApps.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/DeletedWebApps.json
index 82527ae38071..7d46a1413612 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/DeletedWebApps.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/DeletedWebApps.json
@@ -138,4 +138,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Diagnostics.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Diagnostics.json
index 012d365b5389..326d2d98e838 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Diagnostics.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Diagnostics.json
@@ -23,7 +23,9 @@
"summary": "List Hosting Environment Detector Responses",
"description": "List Hosting Environment Detector Responses",
"x-ms-examples": {
- "List App Service Environment Detector Responses": { "$ref": "./examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json" }
+ "List App Service Environment Detector Responses": {
+ "$ref": "./examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json"
+ }
},
"operationId": "Diagnostics_ListHostingEnvironmentDetectorResponses",
"parameters": [
@@ -65,7 +67,9 @@
"summary": "Get Hosting Environment Detector Response",
"description": "Get Hosting Environment Detector Response",
"x-ms-examples": {
- "Get App Service Environment Detector Response": { "$ref": "./examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json" }
+ "Get App Service Environment Detector Response": {
+ "$ref": "./examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json"
+ }
},
"operationId": "Diagnostics_GetHostingEnvironmentDetectorResponse",
"parameters": [
@@ -132,7 +136,9 @@
"summary": "List Site Detector Responses",
"description": "List Site Detector Responses",
"x-ms-examples": {
- "List App Detector Responses": { "$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json" }
+ "List App Detector Responses": {
+ "$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json"
+ }
},
"operationId": "Diagnostics_ListSiteDetectorResponses",
"parameters": [
@@ -174,7 +180,9 @@
"summary": "Get site detector response",
"description": "Get site detector response",
"x-ms-examples": {
- "Get App Detector Response": { "$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json" }
+ "Get App Detector Response": {
+ "$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json"
+ }
},
"operationId": "Diagnostics_GetSiteDetectorResponse",
"parameters": [
@@ -660,7 +668,9 @@
"summary": "List Site Detector Responses",
"description": "List Site Detector Responses",
"x-ms-examples": {
- "List App Slot Detector Responses": { "$ref": "./examples/Diagnostics_ListSiteDetectorResponsesSlot.json" }
+ "List App Slot Detector Responses": {
+ "$ref": "./examples/Diagnostics_ListSiteDetectorResponsesSlot.json"
+ }
},
"operationId": "Diagnostics_ListSiteDetectorResponsesSlot",
"parameters": [
@@ -709,7 +719,9 @@
"summary": "Get site detector response",
"description": "Get site detector response",
"x-ms-examples": {
- "Get App Slot Detector Response": { "$ref": "./examples/Diagnostics_GetSiteDetectorResponseSlot.json" }
+ "Get App Slot Detector Response": {
+ "$ref": "./examples/Diagnostics_GetSiteDetectorResponseSlot.json"
+ }
},
"operationId": "Diagnostics_GetSiteDetectorResponseSlot",
"parameters": [
@@ -2000,4 +2012,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Provider.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Provider.json
index c428bc8939c5..cf79366c55b1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Provider.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Provider.json
@@ -252,4 +252,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Recommendations.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Recommendations.json
index 7b7e016f91f5..3d8b7dc5166c 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Recommendations.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/Recommendations.json
@@ -676,4 +676,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/ResourceHealthMetadata.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/ResourceHealthMetadata.json
index 9d9da720c819..aff94595cf5c 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/ResourceHealthMetadata.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/ResourceHealthMetadata.json
@@ -400,4 +400,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/CreateOrUpdateCertificate.json
index b5996e8cde6d..495be5c2e126 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/CreateOrUpdateCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/CreateOrUpdateCertificate.json
@@ -1,49 +1,49 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2016-03-01",
+ "certificateEnvelope": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2016-03-01",
- "certificateEnvelope": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/DeleteCertificate.json
index bdc80d142de6..63e0023bbec8 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/DeleteCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/DeleteCertificate.json
@@ -1,12 +1,12 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "testc6282",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysis.json
index bfe0b5863140..478d1c4784ad 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysis.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysis.json
@@ -1,134 +1,134 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "analysisName": "apprestartanalyses",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "analysisName": "apprestartanalyses",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json
index 39da3d171541..4f396a3037e4 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json
@@ -1,135 +1,135 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "analysisName": "apprestartanalyses",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "analysisName": "apprestartanalyses",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetector.json
index 2811ddf2d30b..11e94e9a65b8 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetector.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetector.json
@@ -1,134 +1,134 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json
index 217248f4e521..3f5d55441f52 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json
@@ -1,135 +1,135 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json
index 45433e2a7526..2b157ffa145f 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json
@@ -1,136 +1,136 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "name": "SampleAppServiceEnvironment",
- "detectorName": "runtimeavailability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes all the requests to all applications running on this app service environment.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- {
- "table": {
- "tableName": "Table_0",
- "columns": [
- {
- "columnName": "PreciseTimeStamp",
- "dataType": "DateTime",
- "columnType": "datetime"
- },
- {
- "columnName": "count_Http2xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http3xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http4xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http5xx",
- "dataType": "Int64",
- "columnType": "long"
- }
- ],
- "rows": [
- [
- "2018-03-27T00:25:00Z",
- "772705",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:30:00Z",
- "787069",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:35:00Z",
- "781627",
- "0",
- "1",
- "0"
- ],
- [
- "2018-03-27T00:40:00Z",
- "785017",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:45:00Z",
- "783518",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:50:00Z",
- "785783",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:55:00Z",
- "772874",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:00:00Z",
- "787162",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:05:00Z",
- "782036",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:10:00Z",
- "784642",
- "0",
- "0",
- "0"
- ]
- ]
- },
- "renderingProperties": {
- "renderingType": "TimeSeries",
- "title": "Requests by Status Code",
- "description": "This detector breaks down the number of requests that your apps on this app service environment received for each status code."
- }
- }
- ]
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "name": "SampleAppServiceEnvironment",
+ "detectorName": "runtimeavailability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes all the requests to all applications running on this app service environment.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": [
+ {
+ "table": {
+ "tableName": "Table_0",
+ "columns": [
+ {
+ "columnName": "PreciseTimeStamp",
+ "dataType": "DateTime",
+ "columnType": "datetime"
+ },
+ {
+ "columnName": "count_Http2xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http3xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http4xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http5xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ }
+ ],
+ "rows": [
+ [
+ "2018-03-27T00:25:00Z",
+ "772705",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:30:00Z",
+ "787069",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:35:00Z",
+ "781627",
+ "0",
+ "1",
+ "0"
+ ],
+ [
+ "2018-03-27T00:40:00Z",
+ "785017",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:45:00Z",
+ "783518",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:50:00Z",
+ "785783",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:55:00Z",
+ "772874",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:00:00Z",
+ "787162",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:05:00Z",
+ "782036",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:10:00Z",
+ "784642",
+ "0",
+ "0",
+ "0"
+ ]
+ ]
+ },
+ "renderingProperties": {
+ "renderingType": "TimeSeries",
+ "title": "Requests by Status Code",
+ "description": "This detector breaks down the number of requests that your apps on this app service environment received for each status code."
+ }
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysis.json
index 29b55f62fac5..228541eb759e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysis.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysis.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "analysisName": "appanalysis",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
- "name": "appanalysis",
- "properties": {
- "analysisName": "appanalysis",
- "description": "Determine causes of availability loss as well as solutions for these problems"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "analysisName": "appanalysis",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
+ "name": "appanalysis",
+ "properties": {
+ "analysisName": "appanalysis",
+ "description": "Determine causes of availability loss as well as solutions for these problems"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysisSlot.json
index 8177226432f1..80afb644ba1b 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysisSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteAnalysisSlot.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "analysisName": "apprestartanalysis",
- "description": "Find the reasons that your app restarted"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "analysisName": "apprestartanalysis",
+ "description": "Find the reasons that your app restarted"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetector.json
index 0b494949a246..95f8035dbd71 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetector.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetector.json
@@ -1,28 +1,28 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponse.json
index df95673505bc..707988a50737 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponse.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponse.json
@@ -1,136 +1,136 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "detectorName": "runtimeavailability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "Web App Down",
- "supportTopicId": ""
- },
- "dataset": [
- {
- "table": {
- "tableName": "Table_0",
- "columns": [
- {
- "columnName": "PreciseTimeStamp",
- "dataType": "DateTime",
- "columnType": "datetime"
- },
- {
- "columnName": "count_Http2xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http3xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http4xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http5xx",
- "dataType": "Int64",
- "columnType": "long"
- }
- ],
- "rows": [
- [
- "2018-03-27T00:25:00Z",
- "772705",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:30:00Z",
- "787069",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:35:00Z",
- "781627",
- "0",
- "1",
- "0"
- ],
- [
- "2018-03-27T00:40:00Z",
- "785017",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:45:00Z",
- "783518",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:50:00Z",
- "785783",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:55:00Z",
- "772874",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:00:00Z",
- "787162",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:05:00Z",
- "782036",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:10:00Z",
- "784642",
- "0",
- "0",
- "0"
- ]
- ]
- },
- "renderingProperties": {
- "renderingType": "TimeSeries",
- "title": "Requests by Status Code",
- "description": "This detector breaks down the number of requests that your app received for each status code."
- }
- }
- ]
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "detectorName": "runtimeavailability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "Web App Down",
+ "supportTopicId": ""
+ },
+ "dataset": [
+ {
+ "table": {
+ "tableName": "Table_0",
+ "columns": [
+ {
+ "columnName": "PreciseTimeStamp",
+ "dataType": "DateTime",
+ "columnType": "datetime"
+ },
+ {
+ "columnName": "count_Http2xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http3xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http4xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http5xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ }
+ ],
+ "rows": [
+ [
+ "2018-03-27T00:25:00Z",
+ "772705",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:30:00Z",
+ "787069",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:35:00Z",
+ "781627",
+ "0",
+ "1",
+ "0"
+ ],
+ [
+ "2018-03-27T00:40:00Z",
+ "785017",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:45:00Z",
+ "783518",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:50:00Z",
+ "785783",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:55:00Z",
+ "772874",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:00:00Z",
+ "787162",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:05:00Z",
+ "782036",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:10:00Z",
+ "784642",
+ "0",
+ "0",
+ "0"
+ ]
+ ]
+ },
+ "renderingProperties": {
+ "renderingType": "TimeSeries",
+ "title": "Requests by Status Code",
+ "description": "This detector breaks down the number of requests that your app received for each status code."
+ }
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json
index c8942612ca76..b9fbd793a4e3 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json
@@ -1,137 +1,137 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "detectorName": "runtimeavailability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "Web App Down",
- "supportTopicId": ""
- },
- "dataset": [
- {
- "table": {
- "tableName": "Table_0",
- "columns": [
- {
- "columnName": "PreciseTimeStamp",
- "dataType": "DateTime",
- "columnType": "datetime"
- },
- {
- "columnName": "count_Http2xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http3xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http4xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http5xx",
- "dataType": "Int64",
- "columnType": "long"
- }
- ],
- "rows": [
- [
- "2018-03-27T00:25:00Z",
- "772705",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:30:00Z",
- "787069",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:35:00Z",
- "781627",
- "0",
- "1",
- "0"
- ],
- [
- "2018-03-27T00:40:00Z",
- "785017",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:45:00Z",
- "783518",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:50:00Z",
- "785783",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:55:00Z",
- "772874",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:00:00Z",
- "787162",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:05:00Z",
- "782036",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:10:00Z",
- "784642",
- "0",
- "0",
- "0"
- ]
- ]
- },
- "renderingProperties": {
- "renderingType": "TimeSeries",
- "title": "Requests by Status Code",
- "description": "This detector breaks down the number of requests that your app received for each status code."
- }
- }
- ]
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "detectorName": "runtimeavailability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "Web App Down",
+ "supportTopicId": ""
+ },
+ "dataset": [
+ {
+ "table": {
+ "tableName": "Table_0",
+ "columns": [
+ {
+ "columnName": "PreciseTimeStamp",
+ "dataType": "DateTime",
+ "columnType": "datetime"
+ },
+ {
+ "columnName": "count_Http2xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http3xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http4xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http5xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ }
+ ],
+ "rows": [
+ [
+ "2018-03-27T00:25:00Z",
+ "772705",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:30:00Z",
+ "787069",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:35:00Z",
+ "781627",
+ "0",
+ "1",
+ "0"
+ ],
+ [
+ "2018-03-27T00:40:00Z",
+ "785017",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:45:00Z",
+ "783518",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:50:00Z",
+ "785783",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:55:00Z",
+ "772874",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:00:00Z",
+ "787162",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:05:00Z",
+ "782036",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:10:00Z",
+ "784642",
+ "0",
+ "0",
+ "0"
+ ]
+ ]
+ },
+ "renderingProperties": {
+ "renderingType": "TimeSeries",
+ "title": "Requests by Status Code",
+ "description": "This detector breaks down the number of requests that your app received for each status code."
+ }
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorSlot.json
index 50b4630b4c3d..29987ad06af0 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDetectorSlot.json
@@ -1,29 +1,29 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategory.json
index 58e691169e5b..2fa8a328e462 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategory.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategory.json
@@ -1,23 +1,23 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json
index b3f9d6326af9..9d6c50408f5a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json
index b9bc21ae1030..0161800ab593 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json
@@ -1,30 +1,29 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "name": "SampleAppServiceEnvironment",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes all the requests to all applications running on this app service environment.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "name": "SampleAppServiceEnvironment",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes all the requests to all applications running on this app service environment.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": []
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalyses.json
index dbdacf78c78d..a93b1abfdd68 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalyses.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalyses.json
@@ -1,57 +1,57 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis",
- "name": "appanalysis",
- "properties": {
- "analysisName": "appanalysis",
- "description": "Determine causes of availability loss as well as solutions for these problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "name": "apprestartanalysis",
- "description": "Find the reasons that your app restarted"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis",
- "name": "memoryanalysis",
- "properties": {
- "name": "memoryanalysis",
- "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis",
- "name": "tcpconnectionsanalysis",
- "properties": {
- "name": "tcpconnectionsanalysis",
- "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis",
- "name": "perfanalysis",
- "properties": {
- "name": "perfanalysis",
- "description": "Determine causes of performance degredation as well as solutions for these problems"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis",
+ "name": "appanalysis",
+ "properties": {
+ "analysisName": "appanalysis",
+ "description": "Determine causes of availability loss as well as solutions for these problems"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "name": "apprestartanalysis",
+ "description": "Find the reasons that your app restarted"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis",
+ "name": "memoryanalysis",
+ "properties": {
+ "name": "memoryanalysis",
+ "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis",
+ "name": "tcpconnectionsanalysis",
+ "properties": {
+ "name": "tcpconnectionsanalysis",
+ "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis",
+ "name": "perfanalysis",
+ "properties": {
+ "name": "perfanalysis",
+ "description": "Determine causes of performance degredation as well as solutions for these problems"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalysesSlot.json
index 9c5ea32f0cff..33fe52dfdaf9 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalysesSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteAnalysesSlot.json
@@ -1,58 +1,58 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
- "name": "appanalysis",
- "properties": {
- "analysisName": "appanalysis",
- "description": "Determine causes of availability loss as well as solutions for these problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "name": "apprestartanalysis",
- "description": "Find the reasons that your app restarted"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis",
- "name": "memoryanalysis",
- "properties": {
- "name": "memoryanalysis",
- "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis",
- "name": "tcpconnectionsanalysis",
- "properties": {
- "name": "tcpconnectionsanalysis",
- "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis",
- "name": "perfanalysis",
- "properties": {
- "name": "perfanalysis",
- "description": "Determine causes of performance degredation as well as solutions for these problems"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
+ "name": "appanalysis",
+ "properties": {
+ "analysisName": "appanalysis",
+ "description": "Determine causes of availability loss as well as solutions for these problems"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "name": "apprestartanalysis",
+ "description": "Find the reasons that your app restarted"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis",
+ "name": "memoryanalysis",
+ "properties": {
+ "name": "memoryanalysis",
+ "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis",
+ "name": "tcpconnectionsanalysis",
+ "properties": {
+ "name": "tcpconnectionsanalysis",
+ "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis",
+ "name": "perfanalysis",
+ "properties": {
+ "name": "perfanalysis",
+ "description": "Determine causes of performance degredation as well as solutions for these problems"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponses.json
index 6af6c89b8d6e..5e2e145a2811 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponses.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponses.json
@@ -1,30 +1,29 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": []
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json
index dd2bc3d39cf7..ee97f2052943 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json
@@ -1,31 +1,30 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": []
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectors.json
index 405e79ba05ae..af438b7fd807 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectors.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectors.json
@@ -1,233 +1,233 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth",
- "name": "servicehealth",
- "location": "West US",
- "properties": {
- "name": "servicehealth",
- "displayName": "Service Health",
- "description": null,
- "rank": 1,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap",
- "name": "siteswap",
- "location": "West US",
- "properties": {
- "name": "siteswap",
- "displayName": "Site Swap Operations",
- "description": null,
- "rank": 8,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment",
- "name": "deployment",
- "location": "West US",
- "properties": {
- "name": "deployment",
- "displayName": "Site Deployments",
- "description": null,
- "rank": 7,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis",
- "name": "sitecpuanalysis",
- "location": "West US",
- "properties": {
- "name": "sitecpuanalysis",
- "displayName": "CPU Analysis",
- "description": null,
- "rank": 3,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis",
- "name": "sitememoryanalysis",
- "location": "West US",
- "properties": {
- "name": "sitememoryanalysis",
- "displayName": "Physical Memory Analysis",
- "description": null,
- "rank": 3,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage",
- "name": "committedmemoryusage",
- "location": "West US",
- "properties": {
- "name": "committedmemoryusage",
- "displayName": "Committed Memory Usage",
- "description": null,
- "rank": 7,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations",
- "name": "pagefileoperations",
- "location": "West US",
- "properties": {
- "name": "pagefileoperations",
- "displayName": "Page File Operations",
- "description": null,
- "rank": 3,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated",
- "name": "siterestartuserinitiated",
- "location": "West US",
- "properties": {
- "name": "siterestartuserinitiated",
- "displayName": "User Initiated Site Restarts",
- "description": null,
- "rank": 14,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate",
- "name": "siterestartsettingupdate",
- "location": "West US",
- "properties": {
- "name": "siterestartsettingupdate",
- "displayName": "Config Update Site Restarts",
- "description": null,
- "rank": 12,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis",
- "name": "frebanalysis",
- "location": "West US",
- "properties": {
- "name": "frebanalysis",
- "displayName": "Freb Logs Analysis",
- "description": null,
- "rank": 6,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability",
- "name": "workeravailability",
- "location": "West US",
- "properties": {
- "name": "workeravailability",
- "displayName": "Worker Availability",
- "description": null,
- "rank": 11,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency",
- "name": "sitelatency",
- "location": "West US",
- "properties": {
- "name": "sitelatency",
- "displayName": "Site Latency",
- "description": null,
- "rank": 1005,
- "isEnabled": false
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount",
- "name": "threadcount",
- "location": "West US",
- "properties": {
- "name": "threadcount",
- "displayName": "Thread Count",
- "description": null,
- "rank": 23,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri",
- "name": "failedrequestsperuri",
- "location": "West US",
- "properties": {
- "name": "failedrequestsperuri",
- "displayName": "Failed Requests Per URI",
- "description": null,
- "rank": 998,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal",
- "name": "autoheal",
- "location": "West US",
- "properties": {
- "name": "autoheal",
- "displayName": "AutoHeal",
- "description": null,
- "rank": 21,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer",
- "name": "loganalyzer",
- "location": "West US",
- "properties": {
- "name": "loganalyzer",
- "displayName": "PHP Log Analyzer",
- "description": null,
- "rank": 26,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore",
- "name": "aspnetcore",
- "location": "West US",
- "properties": {
- "name": "aspnetcore",
- "displayName": "ASP.NET Core",
- "description": null,
- "rank": 5,
- "isEnabled": true
- }
- }
- ]
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth",
+ "name": "servicehealth",
+ "location": "West US",
+ "properties": {
+ "name": "servicehealth",
+ "displayName": "Service Health",
+ "description": null,
+ "rank": 1,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap",
+ "name": "siteswap",
+ "location": "West US",
+ "properties": {
+ "name": "siteswap",
+ "displayName": "Site Swap Operations",
+ "description": null,
+ "rank": 8,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment",
+ "name": "deployment",
+ "location": "West US",
+ "properties": {
+ "name": "deployment",
+ "displayName": "Site Deployments",
+ "description": null,
+ "rank": 7,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis",
+ "name": "sitecpuanalysis",
+ "location": "West US",
+ "properties": {
+ "name": "sitecpuanalysis",
+ "displayName": "CPU Analysis",
+ "description": null,
+ "rank": 3,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis",
+ "name": "sitememoryanalysis",
+ "location": "West US",
+ "properties": {
+ "name": "sitememoryanalysis",
+ "displayName": "Physical Memory Analysis",
+ "description": null,
+ "rank": 3,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage",
+ "name": "committedmemoryusage",
+ "location": "West US",
+ "properties": {
+ "name": "committedmemoryusage",
+ "displayName": "Committed Memory Usage",
+ "description": null,
+ "rank": 7,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations",
+ "name": "pagefileoperations",
+ "location": "West US",
+ "properties": {
+ "name": "pagefileoperations",
+ "displayName": "Page File Operations",
+ "description": null,
+ "rank": 3,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated",
+ "name": "siterestartuserinitiated",
+ "location": "West US",
+ "properties": {
+ "name": "siterestartuserinitiated",
+ "displayName": "User Initiated Site Restarts",
+ "description": null,
+ "rank": 14,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate",
+ "name": "siterestartsettingupdate",
+ "location": "West US",
+ "properties": {
+ "name": "siterestartsettingupdate",
+ "displayName": "Config Update Site Restarts",
+ "description": null,
+ "rank": 12,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis",
+ "name": "frebanalysis",
+ "location": "West US",
+ "properties": {
+ "name": "frebanalysis",
+ "displayName": "Freb Logs Analysis",
+ "description": null,
+ "rank": 6,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability",
+ "name": "workeravailability",
+ "location": "West US",
+ "properties": {
+ "name": "workeravailability",
+ "displayName": "Worker Availability",
+ "description": null,
+ "rank": 11,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency",
+ "name": "sitelatency",
+ "location": "West US",
+ "properties": {
+ "name": "sitelatency",
+ "displayName": "Site Latency",
+ "description": null,
+ "rank": 1005,
+ "isEnabled": false
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount",
+ "name": "threadcount",
+ "location": "West US",
+ "properties": {
+ "name": "threadcount",
+ "displayName": "Thread Count",
+ "description": null,
+ "rank": 23,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri",
+ "name": "failedrequestsperuri",
+ "location": "West US",
+ "properties": {
+ "name": "failedrequestsperuri",
+ "displayName": "Failed Requests Per URI",
+ "description": null,
+ "rank": 998,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal",
+ "name": "autoheal",
+ "location": "West US",
+ "properties": {
+ "name": "autoheal",
+ "displayName": "AutoHeal",
+ "description": null,
+ "rank": 21,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer",
+ "name": "loganalyzer",
+ "location": "West US",
+ "properties": {
+ "name": "loganalyzer",
+ "displayName": "PHP Log Analyzer",
+ "description": null,
+ "rank": 26,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore",
+ "name": "aspnetcore",
+ "location": "West US",
+ "properties": {
+ "name": "aspnetcore",
+ "displayName": "ASP.NET Core",
+ "description": null,
+ "rank": 5,
+ "isEnabled": true
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorsSlot.json
index 99e2dd415ec8..ffc2c1461e95 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorsSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDetectorsSlot.json
@@ -1,66 +1,66 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth",
- "name": "servicehealth",
- "location": "West US",
- "properties": {
- "name": "servicehealth",
- "displayName": "Service Health",
- "description": null,
- "rank": 1,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap",
- "name": "siteswap",
- "location": "West US",
- "properties": {
- "name": "siteswap",
- "displayName": "Site Swap Operations",
- "description": null,
- "rank": 8,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment",
- "name": "deployment",
- "location": "West US",
- "properties": {
- "name": "deployment",
- "displayName": "Site Deployments",
- "description": null,
- "rank": 7,
- "isEnabled": true
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth",
+ "name": "servicehealth",
+ "location": "West US",
+ "properties": {
+ "name": "servicehealth",
+ "displayName": "Service Health",
+ "description": null,
+ "rank": 1,
+ "isEnabled": true
}
- }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap",
+ "name": "siteswap",
+ "location": "West US",
+ "properties": {
+ "name": "siteswap",
+ "displayName": "Site Swap Operations",
+ "description": null,
+ "rank": 8,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment",
+ "name": "deployment",
+ "location": "West US",
+ "properties": {
+ "name": "deployment",
+ "displayName": "Site Deployments",
+ "description": null,
+ "rank": 7,
+ "isEnabled": true
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategories.json
index d549c600e0a6..37d4cf57ed38 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategories.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategories.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json
index 4900d0b61557..60b18ca59bd2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json
@@ -1,25 +1,25 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetCertificate.json
index 773aa7a4c2b6..9d6a36be9738 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetCertificate.json
@@ -1,31 +1,31 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetResourceHealthMetadataBySite.json
index 85faf72f552d..72b8ef56365d 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetResourceHealthMetadataBySite.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetResourceHealthMetadataBySite.json
@@ -1,23 +1,23 @@
{
- "parameters":{
- "api-version":"2016-03-01",
- "name":"newsiteinnewASE-NCUS",
- "slot":"Production",
- "resourceGroupName":"Default-Web-NorthCentralUS",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38",
- "metadataName":"default"
- },
- "responses":{
- "200":{
- "body":{
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
+ "parameters": {
+ "api-version": "2016-03-01",
+ "name": "newsiteinnewASE-NCUS",
+ "slot": "Production",
+ "resourceGroupName": "Default-Web-NorthCentralUS",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38",
+ "metadataName": "default"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListBillingMeters.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListBillingMeters.json
index 2189bce49603..65d868fb6bca 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListBillingMeters.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListBillingMeters.json
@@ -22,4 +22,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificates.json
index daca2ef70a6a..b4d5fde49b7d 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificates.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificates.json
@@ -1,51 +1,51 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
- "name": "testc4912",
- "type": "Microsoft.Web/certificates",
- "location": "West US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert2",
- "hostNames": [
- "ServerCert2"
- ],
- "issuer": "CACert",
- "issueDate": "2015-12-12T23:40:25+00:00",
- "expirationDate": "2040-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
+ "name": "testc4912",
+ "type": "Microsoft.Web/certificates",
+ "location": "West US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert2",
+ "hostNames": [
+ "ServerCert2"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-12-12T23:40:25+00:00",
+ "expirationDate": "2040-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificatesByResourceGroup.json
index 6a13af0f3518..92c01993aa2a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificatesByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificatesByResourceGroup.json
@@ -1,52 +1,52 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
- "name": "testc4912",
- "type": "Microsoft.Web/certificates",
- "location": "West US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert2",
- "hostNames": [
- "ServerCert2"
- ],
- "issuer": "CACert",
- "issueDate": "2015-12-12T23:40:25+00:00",
- "expirationDate": "2040-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
+ "name": "testc4912",
+ "type": "Microsoft.Web/certificates",
+ "location": "West US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert2",
+ "hostNames": [
+ "ServerCert2"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-12-12T23:40:25+00:00",
+ "expirationDate": "2040-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListOperations.json
index 77db300aef66..570138179c3e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListOperations.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListOperations.json
@@ -1,5781 +1,5781 @@
{
- "parameters": {
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "name": "Microsoft.Web/sites/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App",
- "description": "Get the properties of a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Create or Update Web App",
- "description": "Create a new Web App or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Create or Update Web App Slot",
- "description": "Create a new Web App Slot or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Delete Web App",
- "description": "Delete an existing Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Delete Web App Slot",
- "description": "Delete an existing Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/config/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slot Configuration",
- "description": "Get Web App Slot's configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/config/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Configuration",
- "description": "Get Web App configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/config/list/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "List Web App Security Sensitive Settings",
- "description": "List Web App's security sensitive settings, such as publishing credentials, app settings and connection strings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/config/list/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "List Web App Slot Security Sensitive Settings",
- "description": "List Web App Slot's security sensitive settings, such as publishing credentials, app settings and connection strings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/config/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Update Web App Configuration",
- "description": "Update Web App's configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/config/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Update Web App Slot Configuration",
- "description": "Update Web App Slot's configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/sourcecontrols/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Source Control Configuration",
- "description": "Get Web App's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/sourcecontrols/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slot Source Control Configuration",
- "description": "Get Web App Slot's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/sourcecontrols/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Update Web App Source Control Configuration",
- "description": "Update Web App's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/sourcecontrols/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Update Web App Slot Source Control Configuration",
- "description": "Update Web App Slot's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/sourcecontrols/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Delete Web App Source Control Configuration",
- "description": "Delete Web App's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/sourcecontrols/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Delete Web App Slot Source Control Configuration",
- "description": "Delete Web App Slot's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/backup/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Create Web App Backup",
- "description": "Create a new web app backup"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/backup/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Create Web App Slot Backup",
- "description": "Create new Web App Slot backup."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/backups/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Backup",
- "description": "Get the properties of a web app's backup"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/backups/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "List Web App Slot Backups",
- "description": "Get the properties of a web app slots' backup"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/publishxml/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Publishing Profile",
- "description": "Get publishing profile xml for a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/publishxml/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slot Publishing Profile",
- "description": "Get publishing profile xml for Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/publish/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Publish Web App",
- "description": "Publish a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/publish/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Publish Web App Slot",
- "description": "Publish a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/restart/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Restart Web App",
- "description": "Restart a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/restart/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Restart Web App Slot",
- "description": "Restart a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/start/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Start Web App",
- "description": "Start a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/start/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Start Web App Slot",
- "description": "Start a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/stop/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Stop Web App",
- "description": "Stop a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/stop/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Stop Web App Slot",
- "description": "Stop a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slotsswap/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Swap Web App Slots",
- "description": "Swap Web App deployment slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/slotsswap/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Swap Web App Slots",
- "description": "Swap Web App deployment slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slotsdiffs/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Slots Differences",
- "description": "Get differences in configuration between web app and slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/slotsdiffs/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slots Differences",
- "description": "Get differences in configuration between web app and slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/applySlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Apply Web App Configuration",
- "description": "Apply web app slot configuration from target slot to the current web app"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/applySlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Apply Web App Slot Configuration",
- "description": "Apply web app slot configuration from target slot to the current slot."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/resetSlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Reset Web App Configuration",
- "description": "Reset web app configuration"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/resetSlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Reset Web App Slot Configuration",
- "description": "Reset web app slot configuration"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Deployment Slot",
- "description": "Get the properties of a Web App deployment slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Get App Service Plan",
- "description": "Get the properties on an App Service Plan"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Create or Update App Service Plan",
- "description": "Create a new App Service Plan or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Delete App Service Plan",
- "description": "Delete an existing App Service Plan"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/restartSites/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Restart Web Apps",
- "description": "Restart all Web Apps in an App Service Plan"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/certificates/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Certificate",
- "operation": "Get Certificates",
- "description": "Get the list of certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/certificates/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Certificate",
- "operation": "Add or Update Certificate",
- "description": "Add a new certificate or update an existing one."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/certificates/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Certificate",
- "operation": "Delete Certificate",
- "description": "Delete an existing certificate."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/geoRegions/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Geo Region",
- "operation": "Get Geo Regions",
- "description": "Get the list of Geo regions."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/listSitesAssignedToHostName/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Site Name",
- "operation": "Get sites assigned to hostname",
- "description": "Get names of sites assigned to hostname."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Get App Service Environment",
- "description": "Get the properties of an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Create or Update App Service Environment",
- "description": "Create a new App Service Environment or update existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Delete App Service Environment",
- "description": "Delete an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/reboot/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Reboot an App Service Environment",
- "description": "Reboot all machines in an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment FrontEnd Pool",
- "operation": "Get FrontEnd Pool",
- "description": "Get the properties of a FrontEnd Pool in an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment FrontEnd Pool",
- "operation": "Create or Update FrontEnd Pool",
- "description": "Create a new FrontEnd Pool in an App Service Environment or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/workerPools/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment Worker Pool",
- "operation": "Get Worker Pool",
- "description": "Get the properties of a Worker Pool in an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/workerPools/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment Worker Pool",
- "operation": "Create or Update Worker Pool",
- "description": "Create a new Worker Pool in an App Service Environment or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Get Connections",
- "description": "Get the list of Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Add or Update Connection",
- "description": "Creates or updates a Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Delete Connection",
- "description": "Deletes a Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Join/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Join Connection",
- "description": "Joins a Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Get Connection Gateways",
- "description": "Get the list of Connection Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Add or Update Connection Gateways",
- "description": "Creates or updates a Connection Gateway."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Delete Connection Gateway",
- "description": "Deletes a Connection Gateway."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Join/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Join Connection Gateway",
- "description": "Joins a Connection Gateway."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/recommendations/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Recommendation",
- "operation": "Get recommendations",
- "description": "Get the list of recommendations for subscriptions."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/recommendations/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Recommendation",
- "operation": "Get recommendations for web app",
- "description": "Get the list of recommendations for web app."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/availablestacks/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Available Stacks",
- "operation": "Get Available Stacks",
- "description": "Get Available Stacks."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/checknameavailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Check Name Availability",
- "operation": "Get Check Name Availability",
- "description": "Check if resource name is available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/classicmobileservices/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Classic Mobile Services",
- "operation": "Get Classic Mobile Services",
- "description": "Get Classic Mobile Services."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/connections/confirmconsentcode/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Confirm Connections Consent Code",
- "description": "Confirm Connections Consent Code."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/connections/listconsentlinks/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "List Consent Links for Connections",
- "description": "List Consent Links for Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/deploymentlocations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Deployment Locations",
- "operation": "Get Deployment Locations",
- "description": "Get Deployment Locations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/capacities/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Capacities",
- "operation": "Get Hosting Environments Capacities",
- "description": "Get Hosting Environments Capacities."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/diagnostics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Diagnostics",
- "operation": "Get Hosting Environments Diagnostics",
- "description": "Get Hosting Environments Diagnostics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Metric Definitions",
- "operation": "Get Hosting Environments Metric Definitions",
- "description": "Get Hosting Environments Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools Metric Definitions",
- "operation": "Get Hosting Environments MultiRole Pools Metric Definitions",
- "description": "Get Hosting Environments MultiRole Pools Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools Metrics",
- "operation": "Get Hosting Environments MultiRole Pools Metrics",
- "description": "Get Hosting Environments MultiRole Pools Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools SKUs",
- "operation": "Get Hosting Environments MultiRole Pools SKUs",
- "description": "Get Hosting Environments MultiRole Pools SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools Usages",
- "operation": "Get Hosting Environments MultiRole Pools Usages",
- "description": "Get Hosting Environments MultiRole Pools Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Operations",
- "operation": "Get Hosting Environments Operations",
- "description": "Get Hosting Environments Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/resume/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments",
- "operation": "Resume Hosting Environments",
- "description": "Resume Hosting Environments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/serverfarms/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments App Service Plans",
- "operation": "Get Hosting Environments App Service Plans",
- "description": "Get Hosting Environments App Service Plans."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/sites/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Web Apps",
- "operation": "Get Hosting Environments Web Apps",
- "description": "Get Hosting Environments Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/suspend/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments",
- "operation": "Suspend Hosting Environments",
- "description": "Suspend Hosting Environments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Usages",
- "operation": "Get Hosting Environments Usages",
- "description": "Get Hosting Environments Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools Metric Definitions",
- "operation": "Get Hosting Environments Workerpools Metric Definitions",
- "description": "Get Hosting Environments Workerpools Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools Metrics",
- "operation": "Get Hosting Environments Workerpools Metrics",
- "description": "Get Hosting Environments Workerpools Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools SKUs",
- "operation": "Get Hosting Environments Workerpools SKUs",
- "description": "Get Hosting Environments Workerpools SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools Usages",
- "operation": "Get Hosting Environments Workerpools Usages",
- "description": "Get Hosting Environments Workerpools Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/ishostingenvironmentnameavailable/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environment Name",
- "operation": "Check if Hosting Environment Name is available",
- "description": "Get if Hosting Environment Name is available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/ishostnameavailable/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hostname",
- "operation": "Check if Hostname is Available",
- "description": "Check if Hostname is Available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/isusernameavailable/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Username",
- "operation": "Check if Username is available",
- "description": "Check if Username is available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/locations/apioperations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Locations API Operations",
- "operation": "Get Locations API Operations",
- "description": "Get Locations API Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/locations/connectiongatewayinstallations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Locations Connection Gateway Installations",
- "operation": "Get Locations Connection Gateway Installations",
- "description": "Get Locations Connection Gateway Installations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/locations/managedapis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Locations Managed APIs",
- "operation": "Get Locations Managed APIs",
- "description": "Get Locations Managed APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Operations",
- "operation": "Get Operations",
- "description": "Get Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/publishingusers/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Publishing Users",
- "operation": "Get Publishing Users",
- "description": "Get Publishing Users."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/publishingusers/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Publishing Users",
- "operation": "Update Publishing Users",
- "description": "Update Publishing Users."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/capabilities/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Capabilities",
- "operation": "Get App Service Plans Capabilities",
- "description": "Get App Service Plans Capabilities."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/firstpartyapps/settings/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans First Party Apps Settings",
- "operation": "Delete App Service Plans First Party Apps Settings",
- "description": "Delete App Service Plans First Party Apps Settings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/firstpartyapps/settings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans First Party Apps Settings",
- "operation": "Get App Service Plans First Party Apps Settings",
- "description": "Get App Service Plans First Party Apps Settings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/firstpartyapps/settings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans First Party Apps Settings",
- "operation": "Update App Service Plans First Party Apps Settings",
- "description": "Update App Service Plans First Party Apps Settings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/sites/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Namespaces Relays Web Apps",
- "operation": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps",
- "description": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionplanlimits/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Plan Limits",
- "operation": "Get App Service Plans Hybrid Connection Plan Limits",
- "description": "Get App Service Plans Hybrid Connection Plan Limits."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionrelays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Relays",
- "operation": "Get App Service Plans Hybrid Connection Relays",
- "description": "Get App Service Plans Hybrid Connection Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Metric Definitions",
- "operation": "Get App Service Plans Metric Definitions",
- "description": "Get App Service Plans Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Metrics",
- "operation": "Get App Service Plans Metrics",
- "description": "Get App Service Plans Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/operationresults/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Operation Results",
- "operation": "Get App Service Plans Operation Results",
- "description": "Get App Service Plans Operation Results."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/sites/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Web Apps",
- "operation": "Get App Service Plans Web Apps",
- "description": "Get App Service Plans Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans SKUs",
- "operation": "Get App Service Plans SKUs",
- "description": "Get App Service Plans SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Usages",
- "operation": "Get App Service Plans Usages",
- "description": "Get App Service Plans Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/gateways/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Gateways",
- "operation": "Update App Service Plans Virtual Network Connections Gateways",
- "description": "Update App Service Plans Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections",
- "operation": "Get App Service Plans Virtual Network Connections",
- "description": "Get App Service Plans Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Routes",
- "operation": "Delete App Service Plans Virtual Network Connections Routes",
- "description": "Delete App Service Plans Virtual Network Connections Routes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Routes",
- "operation": "Get App Service Plans Virtual Network Connections Routes",
- "description": "Get App Service Plans Virtual Network Connections Routes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Routes",
- "operation": "Update App Service Plans Virtual Network Connections Routes",
- "description": "Update App Service Plans Virtual Network Connections Routes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/workers/reboot/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Workers",
- "operation": "Reboot App Service Plans Workers",
- "description": "Reboot App Service Plans Workers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/analyzecustomhostname/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Custom Hostname",
- "operation": "Analyze Custom Hostname",
- "description": "Analyze Custom Hostname."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backup/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backup",
- "operation": "Get Web Apps Backup",
- "description": "Get Web Apps Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backup/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backup",
- "operation": "Update Web Apps Backup",
- "description": "Update Web Apps Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backups/list/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backups",
- "operation": "List Web Apps Backups",
- "description": "List Web Apps Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backups/restore/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backups",
- "operation": "Restore Web Apps Backups",
- "description": "Restore Web Apps Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/config/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Config",
- "operation": "Delete Web Apps Config",
- "description": "Delete Web Apps Config."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Delete Web Apps Continuous Web Jobs",
- "description": "Delete Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Get Web Apps Continuous Web Jobs",
- "description": "Get Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/start/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Start Web Apps Continuous Web Jobs",
- "description": "Start Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/stop/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Stop Web Apps Continuous Web Jobs",
- "description": "Stop Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments",
- "operation": "Delete Web Apps Deployments",
- "description": "Delete Web Apps Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/log/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments Log",
- "operation": "Get Web Apps Deployments Log",
- "description": "Get Web Apps Deployments Log."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments",
- "operation": "Get Web Apps Deployments",
- "description": "Get Web Apps Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments",
- "operation": "Update Web Apps Deployments",
- "description": "Update Web Apps Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/frebanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics FREB Analysis",
- "operation": "Get Web Apps Diagnostics FREB Analysis",
- "description": "Get Web Apps Diagnostics FREB Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/frebanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics FREB Analysis",
- "operation": "Get Web Apps Slots Diagnostics FREB Analysis",
- "description": "Get Web Apps Slots Diagnostics FREB Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Category",
- "operation": "Get Web Apps Diagnostics Category",
- "description": "Get Web Apps Diagnostics Categories."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/runtimeavailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Runtime Availability",
- "operation": "Get Web Apps Diagnostics Runtime Availability",
- "description": "Get Web Apps Diagnostics Runtime Availability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/servicehealth/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Service Health",
- "operation": "Get Web Apps Diagnostics Service Health",
- "description": "Get Web Apps Diagnostics Service Health."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/workeravailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Workeravailability",
- "operation": "Get Web Apps Diagnostics Workeravailability",
- "description": "Get Web Apps Diagnostics Workeravailability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/workeravailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Workeravailability",
- "operation": "Get Web Apps Slots Diagnostics Workeravailability",
- "description": "Get Web Apps Slots Diagnostics Workeravailability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/workerprocessrecycle/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Worker Process Recycle",
- "operation": "Get Web Apps Diagnostics Worker Process Recycle",
- "description": "Get Web Apps Diagnostics Worker Process Recycle."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/workerprocessrecycle/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Worker Process Recycle",
- "operation": "Get Web Apps Slots Diagnostics Worker Process Recycle",
- "description": "Get Web Apps Slots Diagnostics Worker Process Recycle."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/aspnetcore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics ASP.NET Core",
- "operation": "Get Web Apps Diagnostics ASP.NET Core",
- "description": "Get Web Apps Diagnostics for ASP.NET Core app."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/aspnetcore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics ASP.NET Core",
- "operation": "Get Web Apps Slots Diagnostics ASP.NET Core",
- "description": "Get Web Apps Slots Diagnostics for ASP.NET Core app."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/domainownershipidentifiers/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Domain Ownership Identifiers",
- "operation": "Get Web Apps Domain Ownership Identifiers",
- "description": "Get Web Apps Domain Ownership Identifiers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/domainownershipidentifiers/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Domain Ownership Identifiers",
- "operation": "Update Web Apps Domain Ownership Identifiers",
- "description": "Update Web Apps Domain Ownership Identifiers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Functions Web Apps",
- "description": "Functions Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "Delete Web Apps Functions",
- "description": "Delete Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/listsecrets/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "List Secrets Web Apps Functions",
- "description": "List Secrets Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "Get Web Apps Functions",
- "description": "Get Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "Update Web Apps Functions",
- "description": "Update Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hostnamebindings/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hostname Bindings",
- "operation": "Delete Web Apps Hostname Bindings",
- "description": "Delete Web Apps Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hostnamebindings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hostname Bindings",
- "operation": "Get Web Apps Hostname Bindings",
- "description": "Get Web Apps Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hostnamebindings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hostname Bindings",
- "operation": "Update Web Apps Hostname Bindings",
- "description": "Update Web Apps Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnection/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection",
- "operation": "Delete Web Apps Hybrid Connection",
- "description": "Delete Web Apps Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnection/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection",
- "operation": "Get Web Apps Hybrid Connection",
- "description": "Get Web Apps Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnection/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection",
- "operation": "Update Web Apps Hybrid Connection",
- "description": "Update Web Apps Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionrelays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Relays",
- "operation": "Get Web Apps Hybrid Connection Relays",
- "description": "Get Web Apps Hybrid Connection Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Deployments",
- "operation": "Get Web Apps Instances Deployments",
- "description": "Get Web Apps Instances Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/processes/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Processes",
- "operation": "Delete Web Apps Instances Processes",
- "description": "Delete Web Apps Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/processes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Processes",
- "operation": "Get Web Apps Instances Processes",
- "description": "Get Web Apps Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances",
- "operation": "Get Web Apps Instances",
- "description": "Get Web Apps Instances."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/listsyncfunctiontriggerstatus/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "List Sync Function Trigger Status Web Apps",
- "description": "List Sync Function Trigger Status Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Metric Definitions",
- "operation": "Get Web Apps Metric Definitions",
- "description": "Get Web Apps Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Metrics",
- "operation": "Get Web Apps Metrics",
- "description": "Get Web Apps Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/networktrace/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Network Trace Web Apps",
- "description": "Network Trace Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/newpassword/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Newpassword Web Apps",
- "description": "Newpassword Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/operationresults/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Operation Results",
- "operation": "Get Web Apps Operation Results",
- "description": "Get Web Apps Operation Results."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/perfcounters/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Performance Counters",
- "operation": "Get Web Apps Performance Counters",
- "description": "Get Web Apps Performance Counters."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/premieraddons/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Premier Addons",
- "operation": "Delete Web Apps Premier Addons",
- "description": "Delete Web Apps Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/premieraddons/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Premier Addons",
- "operation": "Get Web Apps Premier Addons",
- "description": "Get Web Apps Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/premieraddons/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Premier Addons",
- "operation": "Update Web Apps Premier Addons",
- "description": "Update Web Apps Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publishxml/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Publishing XML",
- "operation": "Get Web Apps Publishing XML",
- "description": "Get Web Apps Publishing XML."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/recommendationhistory/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Recommendation History",
- "operation": "Get Web Apps Recommendation History",
- "description": "Get Web Apps Recommendation History."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/recommendations/disable/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Recommendations",
- "operation": "Disable Web Apps Recommendations",
- "description": "Disable Web Apps Recommendations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/restore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Restore",
- "operation": "Get Web Apps Restore",
- "description": "Get Web Apps Restore."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/analyzecustomhostname/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Analyze Custom Hostname",
- "operation": "Get Web Apps Slots Analyze Custom Hostname",
- "description": "Get Web Apps Slots Analyze Custom Hostname."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backup/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backup",
- "operation": "Update Web Apps Slots Backup",
- "description": "Update Web Apps Slots Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backups/list/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backups",
- "operation": "List Web Apps Slots Backups",
- "description": "List Web Apps Slots Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backups/restore/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backups",
- "operation": "Restore Web Apps Slots Backups",
- "description": "Restore Web Apps Slots Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/config/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Config",
- "operation": "Delete Web Apps Slots Config",
- "description": "Delete Web Apps Slots Config."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Delete Web Apps Slots Continuous Web Jobs",
- "description": "Delete Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Get Web Apps Slots Continuous Web Jobs",
- "description": "Get Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/start/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Start Web Apps Slots Continuous Web Jobs",
- "description": "Start Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/stop/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Stop Web Apps Slots Continuous Web Jobs",
- "description": "Stop Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments",
- "operation": "Delete Web Apps Slots Deployments",
- "description": "Delete Web Apps Slots Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/log/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments Log",
- "operation": "Get Web Apps Slots Deployments Log",
- "description": "Get Web Apps Slots Deployments Log."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments",
- "operation": "Get Web Apps Slots Deployments",
- "description": "Get Web Apps Slots Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments",
- "operation": "Update Web Apps Slots Deployments",
- "description": "Update Web Apps Slots Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hostnamebindings/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hostname Bindings",
- "operation": "Delete Web Apps Slots Hostname Bindings",
- "description": "Delete Web Apps Slots Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hostnamebindings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hostname Bindings",
- "operation": "Get Web Apps Slots Hostname Bindings",
- "description": "Get Web Apps Slots Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hostnamebindings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hostname Bindings",
- "operation": "Update Web Apps Slots Hostname Bindings",
- "description": "Update Web Apps Slots Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnection/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection",
- "operation": "Delete Web Apps Slots Hybrid Connection",
- "description": "Delete Web Apps Slots Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnection/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection",
- "operation": "Get Web Apps Slots Hybrid Connection",
- "description": "Get Web Apps Slots Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnection/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection",
- "operation": "Update Web Apps Slots Hybrid Connection",
- "description": "Update Web Apps Slots Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances Deployments",
- "operation": "Get Web Apps Slots Instances Deployments",
- "description": "Get Web Apps Slots Instances Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/processes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances Processes",
- "operation": "Get Web Apps Slots Instances Processes",
- "description": "Get Web Apps Slots Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances",
- "operation": "Get Web Apps Slots Instances",
- "description": "Get Web Apps Slots Instances."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Metric Definitions",
- "operation": "Get Web Apps Slots Metric Definitions",
- "description": "Get Web Apps Slots Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Metrics",
- "operation": "Get Web Apps Slots Metrics",
- "description": "Get Web Apps Slots Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/newpassword/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Newpassword Web Apps Slots",
- "description": "Newpassword Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/operationresults/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Operation Results",
- "operation": "Get Web Apps Slots Operation Results",
- "description": "Get Web Apps Slots Operation Results."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/phplogging/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Phplogging",
- "operation": "Get Web Apps Slots Phplogging",
- "description": "Get Web Apps Slots Phplogging."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/premieraddons/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Premier Addons",
- "operation": "Delete Web Apps Slots Premier Addons",
- "description": "Delete Web Apps Slots Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/premieraddons/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Premier Addons",
- "operation": "Get Web Apps Slots Premier Addons",
- "description": "Get Web Apps Slots Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/premieraddons/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Premier Addons",
- "operation": "Update Web Apps Slots Premier Addons",
- "description": "Update Web Apps Slots Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/restore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Restore",
- "operation": "Get Web Apps Slots Restore",
- "description": "Get Web Apps Slots Restore."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/sync/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Sync Web Apps Slots",
- "description": "Sync Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/triggeredwebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Triggered WebJobs",
- "operation": "Delete Web Apps Slots Triggered WebJobs",
- "description": "Delete Web Apps Slots Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/triggeredwebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Triggered WebJobs",
- "operation": "Get Web Apps Slots Triggered WebJobs",
- "description": "Get Web Apps Slots Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/triggeredwebjobs/run/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Triggered WebJobs",
- "operation": "Run Web Apps Slots Triggered WebJobs",
- "description": "Run Web Apps Slots Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Usages",
- "operation": "Get Web Apps Slots Usages",
- "description": "Get Web Apps Slots Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections",
- "operation": "Delete Web Apps Slots Virtual Network Connections",
- "description": "Delete Web Apps Slots Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/gateways/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections Gateways",
- "operation": "Update Web Apps Slots Virtual Network Connections Gateways",
- "description": "Update Web Apps Slots Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections",
- "operation": "Get Web Apps Slots Virtual Network Connections",
- "description": "Get Web Apps Slots Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections",
- "operation": "Update Web Apps Slots Virtual Network Connections",
- "description": "Update Web Apps Slots Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/webjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots WebJobs",
- "operation": "Get Web Apps Slots WebJobs",
- "description": "Get Web Apps Slots WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/snapshots/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Snapshots",
- "operation": "Get Web Apps Snapshots",
- "description": "Get Web Apps Snapshots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/sync/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Sync Web Apps",
- "description": "Sync Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs",
- "operation": "Delete Web Apps Triggered WebJobs",
- "description": "Delete Web Apps Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs",
- "operation": "Get Web Apps Triggered WebJobs",
- "description": "Get Web Apps Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/run/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs",
- "operation": "Run Web Apps Triggered WebJobs",
- "description": "Run Web Apps Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Usages",
- "operation": "Get Web Apps Usages",
- "description": "Get Web Apps Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections",
- "operation": "Delete Web Apps Virtual Network Connections",
- "description": "Delete Web Apps Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/gateways/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections Gateways",
- "operation": "Get Web Apps Virtual Network Connections Gateways",
- "description": "Get Web Apps Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/gateways/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections Gateways",
- "operation": "Update Web Apps Virtual Network Connections Gateways",
- "description": "Update Web Apps Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections",
- "operation": "Get Web Apps Virtual Network Connections",
- "description": "Get Web Apps Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections",
- "operation": "Update Web Apps Virtual Network Connections",
- "description": "Update Web Apps Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/webjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps WebJobs",
- "operation": "Get Web Apps WebJobs",
- "description": "Get Web Apps WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "SKUs",
- "operation": "Get SKUs",
- "description": "Get SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sourcecontrols/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Source Controls",
- "operation": "Get Source Controls",
- "description": "Get Source Controls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sourcecontrols/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Source Controls",
- "operation": "Update Source Controls",
- "description": "Update Source Controls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/unregister/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Microsoft.Web resource provider",
- "operation": "Unregister Microsoft.Web resource provider",
- "description": "Unregister Microsoft.Web resource provider for the subscription."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/validate/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "",
- "operation": "Validate ",
- "description": "Validate ."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/register/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Microsoft.Web resource provider",
- "operation": "Register Microsoft.Web resource provider",
- "description": "Register Microsoft.Web resource provider for the subscription."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Namespaces Relays",
- "operation": "Get App Service Plans Hybrid Connection Namespaces Relays",
- "description": "Get App Service Plans Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backups/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backups",
- "operation": "Delete Web Apps Backups",
- "description": "Delete Web Apps Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "Delete Web Apps Hybrid Connection Namespaces Relays",
- "description": "Delete Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/listkeys/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "List Keys Web Apps Hybrid Connection Namespaces Relays",
- "description": "List Keys Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "Update Web Apps Hybrid Connection Namespaces Relays",
- "description": "Update Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/metricsdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Metrics Definitions",
- "operation": "Get Web Apps Metrics Definitions",
- "description": "Get Web Apps Metrics Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/migratemysql/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Migrate MySql Web Apps",
- "description": "Migrate MySql Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/migratemysql/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Migrate MySql",
- "operation": "Get Web Apps Migrate MySql",
- "description": "Get Web Apps Migrate MySql."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/recover/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Recover Web Apps",
- "description": "Recover Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/siteextensions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Site Extensions",
- "operation": "Delete Web Apps Site Extensions",
- "description": "Delete Web Apps Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/siteextensions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Site Extensions",
- "operation": "Get Web Apps Site Extensions",
- "description": "Get Web Apps Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/siteextensions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Site Extensions",
- "operation": "Update Web Apps Site Extensions",
- "description": "Update Web Apps Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backup/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backup",
- "operation": "Get Web Apps Slots Backup",
- "description": "Get Web Apps Slots Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnectionrelays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection Relays",
- "operation": "Get Web Apps Slots Hybrid Connection Relays",
- "description": "Get Web Apps Slots Hybrid Connection Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/siteextensions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Site Extensions",
- "operation": "Delete Web Apps Slots Site Extensions",
- "description": "Delete Web Apps Slots Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/siteextensions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Site Extensions",
- "operation": "Get Web Apps Slots Site Extensions",
- "description": "Get Web Apps Slots Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/siteextensions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Site Extensions",
- "operation": "Update Web Apps Slots Site Extensions",
- "description": "Update Web Apps Slots Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/snapshots/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Snapshots",
- "operation": "Get Web Apps Slots Snapshots",
- "description": "Get Web Apps Slots Snapshots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/syncfunctiontriggers/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Sync Function Triggers for Web Apps",
- "description": "Sync Function Triggers for Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/history/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs History",
- "operation": "Get Web Apps Triggered WebJobs History",
- "description": "Get Web Apps Triggered WebJobs History."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/connectiongateways/liststatus/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "List Status Connection Gateways",
- "description": "List Status Connection Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Namespaces Relays",
- "operation": "Delete App Service Plans Hybrid Connection Namespaces Relays",
- "description": "Delete App Service Plans Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/deployment/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Deployment",
- "operation": "Get Web Apps Diagnostics Deployment",
- "description": "Get Web Apps Diagnostics Deployment."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitecpuanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site CPU Analysis",
- "operation": "Get Web Apps Diagnostics Site CPU Analysis",
- "description": "Get Web Apps Diagnostics Site CPU Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitelatency/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Latency",
- "operation": "Get Web Apps Diagnostics Site Latency",
- "description": "Get Web Apps Diagnostics Site Latency."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitememoryanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Memory Analysis",
- "operation": "Get Web Apps Diagnostics Site Memory Analysis",
- "description": "Get Web Apps Diagnostics Site Memory Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/threadcount/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Thread Count",
- "operation": "Get Web Apps Diagnostics Thread Count",
- "description": "Get Web Apps Diagnostics Thread Count."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/deployment/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Deployment",
- "operation": "Get Web Apps Slots Diagnostics Deployment",
- "description": "Get Web Apps Slots Diagnostics Deployment."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitecpuanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site CPU Analysis",
- "operation": "Get Web Apps Slots Diagnostics Site CPU Analysis",
- "description": "Get Web Apps Slots Diagnostics Site CPU Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Latency",
- "operation": "Get Web Apps Slots Diagnostics Site Latency",
- "description": "Get Web Apps Slots Diagnostics Site Latency."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitememoryanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Memory Analysis",
- "operation": "Get Web Apps Slots Diagnostics Site Memory Analysis",
- "description": "Get Web Apps Slots Diagnostics Site Memory Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/threadcount/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Thread Count",
- "operation": "Get Web Apps Slots Diagnostics Thread Count",
- "description": "Get Web Apps Slots Diagnostics Thread Count."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/masterkey/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions Masterkey",
- "operation": "Get Web Apps Functions Masterkey",
- "description": "Get Web Apps Functions Masterkey."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "Get Web Apps Hybrid Connection Namespaces Relays",
- "description": "Get Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/extensions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Extensions",
- "operation": "Get Web Apps Instances Extensions",
- "description": "Get Web Apps Instances Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Operations",
- "operation": "Get Web Apps Operations",
- "description": "Get Web Apps Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/resourcehealthmetadata/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Resource Health Metadata",
- "operation": "Get Web Apps Resource Health Metadata",
- "description": "Get Web Apps Resource Health Metadata."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backups/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backups",
- "operation": "Delete Web Apps Slots Backups",
- "description": "Delete Web Apps Slots Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/domainownershipidentifiers/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Domain Ownership Identifiers",
- "operation": "Get Web Apps Slots Domain Ownership Identifiers",
- "description": "Get Web Apps Slots Domain Ownership Identifiers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
- "operation": "Delete Web Apps Slots Hybrid Connection Namespaces Relays",
- "description": "Delete Web Apps Slots Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
- "operation": "Update Web Apps Slots Hybrid Connection Namespaces Relays",
- "description": "Update Web Apps Slots Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Operations",
- "operation": "Get Web Apps Slots Operations",
- "description": "Get Web Apps Slots Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/perfcounters/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Performance Counters",
- "operation": "Get Web Apps Slots Performance Counters",
- "description": "Get Web Apps Slots Performance Counters."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/resourcehealthmetadata/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Resource Health Metadata",
- "operation": "Get Web Apps Slots Resource Health Metadata",
- "description": "Get Web Apps Slots Resource Health Metadata."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apiacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts Apiacls",
- "operation": "Get Api Management Accounts Apiacls",
- "description": "Get Api Management Accounts Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Get Api Management Accounts APIs Connections",
- "description": "Get Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs",
- "operation": "Get Api Management Accounts APIs",
- "description": "Get Api Management Accounts APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/connectionacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts Connectionacls",
- "operation": "Get Api Management Accounts Connectionacls",
- "description": "Get Api Management Accounts Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/apiacls/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Apiacls",
- "operation": "Delete Api Management Accounts APIs Apiacls",
- "description": "Delete Api Management Accounts APIs Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/apiacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Apiacls",
- "operation": "Get Api Management Accounts APIs Apiacls",
- "description": "Get Api Management Accounts APIs Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/apiacls/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Apiacls",
- "operation": "Update Api Management Accounts APIs Apiacls",
- "description": "Update Api Management Accounts APIs Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connectionacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connectionacls",
- "operation": "Get Api Management Accounts APIs Connectionacls",
- "description": "Get Api Management Accounts APIs Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/confirmconsentcode/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Confirm Consent Code Api Management Accounts APIs Connections",
- "description": "Confirm Consent Code Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections Connectionacls",
- "operation": "Delete Api Management Accounts APIs Connections Connectionacls",
- "description": "Delete Api Management Accounts APIs Connections Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections Connectionacls",
- "operation": "Get Api Management Accounts APIs Connections Connectionacls",
- "description": "Get Api Management Accounts APIs Connections Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections Connectionacls",
- "operation": "Update Api Management Accounts APIs Connections Connectionacls",
- "description": "Update Api Management Accounts APIs Connections Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Delete Api Management Accounts APIs Connections",
- "description": "Delete Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/getconsentlinks/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Get Consent Links for Api Management Accounts APIs Connections",
- "description": "Get Consent Links for Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Update Api Management Accounts APIs Connections",
- "description": "Update Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs",
- "operation": "Delete Api Management Accounts APIs",
- "description": "Delete Api Management Accounts APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Localized Definitions",
- "operation": "Delete Api Management Accounts APIs Localized Definitions",
- "description": "Delete Api Management Accounts APIs Localized Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Localized Definitions",
- "operation": "Get Api Management Accounts APIs Localized Definitions",
- "description": "Get Api Management Accounts APIs Localized Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Localized Definitions",
- "operation": "Update Api Management Accounts APIs Localized Definitions",
- "description": "Update Api Management Accounts APIs Localized Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs",
- "operation": "Update Api Management Accounts APIs",
- "description": "Update Api Management Accounts APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/listconnectionkeys/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "List Connection Keys Api Management Accounts APIs Connections",
- "description": "List Connection Keys Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/listsecrets/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "List Secrets Api Management Accounts APIs Connections",
- "description": "List Secrets Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Deployments",
- "operation": "Get Web Apps Diagnostics Deployments",
- "description": "Get Web Apps Diagnostics Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Deployments",
- "operation": "Get Web Apps Slots Diagnostics Deployments",
- "description": "Get Web Apps Slots Diagnostics Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/loganalyzer/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Log Analyzer",
- "operation": "Get Web Apps Diagnostics Log Analyzer",
- "description": "Get Web Apps Diagnostics Log Analyzer."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/loganalyzer/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Log Analyzer",
- "operation": "Get Web Apps Slots Diagnostics Log Analyzer",
- "description": "Get Web Apps Slots Diagnostics Log Analyzer."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitecrashes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Crashes",
- "operation": "Get Web Apps Diagnostics Site Crashes",
- "description": "Get Web Apps Diagnostics Site Crashes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitecrashes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Crashes",
- "operation": "Get Web Apps Slots Diagnostics Site Crashes",
- "description": "Get Web Apps Slots Diagnostics Site Crashes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/siterestartsettingupdate/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Restart Setting Update",
- "operation": "Get Web Apps Diagnostics Site Restart Setting Update",
- "description": "Get Web Apps Diagnostics Site Restart Setting Update."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/siterestartsettingupdate/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Restart Setting Update",
- "operation": "Get Web Apps Slots Diagnostics Site Restart Setting Update",
- "description": "Get Web Apps Slots Diagnostics Site Restart Setting Update."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/siterestartuserinitiated/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Restart User Initiated",
- "operation": "Get Web Apps Diagnostics Site Restart User Initiated",
- "description": "Get Web Apps Diagnostics Site Restart User Initiated."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/siterestartuserinitiated/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Restart User Initiated",
- "operation": "Get Web Apps Slots Diagnostics Site Restart User Initiated",
- "description": "Get Web Apps Slots Diagnostics Site Restart User Initiated."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/siteswap/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Swap",
- "operation": "Get Web Apps Diagnostics Site Swap",
- "description": "Get Web Apps Diagnostics Site Swap."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/siteswap/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Swap",
- "operation": "Get Web Apps Slots Diagnostics Site Swap",
- "description": "Get Web Apps Slots Diagnostics Site Swap."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/token/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions Token",
- "operation": "Get Web Apps Functions Token",
- "description": "Get Web Apps Functions Token."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/deployments/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Deployments",
- "operation": "Delete Web Apps Instances Deployments",
- "description": "Delete Web Apps Instances Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/processes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Processes",
- "operation": "Get Web Apps Processes",
- "description": "Get Web Apps Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publiccertificates/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Public Certificates",
- "operation": "Delete Web Apps Public Certificates",
- "description": "Delete Web Apps Public Certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publiccertificates/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Public Certificates",
- "operation": "Get Web Apps Public Certificates",
- "description": "Get Web Apps Public Certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publiccertificates/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Public Certificates",
- "operation": "Update Web Apps Public Certificates",
- "description": "Update Web Apps Public Certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/networktrace/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Network Trace Web Apps Slots",
- "description": "Network Trace Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/autoheal/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Autoheal",
- "operation": "Get Web Apps Diagnostics Autoheal",
- "description": "Get Web Apps Diagnostics Autoheal."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/autoheal/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Autoheal",
- "operation": "Get Web Apps Slots Diagnostics Autoheal",
- "description": "Get Web Apps Slots Diagnostics Autoheal."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics",
- "operation": "Get Web Apps Slots Diagnostics",
- "description": "Get Web Apps Slots Diagnostics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/runtimeavailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Runtime Availability",
- "operation": "Get Web Apps Slots Diagnostics Runtime Availability",
- "description": "Get Web Apps Slots Diagnostics Runtime Availability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/servicehealth/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Service Health",
- "operation": "Get Web Apps Slots Diagnostics Service Health",
- "description": "Get Web Apps Slots Diagnostics Service Health."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Latency",
- "operation": "Get Web Apps Slots Diagnostics Site Latency",
- "description": "Get Web Apps Slots Diagnostics Site Latency."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/migratemysql/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Migrate MySql",
- "operation": "Get Web Apps Slots Migrate MySql",
- "description": "Get Web Apps Slots Migrate MySql."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App slot",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App slot",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service plan",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service plan",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service Environment",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service Environment",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/billingmeters/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Billing meters for Microsoft Web Apps",
- "operation": "Read billing meters",
- "description": "Get list of billing meters."
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/processes/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances Processes",
- "operation": "Delete Web Apps Slots Instances Processes",
- "description": "Delete Web Apps Slots Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/restore/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Restore Web Apps",
- "description": "Restore Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/extensions/log/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Extensions Log",
- "operation": "Get Web Apps Instances Extensions Log",
- "description": "Get Web Apps Instances Extensions Log."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/customapis/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Custom APIs",
- "operation": "Update Custom APIs",
- "description": "Update Custom APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/customapis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Custom APIs",
- "operation": "Get Custom APIs",
- "description": "Get Custom APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/failedrequestsperuri/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Failed Requests Per Uri",
- "operation": "Get Web Apps Diagnostics Failed Requests Per Uri",
- "description": "Get Web Apps Diagnostics Failed Requests Per Uri."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/restore/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Restore Web Apps Slots",
- "description": "Restore Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/detectors/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Detector",
- "operation": "Get Web Apps Diagnostics Detector",
- "description": "Get Web Apps Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/analyses/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Analysis",
- "operation": "Get Web Apps Diagnostics Analysis",
- "description": "Get Web Apps Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/analyses/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Analysis",
- "operation": "Get Web Apps Slots Diagnostics Analysis",
- "description": "Get Web Apps Slots Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/detectors/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Detector",
- "operation": "Get Web Apps Slots Diagnostics Detector",
- "description": "Get Web Apps Slots Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/analyses/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Analysis",
- "operation": "Run Web Apps Diagnostics Analysis",
- "description": "Run Web Apps Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/detectors/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Detector",
- "operation": "Run Web Apps Diagnostics Detector",
- "description": "Run Web Apps Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/analyses/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Analysis",
- "operation": "Run Web Apps Slots Diagnostics Analysis",
- "description": "Run Web Apps Slots Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/detectors/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Detector",
- "operation": "Run Web Apps Slots Diagnostics Detector",
- "description": "Run Web Apps Slots Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of App Service Plan",
- "operation": "Read App Service Plan metric definitions",
- "description": "Gets the available metrics for App Service Plan"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "CpuPercentage",
- "displayName": "CPU Percentage",
- "displayDescription": "CPU Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryPercentage",
- "displayName": "Memory Percentage",
- "displayDescription": "Memory Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "DiskQueueLength",
- "displayName": "Disk Queue Length",
- "displayDescription": "Disk Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "HttpQueueLength",
- "displayName": "Http Queue Length",
- "displayDescription": "Http Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/sites/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of Web App",
- "operation": "Read Web App metric definitions",
- "description": "Gets the available metrics for Web App"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "CpuTime",
- "displayName": "CPU Time",
- "displayDescription": "CPU Time",
- "unit": "Seconds",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Requests",
- "displayName": "Requests",
- "displayDescription": "Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http101",
- "displayName": "Http 101",
- "displayDescription": "Http 101",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http2xx",
- "displayName": "Http 2xx",
- "displayDescription": "Http 2xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http3xx",
- "displayName": "Http 3xx",
- "displayDescription": "Http 3xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http401",
- "displayName": "Http 401",
- "displayDescription": "Http 401",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http403",
- "displayName": "Http 403",
- "displayDescription": "Http 403",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http404",
- "displayName": "Http 404",
- "displayDescription": "Http 404",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http406",
- "displayName": "Http 406",
- "displayDescription": "Http 406",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http4xx",
- "displayName": "Http 4xx",
- "displayDescription": "Http 4xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http5xx",
- "displayName": "Http Server Errors",
- "displayDescription": "Http Server Errors",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryWorkingSet",
- "displayName": "Memory working set",
- "displayDescription": "Memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageMemoryWorkingSet",
- "displayName": "Average memory working set",
- "displayDescription": "Average memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageResponseTime",
- "displayName": "Average Response Time",
- "displayDescription": "Average Response Time",
- "unit": "Seconds",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionUnits",
- "displayName": "Function Execution Units",
- "displayDescription": "Function Execution Units",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionCount",
- "displayName": "Function Execution Count",
- "displayDescription": "Function Execution Count",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/sites/slots/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of Web App Slot",
- "operation": "Read Web App Slot metric definitions",
- "description": "Gets the available metrics for Web App Slot"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "CpuTime",
- "displayName": "CPU Time",
- "displayDescription": "CPU Time",
- "unit": "Seconds",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Requests",
- "displayName": "Requests",
- "displayDescription": "Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http101",
- "displayName": "Http 101",
- "displayDescription": "Http 101",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http2xx",
- "displayName": "Http 2xx",
- "displayDescription": "Http 2xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http3xx",
- "displayName": "Http 3xx",
- "displayDescription": "Http 3xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http401",
- "displayName": "Http 401",
- "displayDescription": "Http 401",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http403",
- "displayName": "Http 403",
- "displayDescription": "Http 403",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http404",
- "displayName": "Http 404",
- "displayDescription": "Http 404",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http406",
- "displayName": "Http 406",
- "displayDescription": "Http 406",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http4xx",
- "displayName": "Http 4xx",
- "displayDescription": "Http 4xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http5xx",
- "displayName": "Http Server Errors",
- "displayDescription": "Http Server Errors",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryWorkingSet",
- "displayName": "Memory working set",
- "displayDescription": "Memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageMemoryWorkingSet",
- "displayName": "Average memory working set",
- "displayDescription": "Average memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageResponseTime",
- "displayName": "Average Response Time",
- "displayDescription": "Average Response Time",
- "unit": "Seconds",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionUnits",
- "displayName": "Function Execution Units",
- "displayDescription": "Function Execution Units",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionCount",
- "displayName": "Function Execution Count",
- "displayDescription": "Function Execution Count",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/multiRolePools/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of App Service Environment MultiRole",
- "operation": "Read App Service Environment MultiRole metric definitions",
- "description": "Gets the available metrics for App Service Environment MultiRole"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "Requests",
- "displayName": "Requests",
- "displayDescription": "Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http101",
- "displayName": "Http 101",
- "displayDescription": "Http 101",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http2xx",
- "displayName": "Http 2xx",
- "displayDescription": "Http 2xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http3xx",
- "displayName": "Http 3xx",
- "displayDescription": "Http 3xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http401",
- "displayName": "Http 401",
- "displayDescription": "Http 401",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http403",
- "displayName": "Http 403",
- "displayDescription": "Http 403",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http404",
- "displayName": "Http 404",
- "displayDescription": "Http 404",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http406",
- "displayName": "Http 406",
- "displayDescription": "Http 406",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http4xx",
- "displayName": "Http 4xx",
- "displayDescription": "Http 4xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http5xx",
- "displayName": "Http Server Errors",
- "displayDescription": "Http Server Errors",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageResponseTime",
- "displayName": "Average Response Time",
- "displayDescription": "Average Response Time",
- "unit": "Seconds",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "CpuPercentage",
- "displayName": "CPU Percentage",
- "displayDescription": "CPU Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryPercentage",
- "displayName": "Memory Percentage",
- "displayDescription": "Memory Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "DiskQueueLength",
- "displayName": "Disk Queue Length",
- "displayDescription": "Disk Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "HttpQueueLength",
- "displayName": "Http Queue Length",
- "displayDescription": "Http Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "ActiveRequests",
- "displayName": "Active Requests",
- "displayDescription": "Active Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "TotalFrontEnds",
- "displayName": "Total Front Ends",
- "displayDescription": "Total Front Ends",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "SmallAppServicePlanInstances",
- "displayName": "Small App Service Plan Workers",
- "displayDescription": "Small App Service Plan Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MediumAppServicePlanInstances",
- "displayName": "Medium App Service Plan Workers",
- "displayDescription": "Medium App Service Plan Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "LargeAppServicePlanInstances",
- "displayName": "Large App Service Plan Workers",
- "displayDescription": "Large App Service Plan Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/workerPools/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of App Service Environment WorkerPool",
- "operation": "Read App Service Environment WorkerPool metric definitions",
- "description": "Gets the available metrics for App Service Environment WorkerPool"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "WorkersTotal",
- "displayName": "Total Workers",
- "displayDescription": "Total Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "WorkersAvailable",
- "displayName": "Available Workers",
- "displayDescription": "Available Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "WorkersUsed",
- "displayName": "Used Workers",
- "displayDescription": "Used Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
+ "parameters": {
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "name": "Microsoft.Web/sites/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App",
+ "description": "Get the properties of a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Create or Update Web App",
+ "description": "Create a new Web App or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Create or Update Web App Slot",
+ "description": "Create a new Web App Slot or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Delete Web App",
+ "description": "Delete an existing Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Delete Web App Slot",
+ "description": "Delete an existing Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/config/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slot Configuration",
+ "description": "Get Web App Slot's configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/config/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Configuration",
+ "description": "Get Web App configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/config/list/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "List Web App Security Sensitive Settings",
+ "description": "List Web App's security sensitive settings, such as publishing credentials, app settings and connection strings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/config/list/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "List Web App Slot Security Sensitive Settings",
+ "description": "List Web App Slot's security sensitive settings, such as publishing credentials, app settings and connection strings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/config/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Update Web App Configuration",
+ "description": "Update Web App's configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/config/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Update Web App Slot Configuration",
+ "description": "Update Web App Slot's configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/sourcecontrols/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Source Control Configuration",
+ "description": "Get Web App's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/sourcecontrols/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slot Source Control Configuration",
+ "description": "Get Web App Slot's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/sourcecontrols/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Update Web App Source Control Configuration",
+ "description": "Update Web App's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/sourcecontrols/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Update Web App Slot Source Control Configuration",
+ "description": "Update Web App Slot's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/sourcecontrols/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Delete Web App Source Control Configuration",
+ "description": "Delete Web App's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/sourcecontrols/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Delete Web App Slot Source Control Configuration",
+ "description": "Delete Web App Slot's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/backup/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Create Web App Backup",
+ "description": "Create a new web app backup"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/backup/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Create Web App Slot Backup",
+ "description": "Create new Web App Slot backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/backups/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Backup",
+ "description": "Get the properties of a web app's backup"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/backups/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "List Web App Slot Backups",
+ "description": "Get the properties of a web app slots' backup"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/publishxml/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Publishing Profile",
+ "description": "Get publishing profile xml for a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/publishxml/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slot Publishing Profile",
+ "description": "Get publishing profile xml for Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/publish/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Publish Web App",
+ "description": "Publish a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/publish/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Publish Web App Slot",
+ "description": "Publish a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/restart/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Restart Web App",
+ "description": "Restart a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/restart/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Restart Web App Slot",
+ "description": "Restart a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/start/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Start Web App",
+ "description": "Start a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/start/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Start Web App Slot",
+ "description": "Start a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/stop/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Stop Web App",
+ "description": "Stop a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/stop/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Stop Web App Slot",
+ "description": "Stop a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slotsswap/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Swap Web App Slots",
+ "description": "Swap Web App deployment slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/slotsswap/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Swap Web App Slots",
+ "description": "Swap Web App deployment slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slotsdiffs/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Slots Differences",
+ "description": "Get differences in configuration between web app and slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/slotsdiffs/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slots Differences",
+ "description": "Get differences in configuration between web app and slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/applySlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Apply Web App Configuration",
+ "description": "Apply web app slot configuration from target slot to the current web app"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/applySlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Apply Web App Slot Configuration",
+ "description": "Apply web app slot configuration from target slot to the current slot."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/resetSlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Reset Web App Configuration",
+ "description": "Reset web app configuration"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/resetSlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Reset Web App Slot Configuration",
+ "description": "Reset web app slot configuration"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Deployment Slot",
+ "description": "Get the properties of a Web App deployment slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Get App Service Plan",
+ "description": "Get the properties on an App Service Plan"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Create or Update App Service Plan",
+ "description": "Create a new App Service Plan or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Delete App Service Plan",
+ "description": "Delete an existing App Service Plan"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/restartSites/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Restart Web Apps",
+ "description": "Restart all Web Apps in an App Service Plan"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/certificates/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Certificate",
+ "operation": "Get Certificates",
+ "description": "Get the list of certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/certificates/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Certificate",
+ "operation": "Add or Update Certificate",
+ "description": "Add a new certificate or update an existing one."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/certificates/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Certificate",
+ "operation": "Delete Certificate",
+ "description": "Delete an existing certificate."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/geoRegions/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Geo Region",
+ "operation": "Get Geo Regions",
+ "description": "Get the list of Geo regions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/listSitesAssignedToHostName/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Site Name",
+ "operation": "Get sites assigned to hostname",
+ "description": "Get names of sites assigned to hostname."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Get App Service Environment",
+ "description": "Get the properties of an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Create or Update App Service Environment",
+ "description": "Create a new App Service Environment or update existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Delete App Service Environment",
+ "description": "Delete an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/reboot/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Reboot an App Service Environment",
+ "description": "Reboot all machines in an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment FrontEnd Pool",
+ "operation": "Get FrontEnd Pool",
+ "description": "Get the properties of a FrontEnd Pool in an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment FrontEnd Pool",
+ "operation": "Create or Update FrontEnd Pool",
+ "description": "Create a new FrontEnd Pool in an App Service Environment or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/workerPools/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment Worker Pool",
+ "operation": "Get Worker Pool",
+ "description": "Get the properties of a Worker Pool in an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/workerPools/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment Worker Pool",
+ "operation": "Create or Update Worker Pool",
+ "description": "Create a new Worker Pool in an App Service Environment or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Get Connections",
+ "description": "Get the list of Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Add or Update Connection",
+ "description": "Creates or updates a Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Delete Connection",
+ "description": "Deletes a Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Join/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Join Connection",
+ "description": "Joins a Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Get Connection Gateways",
+ "description": "Get the list of Connection Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Add or Update Connection Gateways",
+ "description": "Creates or updates a Connection Gateway."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Delete Connection Gateway",
+ "description": "Deletes a Connection Gateway."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Join/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Join Connection Gateway",
+ "description": "Joins a Connection Gateway."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/recommendations/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Recommendation",
+ "operation": "Get recommendations",
+ "description": "Get the list of recommendations for subscriptions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/recommendations/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Recommendation",
+ "operation": "Get recommendations for web app",
+ "description": "Get the list of recommendations for web app."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/availablestacks/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Available Stacks",
+ "operation": "Get Available Stacks",
+ "description": "Get Available Stacks."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/checknameavailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Check Name Availability",
+ "operation": "Get Check Name Availability",
+ "description": "Check if resource name is available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/classicmobileservices/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Classic Mobile Services",
+ "operation": "Get Classic Mobile Services",
+ "description": "Get Classic Mobile Services."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/connections/confirmconsentcode/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Confirm Connections Consent Code",
+ "description": "Confirm Connections Consent Code."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/connections/listconsentlinks/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "List Consent Links for Connections",
+ "description": "List Consent Links for Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/deploymentlocations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Deployment Locations",
+ "operation": "Get Deployment Locations",
+ "description": "Get Deployment Locations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/capacities/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Capacities",
+ "operation": "Get Hosting Environments Capacities",
+ "description": "Get Hosting Environments Capacities."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/diagnostics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Diagnostics",
+ "operation": "Get Hosting Environments Diagnostics",
+ "description": "Get Hosting Environments Diagnostics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Metric Definitions",
+ "operation": "Get Hosting Environments Metric Definitions",
+ "description": "Get Hosting Environments Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools Metric Definitions",
+ "operation": "Get Hosting Environments MultiRole Pools Metric Definitions",
+ "description": "Get Hosting Environments MultiRole Pools Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools Metrics",
+ "operation": "Get Hosting Environments MultiRole Pools Metrics",
+ "description": "Get Hosting Environments MultiRole Pools Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools SKUs",
+ "operation": "Get Hosting Environments MultiRole Pools SKUs",
+ "description": "Get Hosting Environments MultiRole Pools SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools Usages",
+ "operation": "Get Hosting Environments MultiRole Pools Usages",
+ "description": "Get Hosting Environments MultiRole Pools Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Operations",
+ "operation": "Get Hosting Environments Operations",
+ "description": "Get Hosting Environments Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/resume/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments",
+ "operation": "Resume Hosting Environments",
+ "description": "Resume Hosting Environments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/serverfarms/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments App Service Plans",
+ "operation": "Get Hosting Environments App Service Plans",
+ "description": "Get Hosting Environments App Service Plans."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/sites/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Web Apps",
+ "operation": "Get Hosting Environments Web Apps",
+ "description": "Get Hosting Environments Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/suspend/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments",
+ "operation": "Suspend Hosting Environments",
+ "description": "Suspend Hosting Environments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Usages",
+ "operation": "Get Hosting Environments Usages",
+ "description": "Get Hosting Environments Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools Metric Definitions",
+ "operation": "Get Hosting Environments Workerpools Metric Definitions",
+ "description": "Get Hosting Environments Workerpools Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools Metrics",
+ "operation": "Get Hosting Environments Workerpools Metrics",
+ "description": "Get Hosting Environments Workerpools Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools SKUs",
+ "operation": "Get Hosting Environments Workerpools SKUs",
+ "description": "Get Hosting Environments Workerpools SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools Usages",
+ "operation": "Get Hosting Environments Workerpools Usages",
+ "description": "Get Hosting Environments Workerpools Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/ishostingenvironmentnameavailable/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environment Name",
+ "operation": "Check if Hosting Environment Name is available",
+ "description": "Get if Hosting Environment Name is available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/ishostnameavailable/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hostname",
+ "operation": "Check if Hostname is Available",
+ "description": "Check if Hostname is Available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/isusernameavailable/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Username",
+ "operation": "Check if Username is available",
+ "description": "Check if Username is available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/locations/apioperations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Locations API Operations",
+ "operation": "Get Locations API Operations",
+ "description": "Get Locations API Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/locations/connectiongatewayinstallations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Locations Connection Gateway Installations",
+ "operation": "Get Locations Connection Gateway Installations",
+ "description": "Get Locations Connection Gateway Installations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/locations/managedapis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Locations Managed APIs",
+ "operation": "Get Locations Managed APIs",
+ "description": "Get Locations Managed APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Operations",
+ "operation": "Get Operations",
+ "description": "Get Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/publishingusers/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Publishing Users",
+ "operation": "Get Publishing Users",
+ "description": "Get Publishing Users."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/publishingusers/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Publishing Users",
+ "operation": "Update Publishing Users",
+ "description": "Update Publishing Users."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/capabilities/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Capabilities",
+ "operation": "Get App Service Plans Capabilities",
+ "description": "Get App Service Plans Capabilities."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/firstpartyapps/settings/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans First Party Apps Settings",
+ "operation": "Delete App Service Plans First Party Apps Settings",
+ "description": "Delete App Service Plans First Party Apps Settings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/firstpartyapps/settings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans First Party Apps Settings",
+ "operation": "Get App Service Plans First Party Apps Settings",
+ "description": "Get App Service Plans First Party Apps Settings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/firstpartyapps/settings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans First Party Apps Settings",
+ "operation": "Update App Service Plans First Party Apps Settings",
+ "description": "Update App Service Plans First Party Apps Settings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/sites/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Namespaces Relays Web Apps",
+ "operation": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps",
+ "description": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionplanlimits/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Plan Limits",
+ "operation": "Get App Service Plans Hybrid Connection Plan Limits",
+ "description": "Get App Service Plans Hybrid Connection Plan Limits."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionrelays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Relays",
+ "operation": "Get App Service Plans Hybrid Connection Relays",
+ "description": "Get App Service Plans Hybrid Connection Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Metric Definitions",
+ "operation": "Get App Service Plans Metric Definitions",
+ "description": "Get App Service Plans Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Metrics",
+ "operation": "Get App Service Plans Metrics",
+ "description": "Get App Service Plans Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/operationresults/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Operation Results",
+ "operation": "Get App Service Plans Operation Results",
+ "description": "Get App Service Plans Operation Results."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/sites/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Web Apps",
+ "operation": "Get App Service Plans Web Apps",
+ "description": "Get App Service Plans Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans SKUs",
+ "operation": "Get App Service Plans SKUs",
+ "description": "Get App Service Plans SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Usages",
+ "operation": "Get App Service Plans Usages",
+ "description": "Get App Service Plans Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/gateways/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Gateways",
+ "operation": "Update App Service Plans Virtual Network Connections Gateways",
+ "description": "Update App Service Plans Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections",
+ "operation": "Get App Service Plans Virtual Network Connections",
+ "description": "Get App Service Plans Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Routes",
+ "operation": "Delete App Service Plans Virtual Network Connections Routes",
+ "description": "Delete App Service Plans Virtual Network Connections Routes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Routes",
+ "operation": "Get App Service Plans Virtual Network Connections Routes",
+ "description": "Get App Service Plans Virtual Network Connections Routes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Routes",
+ "operation": "Update App Service Plans Virtual Network Connections Routes",
+ "description": "Update App Service Plans Virtual Network Connections Routes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/workers/reboot/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Workers",
+ "operation": "Reboot App Service Plans Workers",
+ "description": "Reboot App Service Plans Workers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/analyzecustomhostname/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Custom Hostname",
+ "operation": "Analyze Custom Hostname",
+ "description": "Analyze Custom Hostname."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backup/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backup",
+ "operation": "Get Web Apps Backup",
+ "description": "Get Web Apps Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backup/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backup",
+ "operation": "Update Web Apps Backup",
+ "description": "Update Web Apps Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backups/list/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backups",
+ "operation": "List Web Apps Backups",
+ "description": "List Web Apps Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backups/restore/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backups",
+ "operation": "Restore Web Apps Backups",
+ "description": "Restore Web Apps Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/config/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Config",
+ "operation": "Delete Web Apps Config",
+ "description": "Delete Web Apps Config."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Delete Web Apps Continuous Web Jobs",
+ "description": "Delete Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Get Web Apps Continuous Web Jobs",
+ "description": "Get Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/start/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Start Web Apps Continuous Web Jobs",
+ "description": "Start Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/stop/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Stop Web Apps Continuous Web Jobs",
+ "description": "Stop Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments",
+ "operation": "Delete Web Apps Deployments",
+ "description": "Delete Web Apps Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/log/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments Log",
+ "operation": "Get Web Apps Deployments Log",
+ "description": "Get Web Apps Deployments Log."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments",
+ "operation": "Get Web Apps Deployments",
+ "description": "Get Web Apps Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments",
+ "operation": "Update Web Apps Deployments",
+ "description": "Update Web Apps Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/frebanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics FREB Analysis",
+ "operation": "Get Web Apps Diagnostics FREB Analysis",
+ "description": "Get Web Apps Diagnostics FREB Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/frebanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics FREB Analysis",
+ "operation": "Get Web Apps Slots Diagnostics FREB Analysis",
+ "description": "Get Web Apps Slots Diagnostics FREB Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Category",
+ "operation": "Get Web Apps Diagnostics Category",
+ "description": "Get Web Apps Diagnostics Categories."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/runtimeavailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Runtime Availability",
+ "operation": "Get Web Apps Diagnostics Runtime Availability",
+ "description": "Get Web Apps Diagnostics Runtime Availability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/servicehealth/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Service Health",
+ "operation": "Get Web Apps Diagnostics Service Health",
+ "description": "Get Web Apps Diagnostics Service Health."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/workeravailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Workeravailability",
+ "operation": "Get Web Apps Diagnostics Workeravailability",
+ "description": "Get Web Apps Diagnostics Workeravailability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/workeravailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Workeravailability",
+ "operation": "Get Web Apps Slots Diagnostics Workeravailability",
+ "description": "Get Web Apps Slots Diagnostics Workeravailability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/workerprocessrecycle/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Worker Process Recycle",
+ "operation": "Get Web Apps Diagnostics Worker Process Recycle",
+ "description": "Get Web Apps Diagnostics Worker Process Recycle."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/workerprocessrecycle/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Worker Process Recycle",
+ "operation": "Get Web Apps Slots Diagnostics Worker Process Recycle",
+ "description": "Get Web Apps Slots Diagnostics Worker Process Recycle."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/aspnetcore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics ASP.NET Core",
+ "operation": "Get Web Apps Diagnostics ASP.NET Core",
+ "description": "Get Web Apps Diagnostics for ASP.NET Core app."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/aspnetcore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics ASP.NET Core",
+ "operation": "Get Web Apps Slots Diagnostics ASP.NET Core",
+ "description": "Get Web Apps Slots Diagnostics for ASP.NET Core app."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/domainownershipidentifiers/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Domain Ownership Identifiers",
+ "operation": "Get Web Apps Domain Ownership Identifiers",
+ "description": "Get Web Apps Domain Ownership Identifiers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/domainownershipidentifiers/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Domain Ownership Identifiers",
+ "operation": "Update Web Apps Domain Ownership Identifiers",
+ "description": "Update Web Apps Domain Ownership Identifiers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Functions Web Apps",
+ "description": "Functions Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "Delete Web Apps Functions",
+ "description": "Delete Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/listsecrets/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "List Secrets Web Apps Functions",
+ "description": "List Secrets Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "Get Web Apps Functions",
+ "description": "Get Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "Update Web Apps Functions",
+ "description": "Update Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hostnamebindings/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hostname Bindings",
+ "operation": "Delete Web Apps Hostname Bindings",
+ "description": "Delete Web Apps Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hostnamebindings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hostname Bindings",
+ "operation": "Get Web Apps Hostname Bindings",
+ "description": "Get Web Apps Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hostnamebindings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hostname Bindings",
+ "operation": "Update Web Apps Hostname Bindings",
+ "description": "Update Web Apps Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnection/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection",
+ "operation": "Delete Web Apps Hybrid Connection",
+ "description": "Delete Web Apps Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnection/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection",
+ "operation": "Get Web Apps Hybrid Connection",
+ "description": "Get Web Apps Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnection/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection",
+ "operation": "Update Web Apps Hybrid Connection",
+ "description": "Update Web Apps Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionrelays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Relays",
+ "operation": "Get Web Apps Hybrid Connection Relays",
+ "description": "Get Web Apps Hybrid Connection Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Deployments",
+ "operation": "Get Web Apps Instances Deployments",
+ "description": "Get Web Apps Instances Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/processes/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Processes",
+ "operation": "Delete Web Apps Instances Processes",
+ "description": "Delete Web Apps Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/processes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Processes",
+ "operation": "Get Web Apps Instances Processes",
+ "description": "Get Web Apps Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances",
+ "operation": "Get Web Apps Instances",
+ "description": "Get Web Apps Instances."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/listsyncfunctiontriggerstatus/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "List Sync Function Trigger Status Web Apps",
+ "description": "List Sync Function Trigger Status Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Metric Definitions",
+ "operation": "Get Web Apps Metric Definitions",
+ "description": "Get Web Apps Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Metrics",
+ "operation": "Get Web Apps Metrics",
+ "description": "Get Web Apps Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/networktrace/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Network Trace Web Apps",
+ "description": "Network Trace Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/newpassword/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Newpassword Web Apps",
+ "description": "Newpassword Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/operationresults/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Operation Results",
+ "operation": "Get Web Apps Operation Results",
+ "description": "Get Web Apps Operation Results."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/perfcounters/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Performance Counters",
+ "operation": "Get Web Apps Performance Counters",
+ "description": "Get Web Apps Performance Counters."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/premieraddons/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Premier Addons",
+ "operation": "Delete Web Apps Premier Addons",
+ "description": "Delete Web Apps Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/premieraddons/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Premier Addons",
+ "operation": "Get Web Apps Premier Addons",
+ "description": "Get Web Apps Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/premieraddons/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Premier Addons",
+ "operation": "Update Web Apps Premier Addons",
+ "description": "Update Web Apps Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publishxml/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Publishing XML",
+ "operation": "Get Web Apps Publishing XML",
+ "description": "Get Web Apps Publishing XML."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/recommendationhistory/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Recommendation History",
+ "operation": "Get Web Apps Recommendation History",
+ "description": "Get Web Apps Recommendation History."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/recommendations/disable/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Recommendations",
+ "operation": "Disable Web Apps Recommendations",
+ "description": "Disable Web Apps Recommendations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/restore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Restore",
+ "operation": "Get Web Apps Restore",
+ "description": "Get Web Apps Restore."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/analyzecustomhostname/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Analyze Custom Hostname",
+ "operation": "Get Web Apps Slots Analyze Custom Hostname",
+ "description": "Get Web Apps Slots Analyze Custom Hostname."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backup/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backup",
+ "operation": "Update Web Apps Slots Backup",
+ "description": "Update Web Apps Slots Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backups/list/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backups",
+ "operation": "List Web Apps Slots Backups",
+ "description": "List Web Apps Slots Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backups/restore/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backups",
+ "operation": "Restore Web Apps Slots Backups",
+ "description": "Restore Web Apps Slots Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/config/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Config",
+ "operation": "Delete Web Apps Slots Config",
+ "description": "Delete Web Apps Slots Config."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Delete Web Apps Slots Continuous Web Jobs",
+ "description": "Delete Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Get Web Apps Slots Continuous Web Jobs",
+ "description": "Get Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/start/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Start Web Apps Slots Continuous Web Jobs",
+ "description": "Start Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/stop/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Stop Web Apps Slots Continuous Web Jobs",
+ "description": "Stop Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments",
+ "operation": "Delete Web Apps Slots Deployments",
+ "description": "Delete Web Apps Slots Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/log/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments Log",
+ "operation": "Get Web Apps Slots Deployments Log",
+ "description": "Get Web Apps Slots Deployments Log."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments",
+ "operation": "Get Web Apps Slots Deployments",
+ "description": "Get Web Apps Slots Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments",
+ "operation": "Update Web Apps Slots Deployments",
+ "description": "Update Web Apps Slots Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hostnamebindings/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hostname Bindings",
+ "operation": "Delete Web Apps Slots Hostname Bindings",
+ "description": "Delete Web Apps Slots Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hostnamebindings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hostname Bindings",
+ "operation": "Get Web Apps Slots Hostname Bindings",
+ "description": "Get Web Apps Slots Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hostnamebindings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hostname Bindings",
+ "operation": "Update Web Apps Slots Hostname Bindings",
+ "description": "Update Web Apps Slots Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnection/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection",
+ "operation": "Delete Web Apps Slots Hybrid Connection",
+ "description": "Delete Web Apps Slots Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnection/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection",
+ "operation": "Get Web Apps Slots Hybrid Connection",
+ "description": "Get Web Apps Slots Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnection/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection",
+ "operation": "Update Web Apps Slots Hybrid Connection",
+ "description": "Update Web Apps Slots Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances Deployments",
+ "operation": "Get Web Apps Slots Instances Deployments",
+ "description": "Get Web Apps Slots Instances Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/processes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances Processes",
+ "operation": "Get Web Apps Slots Instances Processes",
+ "description": "Get Web Apps Slots Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances",
+ "operation": "Get Web Apps Slots Instances",
+ "description": "Get Web Apps Slots Instances."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Metric Definitions",
+ "operation": "Get Web Apps Slots Metric Definitions",
+ "description": "Get Web Apps Slots Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Metrics",
+ "operation": "Get Web Apps Slots Metrics",
+ "description": "Get Web Apps Slots Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/newpassword/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Newpassword Web Apps Slots",
+ "description": "Newpassword Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/operationresults/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Operation Results",
+ "operation": "Get Web Apps Slots Operation Results",
+ "description": "Get Web Apps Slots Operation Results."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/phplogging/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Phplogging",
+ "operation": "Get Web Apps Slots Phplogging",
+ "description": "Get Web Apps Slots Phplogging."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/premieraddons/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Premier Addons",
+ "operation": "Delete Web Apps Slots Premier Addons",
+ "description": "Delete Web Apps Slots Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/premieraddons/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Premier Addons",
+ "operation": "Get Web Apps Slots Premier Addons",
+ "description": "Get Web Apps Slots Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/premieraddons/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Premier Addons",
+ "operation": "Update Web Apps Slots Premier Addons",
+ "description": "Update Web Apps Slots Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/restore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Restore",
+ "operation": "Get Web Apps Slots Restore",
+ "description": "Get Web Apps Slots Restore."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/sync/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Sync Web Apps Slots",
+ "description": "Sync Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/triggeredwebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Triggered WebJobs",
+ "operation": "Delete Web Apps Slots Triggered WebJobs",
+ "description": "Delete Web Apps Slots Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/triggeredwebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Triggered WebJobs",
+ "operation": "Get Web Apps Slots Triggered WebJobs",
+ "description": "Get Web Apps Slots Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/triggeredwebjobs/run/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Triggered WebJobs",
+ "operation": "Run Web Apps Slots Triggered WebJobs",
+ "description": "Run Web Apps Slots Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Usages",
+ "operation": "Get Web Apps Slots Usages",
+ "description": "Get Web Apps Slots Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections",
+ "operation": "Delete Web Apps Slots Virtual Network Connections",
+ "description": "Delete Web Apps Slots Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/gateways/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections Gateways",
+ "operation": "Update Web Apps Slots Virtual Network Connections Gateways",
+ "description": "Update Web Apps Slots Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections",
+ "operation": "Get Web Apps Slots Virtual Network Connections",
+ "description": "Get Web Apps Slots Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections",
+ "operation": "Update Web Apps Slots Virtual Network Connections",
+ "description": "Update Web Apps Slots Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/webjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots WebJobs",
+ "operation": "Get Web Apps Slots WebJobs",
+ "description": "Get Web Apps Slots WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/snapshots/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Snapshots",
+ "operation": "Get Web Apps Snapshots",
+ "description": "Get Web Apps Snapshots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/sync/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Sync Web Apps",
+ "description": "Sync Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs",
+ "operation": "Delete Web Apps Triggered WebJobs",
+ "description": "Delete Web Apps Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs",
+ "operation": "Get Web Apps Triggered WebJobs",
+ "description": "Get Web Apps Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/run/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs",
+ "operation": "Run Web Apps Triggered WebJobs",
+ "description": "Run Web Apps Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Usages",
+ "operation": "Get Web Apps Usages",
+ "description": "Get Web Apps Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections",
+ "operation": "Delete Web Apps Virtual Network Connections",
+ "description": "Delete Web Apps Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/gateways/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections Gateways",
+ "operation": "Get Web Apps Virtual Network Connections Gateways",
+ "description": "Get Web Apps Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/gateways/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections Gateways",
+ "operation": "Update Web Apps Virtual Network Connections Gateways",
+ "description": "Update Web Apps Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections",
+ "operation": "Get Web Apps Virtual Network Connections",
+ "description": "Get Web Apps Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections",
+ "operation": "Update Web Apps Virtual Network Connections",
+ "description": "Update Web Apps Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/webjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps WebJobs",
+ "operation": "Get Web Apps WebJobs",
+ "description": "Get Web Apps WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "SKUs",
+ "operation": "Get SKUs",
+ "description": "Get SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sourcecontrols/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Source Controls",
+ "operation": "Get Source Controls",
+ "description": "Get Source Controls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sourcecontrols/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Source Controls",
+ "operation": "Update Source Controls",
+ "description": "Update Source Controls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/unregister/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Microsoft.Web resource provider",
+ "operation": "Unregister Microsoft.Web resource provider",
+ "description": "Unregister Microsoft.Web resource provider for the subscription."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/validate/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "",
+ "operation": "Validate ",
+ "description": "Validate ."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/register/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Microsoft.Web resource provider",
+ "operation": "Register Microsoft.Web resource provider",
+ "description": "Register Microsoft.Web resource provider for the subscription."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Namespaces Relays",
+ "operation": "Get App Service Plans Hybrid Connection Namespaces Relays",
+ "description": "Get App Service Plans Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backups/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backups",
+ "operation": "Delete Web Apps Backups",
+ "description": "Delete Web Apps Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "Delete Web Apps Hybrid Connection Namespaces Relays",
+ "description": "Delete Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/listkeys/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "List Keys Web Apps Hybrid Connection Namespaces Relays",
+ "description": "List Keys Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "Update Web Apps Hybrid Connection Namespaces Relays",
+ "description": "Update Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/metricsdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Metrics Definitions",
+ "operation": "Get Web Apps Metrics Definitions",
+ "description": "Get Web Apps Metrics Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/migratemysql/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Migrate MySql Web Apps",
+ "description": "Migrate MySql Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/migratemysql/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Migrate MySql",
+ "operation": "Get Web Apps Migrate MySql",
+ "description": "Get Web Apps Migrate MySql."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/recover/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Recover Web Apps",
+ "description": "Recover Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/siteextensions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Site Extensions",
+ "operation": "Delete Web Apps Site Extensions",
+ "description": "Delete Web Apps Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/siteextensions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Site Extensions",
+ "operation": "Get Web Apps Site Extensions",
+ "description": "Get Web Apps Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/siteextensions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Site Extensions",
+ "operation": "Update Web Apps Site Extensions",
+ "description": "Update Web Apps Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backup/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backup",
+ "operation": "Get Web Apps Slots Backup",
+ "description": "Get Web Apps Slots Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnectionrelays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection Relays",
+ "operation": "Get Web Apps Slots Hybrid Connection Relays",
+ "description": "Get Web Apps Slots Hybrid Connection Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/siteextensions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Site Extensions",
+ "operation": "Delete Web Apps Slots Site Extensions",
+ "description": "Delete Web Apps Slots Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/siteextensions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Site Extensions",
+ "operation": "Get Web Apps Slots Site Extensions",
+ "description": "Get Web Apps Slots Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/siteextensions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Site Extensions",
+ "operation": "Update Web Apps Slots Site Extensions",
+ "description": "Update Web Apps Slots Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/snapshots/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Snapshots",
+ "operation": "Get Web Apps Slots Snapshots",
+ "description": "Get Web Apps Slots Snapshots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/syncfunctiontriggers/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Sync Function Triggers for Web Apps",
+ "description": "Sync Function Triggers for Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/history/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs History",
+ "operation": "Get Web Apps Triggered WebJobs History",
+ "description": "Get Web Apps Triggered WebJobs History."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/connectiongateways/liststatus/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "List Status Connection Gateways",
+ "description": "List Status Connection Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Namespaces Relays",
+ "operation": "Delete App Service Plans Hybrid Connection Namespaces Relays",
+ "description": "Delete App Service Plans Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/deployment/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Deployment",
+ "operation": "Get Web Apps Diagnostics Deployment",
+ "description": "Get Web Apps Diagnostics Deployment."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitecpuanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site CPU Analysis",
+ "operation": "Get Web Apps Diagnostics Site CPU Analysis",
+ "description": "Get Web Apps Diagnostics Site CPU Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitelatency/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Latency",
+ "operation": "Get Web Apps Diagnostics Site Latency",
+ "description": "Get Web Apps Diagnostics Site Latency."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitememoryanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Memory Analysis",
+ "operation": "Get Web Apps Diagnostics Site Memory Analysis",
+ "description": "Get Web Apps Diagnostics Site Memory Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/threadcount/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Thread Count",
+ "operation": "Get Web Apps Diagnostics Thread Count",
+ "description": "Get Web Apps Diagnostics Thread Count."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/deployment/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Deployment",
+ "operation": "Get Web Apps Slots Diagnostics Deployment",
+ "description": "Get Web Apps Slots Diagnostics Deployment."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitecpuanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site CPU Analysis",
+ "operation": "Get Web Apps Slots Diagnostics Site CPU Analysis",
+ "description": "Get Web Apps Slots Diagnostics Site CPU Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Latency",
+ "operation": "Get Web Apps Slots Diagnostics Site Latency",
+ "description": "Get Web Apps Slots Diagnostics Site Latency."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitememoryanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Memory Analysis",
+ "operation": "Get Web Apps Slots Diagnostics Site Memory Analysis",
+ "description": "Get Web Apps Slots Diagnostics Site Memory Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/threadcount/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Thread Count",
+ "operation": "Get Web Apps Slots Diagnostics Thread Count",
+ "description": "Get Web Apps Slots Diagnostics Thread Count."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/masterkey/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions Masterkey",
+ "operation": "Get Web Apps Functions Masterkey",
+ "description": "Get Web Apps Functions Masterkey."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "Get Web Apps Hybrid Connection Namespaces Relays",
+ "description": "Get Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/extensions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Extensions",
+ "operation": "Get Web Apps Instances Extensions",
+ "description": "Get Web Apps Instances Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Operations",
+ "operation": "Get Web Apps Operations",
+ "description": "Get Web Apps Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/resourcehealthmetadata/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Resource Health Metadata",
+ "operation": "Get Web Apps Resource Health Metadata",
+ "description": "Get Web Apps Resource Health Metadata."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backups/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backups",
+ "operation": "Delete Web Apps Slots Backups",
+ "description": "Delete Web Apps Slots Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/domainownershipidentifiers/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Domain Ownership Identifiers",
+ "operation": "Get Web Apps Slots Domain Ownership Identifiers",
+ "description": "Get Web Apps Slots Domain Ownership Identifiers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
+ "operation": "Delete Web Apps Slots Hybrid Connection Namespaces Relays",
+ "description": "Delete Web Apps Slots Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
+ "operation": "Update Web Apps Slots Hybrid Connection Namespaces Relays",
+ "description": "Update Web Apps Slots Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Operations",
+ "operation": "Get Web Apps Slots Operations",
+ "description": "Get Web Apps Slots Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/perfcounters/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Performance Counters",
+ "operation": "Get Web Apps Slots Performance Counters",
+ "description": "Get Web Apps Slots Performance Counters."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/resourcehealthmetadata/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Resource Health Metadata",
+ "operation": "Get Web Apps Slots Resource Health Metadata",
+ "description": "Get Web Apps Slots Resource Health Metadata."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apiacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts Apiacls",
+ "operation": "Get Api Management Accounts Apiacls",
+ "description": "Get Api Management Accounts Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Get Api Management Accounts APIs Connections",
+ "description": "Get Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs",
+ "operation": "Get Api Management Accounts APIs",
+ "description": "Get Api Management Accounts APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/connectionacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts Connectionacls",
+ "operation": "Get Api Management Accounts Connectionacls",
+ "description": "Get Api Management Accounts Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/apiacls/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Apiacls",
+ "operation": "Delete Api Management Accounts APIs Apiacls",
+ "description": "Delete Api Management Accounts APIs Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/apiacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Apiacls",
+ "operation": "Get Api Management Accounts APIs Apiacls",
+ "description": "Get Api Management Accounts APIs Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/apiacls/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Apiacls",
+ "operation": "Update Api Management Accounts APIs Apiacls",
+ "description": "Update Api Management Accounts APIs Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connectionacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connectionacls",
+ "operation": "Get Api Management Accounts APIs Connectionacls",
+ "description": "Get Api Management Accounts APIs Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/confirmconsentcode/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Confirm Consent Code Api Management Accounts APIs Connections",
+ "description": "Confirm Consent Code Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections Connectionacls",
+ "operation": "Delete Api Management Accounts APIs Connections Connectionacls",
+ "description": "Delete Api Management Accounts APIs Connections Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections Connectionacls",
+ "operation": "Get Api Management Accounts APIs Connections Connectionacls",
+ "description": "Get Api Management Accounts APIs Connections Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections Connectionacls",
+ "operation": "Update Api Management Accounts APIs Connections Connectionacls",
+ "description": "Update Api Management Accounts APIs Connections Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Delete Api Management Accounts APIs Connections",
+ "description": "Delete Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/getconsentlinks/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Get Consent Links for Api Management Accounts APIs Connections",
+ "description": "Get Consent Links for Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Update Api Management Accounts APIs Connections",
+ "description": "Update Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs",
+ "operation": "Delete Api Management Accounts APIs",
+ "description": "Delete Api Management Accounts APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Localized Definitions",
+ "operation": "Delete Api Management Accounts APIs Localized Definitions",
+ "description": "Delete Api Management Accounts APIs Localized Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Localized Definitions",
+ "operation": "Get Api Management Accounts APIs Localized Definitions",
+ "description": "Get Api Management Accounts APIs Localized Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Localized Definitions",
+ "operation": "Update Api Management Accounts APIs Localized Definitions",
+ "description": "Update Api Management Accounts APIs Localized Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs",
+ "operation": "Update Api Management Accounts APIs",
+ "description": "Update Api Management Accounts APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/listconnectionkeys/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "List Connection Keys Api Management Accounts APIs Connections",
+ "description": "List Connection Keys Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/listsecrets/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "List Secrets Api Management Accounts APIs Connections",
+ "description": "List Secrets Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Deployments",
+ "operation": "Get Web Apps Diagnostics Deployments",
+ "description": "Get Web Apps Diagnostics Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Deployments",
+ "operation": "Get Web Apps Slots Diagnostics Deployments",
+ "description": "Get Web Apps Slots Diagnostics Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/loganalyzer/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Log Analyzer",
+ "operation": "Get Web Apps Diagnostics Log Analyzer",
+ "description": "Get Web Apps Diagnostics Log Analyzer."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/loganalyzer/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Log Analyzer",
+ "operation": "Get Web Apps Slots Diagnostics Log Analyzer",
+ "description": "Get Web Apps Slots Diagnostics Log Analyzer."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitecrashes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Crashes",
+ "operation": "Get Web Apps Diagnostics Site Crashes",
+ "description": "Get Web Apps Diagnostics Site Crashes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitecrashes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Crashes",
+ "operation": "Get Web Apps Slots Diagnostics Site Crashes",
+ "description": "Get Web Apps Slots Diagnostics Site Crashes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/siterestartsettingupdate/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Restart Setting Update",
+ "operation": "Get Web Apps Diagnostics Site Restart Setting Update",
+ "description": "Get Web Apps Diagnostics Site Restart Setting Update."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/siterestartsettingupdate/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Restart Setting Update",
+ "operation": "Get Web Apps Slots Diagnostics Site Restart Setting Update",
+ "description": "Get Web Apps Slots Diagnostics Site Restart Setting Update."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/siterestartuserinitiated/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Restart User Initiated",
+ "operation": "Get Web Apps Diagnostics Site Restart User Initiated",
+ "description": "Get Web Apps Diagnostics Site Restart User Initiated."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/siterestartuserinitiated/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Restart User Initiated",
+ "operation": "Get Web Apps Slots Diagnostics Site Restart User Initiated",
+ "description": "Get Web Apps Slots Diagnostics Site Restart User Initiated."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/siteswap/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Swap",
+ "operation": "Get Web Apps Diagnostics Site Swap",
+ "description": "Get Web Apps Diagnostics Site Swap."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/siteswap/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Swap",
+ "operation": "Get Web Apps Slots Diagnostics Site Swap",
+ "description": "Get Web Apps Slots Diagnostics Site Swap."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/token/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions Token",
+ "operation": "Get Web Apps Functions Token",
+ "description": "Get Web Apps Functions Token."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/deployments/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Deployments",
+ "operation": "Delete Web Apps Instances Deployments",
+ "description": "Delete Web Apps Instances Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/processes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Processes",
+ "operation": "Get Web Apps Processes",
+ "description": "Get Web Apps Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publiccertificates/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Public Certificates",
+ "operation": "Delete Web Apps Public Certificates",
+ "description": "Delete Web Apps Public Certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publiccertificates/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Public Certificates",
+ "operation": "Get Web Apps Public Certificates",
+ "description": "Get Web Apps Public Certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publiccertificates/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Public Certificates",
+ "operation": "Update Web Apps Public Certificates",
+ "description": "Update Web Apps Public Certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/networktrace/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Network Trace Web Apps Slots",
+ "description": "Network Trace Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/autoheal/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Autoheal",
+ "operation": "Get Web Apps Diagnostics Autoheal",
+ "description": "Get Web Apps Diagnostics Autoheal."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/autoheal/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Autoheal",
+ "operation": "Get Web Apps Slots Diagnostics Autoheal",
+ "description": "Get Web Apps Slots Diagnostics Autoheal."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics",
+ "operation": "Get Web Apps Slots Diagnostics",
+ "description": "Get Web Apps Slots Diagnostics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/runtimeavailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Runtime Availability",
+ "operation": "Get Web Apps Slots Diagnostics Runtime Availability",
+ "description": "Get Web Apps Slots Diagnostics Runtime Availability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/servicehealth/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Service Health",
+ "operation": "Get Web Apps Slots Diagnostics Service Health",
+ "description": "Get Web Apps Slots Diagnostics Service Health."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Latency",
+ "operation": "Get Web Apps Slots Diagnostics Site Latency",
+ "description": "Get Web Apps Slots Diagnostics Site Latency."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/migratemysql/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Migrate MySql",
+ "operation": "Get Web Apps Slots Migrate MySql",
+ "description": "Get Web Apps Slots Migrate MySql."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App slot",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App slot",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service plan",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service plan",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service Environment",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service Environment",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/billingmeters/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Billing meters for Microsoft Web Apps",
+ "operation": "Read billing meters",
+ "description": "Get list of billing meters."
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/processes/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances Processes",
+ "operation": "Delete Web Apps Slots Instances Processes",
+ "description": "Delete Web Apps Slots Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/restore/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Restore Web Apps",
+ "description": "Restore Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/extensions/log/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Extensions Log",
+ "operation": "Get Web Apps Instances Extensions Log",
+ "description": "Get Web Apps Instances Extensions Log."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/customapis/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Custom APIs",
+ "operation": "Update Custom APIs",
+ "description": "Update Custom APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/customapis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Custom APIs",
+ "operation": "Get Custom APIs",
+ "description": "Get Custom APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/failedrequestsperuri/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Failed Requests Per Uri",
+ "operation": "Get Web Apps Diagnostics Failed Requests Per Uri",
+ "description": "Get Web Apps Diagnostics Failed Requests Per Uri."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/restore/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Restore Web Apps Slots",
+ "description": "Restore Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/detectors/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Detector",
+ "operation": "Get Web Apps Diagnostics Detector",
+ "description": "Get Web Apps Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/analyses/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Analysis",
+ "operation": "Get Web Apps Diagnostics Analysis",
+ "description": "Get Web Apps Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/analyses/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Analysis",
+ "operation": "Get Web Apps Slots Diagnostics Analysis",
+ "description": "Get Web Apps Slots Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/detectors/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Detector",
+ "operation": "Get Web Apps Slots Diagnostics Detector",
+ "description": "Get Web Apps Slots Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/analyses/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Analysis",
+ "operation": "Run Web Apps Diagnostics Analysis",
+ "description": "Run Web Apps Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/detectors/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Detector",
+ "operation": "Run Web Apps Diagnostics Detector",
+ "description": "Run Web Apps Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/analyses/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Analysis",
+ "operation": "Run Web Apps Slots Diagnostics Analysis",
+ "description": "Run Web Apps Slots Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/detectors/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Detector",
+ "operation": "Run Web Apps Slots Diagnostics Detector",
+ "description": "Run Web Apps Slots Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of App Service Plan",
+ "operation": "Read App Service Plan metric definitions",
+ "description": "Gets the available metrics for App Service Plan"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "CpuPercentage",
+ "displayName": "CPU Percentage",
+ "displayDescription": "CPU Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
}
- ]
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryPercentage",
+ "displayName": "Memory Percentage",
+ "displayDescription": "Memory Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "DiskQueueLength",
+ "displayName": "Disk Queue Length",
+ "displayDescription": "Disk Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "HttpQueueLength",
+ "displayName": "Http Queue Length",
+ "displayDescription": "Http Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/sites/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of Web App",
+ "operation": "Read Web App metric definitions",
+ "description": "Gets the available metrics for Web App"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "CpuTime",
+ "displayName": "CPU Time",
+ "displayDescription": "CPU Time",
+ "unit": "Seconds",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Requests",
+ "displayName": "Requests",
+ "displayDescription": "Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http101",
+ "displayName": "Http 101",
+ "displayDescription": "Http 101",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http2xx",
+ "displayName": "Http 2xx",
+ "displayDescription": "Http 2xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http3xx",
+ "displayName": "Http 3xx",
+ "displayDescription": "Http 3xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http401",
+ "displayName": "Http 401",
+ "displayDescription": "Http 401",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http403",
+ "displayName": "Http 403",
+ "displayDescription": "Http 403",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http404",
+ "displayName": "Http 404",
+ "displayDescription": "Http 404",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http406",
+ "displayName": "Http 406",
+ "displayDescription": "Http 406",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http4xx",
+ "displayName": "Http 4xx",
+ "displayDescription": "Http 4xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http5xx",
+ "displayName": "Http Server Errors",
+ "displayDescription": "Http Server Errors",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryWorkingSet",
+ "displayName": "Memory working set",
+ "displayDescription": "Memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageMemoryWorkingSet",
+ "displayName": "Average memory working set",
+ "displayDescription": "Average memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageResponseTime",
+ "displayName": "Average Response Time",
+ "displayDescription": "Average Response Time",
+ "unit": "Seconds",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionUnits",
+ "displayName": "Function Execution Units",
+ "displayDescription": "Function Execution Units",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionCount",
+ "displayName": "Function Execution Count",
+ "displayDescription": "Function Execution Count",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of Web App Slot",
+ "operation": "Read Web App Slot metric definitions",
+ "description": "Gets the available metrics for Web App Slot"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "CpuTime",
+ "displayName": "CPU Time",
+ "displayDescription": "CPU Time",
+ "unit": "Seconds",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Requests",
+ "displayName": "Requests",
+ "displayDescription": "Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http101",
+ "displayName": "Http 101",
+ "displayDescription": "Http 101",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http2xx",
+ "displayName": "Http 2xx",
+ "displayDescription": "Http 2xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http3xx",
+ "displayName": "Http 3xx",
+ "displayDescription": "Http 3xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http401",
+ "displayName": "Http 401",
+ "displayDescription": "Http 401",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http403",
+ "displayName": "Http 403",
+ "displayDescription": "Http 403",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http404",
+ "displayName": "Http 404",
+ "displayDescription": "Http 404",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http406",
+ "displayName": "Http 406",
+ "displayDescription": "Http 406",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http4xx",
+ "displayName": "Http 4xx",
+ "displayDescription": "Http 4xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http5xx",
+ "displayName": "Http Server Errors",
+ "displayDescription": "Http Server Errors",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryWorkingSet",
+ "displayName": "Memory working set",
+ "displayDescription": "Memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageMemoryWorkingSet",
+ "displayName": "Average memory working set",
+ "displayDescription": "Average memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageResponseTime",
+ "displayName": "Average Response Time",
+ "displayDescription": "Average Response Time",
+ "unit": "Seconds",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionUnits",
+ "displayName": "Function Execution Units",
+ "displayDescription": "Function Execution Units",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionCount",
+ "displayName": "Function Execution Count",
+ "displayDescription": "Function Execution Count",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/multiRolePools/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of App Service Environment MultiRole",
+ "operation": "Read App Service Environment MultiRole metric definitions",
+ "description": "Gets the available metrics for App Service Environment MultiRole"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "Requests",
+ "displayName": "Requests",
+ "displayDescription": "Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http101",
+ "displayName": "Http 101",
+ "displayDescription": "Http 101",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http2xx",
+ "displayName": "Http 2xx",
+ "displayDescription": "Http 2xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http3xx",
+ "displayName": "Http 3xx",
+ "displayDescription": "Http 3xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http401",
+ "displayName": "Http 401",
+ "displayDescription": "Http 401",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http403",
+ "displayName": "Http 403",
+ "displayDescription": "Http 403",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http404",
+ "displayName": "Http 404",
+ "displayDescription": "Http 404",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http406",
+ "displayName": "Http 406",
+ "displayDescription": "Http 406",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http4xx",
+ "displayName": "Http 4xx",
+ "displayDescription": "Http 4xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http5xx",
+ "displayName": "Http Server Errors",
+ "displayDescription": "Http Server Errors",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageResponseTime",
+ "displayName": "Average Response Time",
+ "displayDescription": "Average Response Time",
+ "unit": "Seconds",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "CpuPercentage",
+ "displayName": "CPU Percentage",
+ "displayDescription": "CPU Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryPercentage",
+ "displayName": "Memory Percentage",
+ "displayDescription": "Memory Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "DiskQueueLength",
+ "displayName": "Disk Queue Length",
+ "displayDescription": "Disk Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "HttpQueueLength",
+ "displayName": "Http Queue Length",
+ "displayDescription": "Http Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "ActiveRequests",
+ "displayName": "Active Requests",
+ "displayDescription": "Active Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "TotalFrontEnds",
+ "displayName": "Total Front Ends",
+ "displayDescription": "Total Front Ends",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "SmallAppServicePlanInstances",
+ "displayName": "Small App Service Plan Workers",
+ "displayDescription": "Small App Service Plan Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MediumAppServicePlanInstances",
+ "displayName": "Medium App Service Plan Workers",
+ "displayDescription": "Medium App Service Plan Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "LargeAppServicePlanInstances",
+ "displayName": "Large App Service Plan Workers",
+ "displayDescription": "Large App Service Plan Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/workerPools/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of App Service Environment WorkerPool",
+ "operation": "Read App Service Environment WorkerPool metric definitions",
+ "description": "Gets the available metrics for App Service Environment WorkerPool"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "WorkersTotal",
+ "displayName": "Total Workers",
+ "displayDescription": "Total Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "WorkersAvailable",
+ "displayName": "Available Workers",
+ "displayDescription": "Available Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "WorkersUsed",
+ "displayName": "Used Workers",
+ "displayDescription": "Used Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataByResourceGroup.json
index f918ec97db44..2ab791aaa4e3 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataByResourceGroup.json
@@ -1,25 +1,25 @@
{
- "parameters":{
- "api-version":"2016-03-01",
- "resourceGroupName":"Default-Web-NorthCentralUS",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38"
- },
- "responses":{
- "200":{
- "body":{
- "value":[
- {
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
- ],
- "nextLink":""
- }
+ "parameters": {
+ "api-version": "2016-03-01",
+ "resourceGroupName": "Default-Web-NorthCentralUS",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
+ }
+ ],
+ "nextLink": ""
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySite.json
index 5b38c908efcf..de50d22576da 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySite.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySite.json
@@ -1,27 +1,27 @@
{
- "parameters":{
- "api-version":"2016-03-01",
- "name":"newsiteinnewASE-NCUS",
- "slot":"Production",
- "resourceGroupName":"Default-Web-NorthCentralUS",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38"
- },
- "responses":{
- "200":{
- "body":{
- "value":[
- {
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
- ],
- "nextLink":""
- }
+ "parameters": {
+ "api-version": "2016-03-01",
+ "name": "newsiteinnewASE-NCUS",
+ "slot": "Production",
+ "resourceGroupName": "Default-Web-NorthCentralUS",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
+ }
+ ],
+ "nextLink": ""
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySubscription.json
index ec2d153e3a73..dd7663a8193c 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySubscription.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListResourceHealthMetadataBySubscription.json
@@ -1,24 +1,24 @@
{
- "parameters":{
- "api-version":"2016-03-01",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38"
- },
- "responses":{
- "200":{
- "body":{
- "value":[
- {
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
- ],
- "nextLink":""
- }
+ "parameters": {
+ "api-version": "2016-03-01",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
+ }
+ ],
+ "nextLink": ""
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/PatchCertificate.json
index b3e4d26e8e47..50d1c9d3a1ee 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/PatchCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/PatchCertificate.json
@@ -1,39 +1,39 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2016-03-01",
+ "certificateEnvelope": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "properties": {
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2016-03-01",
- "certificateEnvelope": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "properties": {
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/VerifyHostingEnvironmentVnet.json
index 817e4a00bab6..77971ac6a30b 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/VerifyHostingEnvironmentVnet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/VerifyHostingEnvironmentVnet.json
@@ -1,15 +1,15 @@
{
"parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2016-03-01",
- "parameters": {
- "properties": {
- "vnetResourceGroup": "vNet123rg",
- "vnetName": "vNet123",
- "vnetSubnetName": "vNet123SubNet"
- }
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2016-03-01",
+ "parameters": {
+ "properties": {
+ "vnetResourceGroup": "vNet123rg",
+ "vnetName": "vNet123",
+ "vnetSubnetName": "vNet123SubNet"
}
- },
+ }
+ },
"responses": {
"200": {
"body": {
@@ -21,4 +21,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsGet.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsGet.json
index 160dc96862f1..433d43fe18f6 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsGet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsGet.json
@@ -30,4 +30,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsList.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsList.json
index e1af7aa22e45..0e445f7163da 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsList.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewayInstallationsList.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysCreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysCreateOrUpdate.json
index 98dee012d333..d9b7015b4d64 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysCreateOrUpdate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysCreateOrUpdate.json
@@ -71,4 +71,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysDelete.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysDelete.json
index 691016fefce3..4a86ee9d26f8 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysDelete.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysDelete.json
@@ -9,4 +9,4 @@
"200": {},
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysGet.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysGet.json
index 5268ba8a73fc..6f3fc1950095 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysGet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysGet.json
@@ -30,4 +30,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysList.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysList.json
index b335b80fbab1..3f60b6b4b206 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysList.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysList.json
@@ -32,4 +32,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysListByResourceGroup.json
index 08bcbe0327c6..67ab2677b700 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysListByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysListByResourceGroup.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysUpdate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysUpdate.json
index 61bbfee1c4da..4145a97399d4 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysUpdate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionGatewaysUpdate.json
@@ -38,4 +38,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsConfirmConsentCode.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsConfirmConsentCode.json
index 6a93679214de..90f64048dc04 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsConfirmConsentCode.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsConfirmConsentCode.json
@@ -19,4 +19,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsCreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsCreateOrUpdate.json
index df56c240207a..5e219bfb9c8b 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsCreateOrUpdate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsCreateOrUpdate.json
@@ -92,4 +92,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsDelete.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsDelete.json
index 0cc410140aa2..d6f293009fef 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsDelete.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsDelete.json
@@ -9,4 +9,4 @@
"200": {},
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsGet.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsGet.json
index f614884287f5..0f4892263faa 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsGet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsGet.json
@@ -44,4 +44,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsList.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsList.json
index 2fe47eb82bd4..2d89913a4674 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsList.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsList.json
@@ -47,4 +47,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsListConsentLinks.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsListConsentLinks.json
index c6e18bc5a163..a80dda3b8d38 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsListConsentLinks.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsListConsentLinks.json
@@ -24,4 +24,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsUpdate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsUpdate.json
index 311739b17261..5f3de6f31c47 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsUpdate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/connectionsUpdate.json
@@ -52,4 +52,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisCreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisCreateOrUpdate.json
index 6076af3beea4..e860b0c97f62 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisCreateOrUpdate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisCreateOrUpdate.json
@@ -45,4 +45,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisDelete.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisDelete.json
index b78c5a1de7dc..c21768be54d0 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisDelete.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisDelete.json
@@ -14,4 +14,4 @@
"200": {},
"204": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisExtractApiDefinitionFromWsdl.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisExtractApiDefinitionFromWsdl.json
index aca023144c1d..f4a6b3722eb6 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisExtractApiDefinitionFromWsdl.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisExtractApiDefinitionFromWsdl.json
@@ -34,4 +34,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisGet.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisGet.json
index 1a84281154b8..e8a200d11b9c 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisGet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisGet.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisList.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisList.json
index baa77a59577b..23cbb9103602 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisList.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisList.json
@@ -33,4 +33,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListByResourceGroup.json
index ea6498a6c4e8..911f4ff2c1d2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListByResourceGroup.json
@@ -46,14 +46,14 @@
"apiType": "Soap",
"wsdlDefinition": {
"service": {
- "qualifiedName": "http://tempuri.org/testSoapCustomApi",
- "endpointQualifiedNames": [
- "http://tempuri.org/basic",
- "http://tempuri.org/ws"
- ]
+ "qualifiedName": "http://tempuri.org/testSoapCustomApi",
+ "endpointQualifiedNames": [
+ "http://tempuri.org/basic",
+ "http://tempuri.org/ws"
+ ]
},
"importMethod": "SoapToRest"
- }
+ }
},
"id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/customApis/testSoapCustomApi",
"name": "testCustomApi",
@@ -64,4 +64,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListWsdlInterfaces.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListWsdlInterfaces.json
index 45796f6eeaf1..194cb0c3f3f0 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListWsdlInterfaces.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisListWsdlInterfaces.json
@@ -22,4 +22,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisMove.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisMove.json
index a698167b5f35..12d7eb4ff658 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisMove.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisMove.json
@@ -11,4 +11,4 @@
"responses": {
"200": {}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisUpdate.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisUpdate.json
index c28165ec7f87..941b13008fc1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisUpdate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/customApisUpdate.json
@@ -39,4 +39,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisGet.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisGet.json
index b26b879ed8ac..f9ffc3e40f2a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisGet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisGet.json
@@ -62,4 +62,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisList.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisList.json
index 3d9e95860a94..5cc54a5ec4b4 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisList.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/examples/managedApisList.json
@@ -65,4 +65,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/logicAppsManagementClient.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/logicAppsManagementClient.json
index 758d407fa995..bdbe775d8372 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/logicAppsManagementClient.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-06-01/logicAppsManagementClient.json
@@ -1,2119 +1,2119 @@
{
- "swagger": "2.0",
- "info": {
- "title": "LogicAppsManagementClient",
- "version": "2016-06-01"
- },
- "host": "management.azure.com",
- "schemes": [
- "https"
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "paths": {
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/connectionGateways": {
- "get": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Lists all of the connection gateways",
- "operationId": "ConnectionGateways_List",
- "description": "Gets a list of gateways under a subscription",
- "x-ms-examples": {
- "List all connection gateways": {
- "$ref": "./examples/connectionGatewaysList.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The gateway definitions",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinitionCollection"
- }
- }
- }
+ "swagger": "2.0",
+ "info": {
+ "title": "LogicAppsManagementClient",
+ "version": "2016-06-01"
+ },
+ "host": "management.azure.com",
+ "schemes": [
+ "https"
+ ],
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "paths": {
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/connectionGateways": {
+ "get": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Lists all of the connection gateways",
+ "operationId": "ConnectionGateways_List",
+ "description": "Gets a list of gateways under a subscription",
+ "x-ms-examples": {
+ "List all connection gateways": {
+ "$ref": "./examples/connectionGatewaysList.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The gateway definitions",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinitionCollection"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connectionGateways": {
- "get": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Lists all of the connection gateways",
- "operationId": "ConnectionGateways_ListByResourceGroup",
- "description": "Gets a list of gateways under a subscription and in a specific resource group",
- "x-ms-examples": {
- "List all connection gateways": {
- "$ref": "./examples/connectionGatewaysListByResourceGroup.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The gateway definitions",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinitionCollection"
- }
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connectionGateways": {
+ "get": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Lists all of the connection gateways",
+ "operationId": "ConnectionGateways_ListByResourceGroup",
+ "description": "Gets a list of gateways under a subscription and in a specific resource group",
+ "x-ms-examples": {
+ "List all connection gateways": {
+ "$ref": "./examples/connectionGatewaysListByResourceGroup.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The gateway definitions",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinitionCollection"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connectionGateways/{connectionGatewayName}": {
- "get": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Gets a specific gateway",
- "operationId": "ConnectionGateways_Get",
- "description": "Gets a specific gateway under a subscription and in a specific resource group",
- "x-ms-examples": {
- "Get the connection gateway definition": {
- "$ref": "./examples/connectionGatewaysGet.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionGatewayNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The gateway definition",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinition"
- }
- }
- }
- },
- "put": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Replaces a specific gateway",
- "operationId": "ConnectionGateways_CreateOrUpdate",
- "description": "Creates or updates a specific gateway for under a subscription and in a specific resource group",
- "x-ms-examples": {
- "Replace a connection gateway definition": {
- "$ref": "./examples/connectionGatewaysCreateOrUpdate.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionGatewayNameParameter"
- },
- {
- "$ref": "#/parameters/connectionGatewayBodyParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The updated gateway definition",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinition"
- }
- },
- "201": {
- "description": "The newly created gateway definition",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinition"
- }
- }
- }
- },
- "patch": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Updates a specific gateway",
- "operationId": "ConnectionGateways_Update",
- "description": "Updates a connection gateway's tags",
- "x-ms-examples": {
- "Update a connection gateway's tags": {
- "$ref": "./examples/connectionGatewaysUpdate.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionGatewayNameParameter"
- },
- {
- "$ref": "#/parameters/connectionGatewayBodyParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The gateway definition",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinition"
- }
- }
- }
- },
- "delete": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Deletes a specific gateway",
- "operationId": "ConnectionGateways_Delete",
- "description": "Deletes a specific gateway for under a subscription and in a specific resource group",
- "x-ms-examples": {
- "Delete a connection gateway definition": {
- "$ref": "./examples/connectionGatewaysDelete.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionGatewayNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "Successfully deleted the connection gateway"
- },
- "204": {
- "description": "No connection gateway to delete"
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connectionGateways/{connectionGatewayName}": {
+ "get": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Gets a specific gateway",
+ "operationId": "ConnectionGateways_Get",
+ "description": "Gets a specific gateway under a subscription and in a specific resource group",
+ "x-ms-examples": {
+ "Get the connection gateway definition": {
+ "$ref": "./examples/connectionGatewaysGet.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionGatewayNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The gateway definition",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinition"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/connectionGatewayInstallations": {
- "get": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Gets a list of installed gateways that the user is an admin of",
- "operationId": "ConnectionGatewayInstallations_List",
- "description": "Gets a list of installed gateways that the user is an admin of, in a specific subscription and at a certain location",
- "x-ms-examples": {
- "List all installations in a region": {
- "$ref": "./examples/connectionGatewayInstallationsList.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/locationParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The gateway installations",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayInstallationDefinitionCollection"
- }
- }
- }
+ }
+ }
+ },
+ "put": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Replaces a specific gateway",
+ "operationId": "ConnectionGateways_CreateOrUpdate",
+ "description": "Creates or updates a specific gateway for under a subscription and in a specific resource group",
+ "x-ms-examples": {
+ "Replace a connection gateway definition": {
+ "$ref": "./examples/connectionGatewaysCreateOrUpdate.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionGatewayNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionGatewayBodyParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The updated gateway definition",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinition"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/connectionGatewayInstallations/{gatewayId}": {
- "get": {
- "tags": [
- "Connection Gateways"
- ],
- "summary": "Gets an installed gateway that the user is an admin of",
- "operationId": "ConnectionGatewayInstallations_Get",
- "description": "Get a specific installed gateway that the user is an admin of, in a specific subscription and at a certain location",
- "x-ms-examples": {
- "Get a specific gateway installation": {
- "$ref": "./examples/connectionGatewayInstallationsGet.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/locationParameter"
- },
- {
- "$ref": "#/parameters/gatewayIdParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The gateway installation",
- "schema": {
- "$ref": "#/definitions/ConnectionGatewayInstallationDefinition"
- }
- }
- }
+ },
+ "201": {
+ "description": "The newly created gateway definition",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinition"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/customApis": {
- "get": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "List of custom APIs",
- "operationId": "CustomApis_List",
- "description": "Gets a list of all custom APIs for a subscription id",
- "x-ms-examples": {
- "List all custom APIs": {
- "$ref": "./examples/customApisList.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- },
- {
- "$ref": "#/parameters/pageSizeParameter"
- },
- {
- "$ref": "#/parameters/skipTokenParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A list of custom APIs",
- "schema": {
- "$ref": "#/definitions/CustomApiDefinitionCollection"
- }
- }
- }
+ }
+ }
+ },
+ "patch": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Updates a specific gateway",
+ "operationId": "ConnectionGateways_Update",
+ "description": "Updates a connection gateway's tags",
+ "x-ms-examples": {
+ "Update a connection gateway's tags": {
+ "$ref": "./examples/connectionGatewaysUpdate.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionGatewayNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionGatewayBodyParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The gateway definition",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinition"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/customApis": {
- "get": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "List of custom APIs",
- "operationId": "CustomApis_ListByResourceGroup",
- "description": "Gets a list of all custom APIs in a subscription for a specific resource group",
- "x-ms-examples": {
- "List all custom APIs": {
- "$ref": "./examples/customApisListByResourceGroup.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- },
- {
- "$ref": "#/parameters/pageSizeParameter"
- },
- {
- "$ref": "#/parameters/skipTokenParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A list of custom APIs",
- "schema": {
- "$ref": "#/definitions/CustomApiDefinitionCollection"
- }
- }
- }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Deletes a specific gateway",
+ "operationId": "ConnectionGateways_Delete",
+ "description": "Deletes a specific gateway for under a subscription and in a specific resource group",
+ "x-ms-examples": {
+ "Delete a connection gateway definition": {
+ "$ref": "./examples/connectionGatewaysDelete.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionGatewayNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successfully deleted the connection gateway"
+ },
+ "204": {
+ "description": "No connection gateway to delete"
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/connectionGatewayInstallations": {
+ "get": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Gets a list of installed gateways that the user is an admin of",
+ "operationId": "ConnectionGatewayInstallations_List",
+ "description": "Gets a list of installed gateways that the user is an admin of, in a specific subscription and at a certain location",
+ "x-ms-examples": {
+ "List all installations in a region": {
+ "$ref": "./examples/connectionGatewayInstallationsList.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/locationParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The gateway installations",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayInstallationDefinitionCollection"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/customApis/{apiName}": {
- "get": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Get a custom API",
- "operationId": "CustomApis_Get",
- "description": "Gets a custom API by name for a specific subscription and resource group",
- "x-ms-examples": {
- "Get a custom API": {
- "$ref": "./examples/customApisGet.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A custom API",
- "schema": {
- "$ref": "#/definitions/CustomApiDefinition"
- }
- }
- }
- },
- "put": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Replaces an existing custom API",
- "operationId": "CustomApis_CreateOrUpdate",
- "description": "Creates or updates an existing custom API",
- "x-ms-examples": {
- "Replace a custom API": {
- "$ref": "./examples/customApisCreateOrUpdate.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiNameParameter"
- },
- {
- "$ref": "#/parameters/customApiParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The replacing custom API",
- "schema": {
- "$ref": "#/definitions/CustomApiDefinition"
- }
- }
- }
- },
- "patch": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Update an existing custom API",
- "operationId": "CustomApis_Update",
- "description": "Updates an existing custom API's tags",
- "x-ms-examples": {
- "Update a custom API's tags": {
- "$ref": "./examples/customApisUpdate.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiNameParameter"
- },
- {
- "$ref": "#/parameters/customApiParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "The updated custom API",
- "schema": {
- "$ref": "#/definitions/CustomApiDefinition"
- }
- }
- }
- },
- "delete": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Delete a custom API",
- "operationId": "CustomApis_Delete",
- "description": "Deletes a custom API from the resource group",
- "x-ms-examples": {
- "Delete a custom API": {
- "$ref": "./examples/customApisDelete.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "Successfully deleted the custom API"
- },
- "204": {
- "description": "No custom API to delete"
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/connectionGatewayInstallations/{gatewayId}": {
+ "get": {
+ "tags": [
+ "Connection Gateways"
+ ],
+ "summary": "Gets an installed gateway that the user is an admin of",
+ "operationId": "ConnectionGatewayInstallations_Get",
+ "description": "Get a specific installed gateway that the user is an admin of, in a specific subscription and at a certain location",
+ "x-ms-examples": {
+ "Get a specific gateway installation": {
+ "$ref": "./examples/connectionGatewayInstallationsGet.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/locationParameter"
+ },
+ {
+ "$ref": "#/parameters/gatewayIdParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The gateway installation",
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayInstallationDefinition"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/customApis/{apiName}/move": {
- "post": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Moves the custom API",
- "operationId": "CustomApis_Move",
- "description": "Moves a specific custom API",
- "x-ms-examples": {
- "Move a custom API": {
- "$ref": "./examples/customApisMove.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/apiNameParameter"
- },
- {
- "$ref": "#/parameters/customApiReferenceParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "custom API successfully moved"
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/customApis": {
+ "get": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "List of custom APIs",
+ "operationId": "CustomApis_List",
+ "description": "Gets a list of all custom APIs for a subscription id",
+ "x-ms-examples": {
+ "List all custom APIs": {
+ "$ref": "./examples/customApisList.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/pageSizeParameter"
+ },
+ {
+ "$ref": "#/parameters/skipTokenParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A list of custom APIs",
+ "schema": {
+ "$ref": "#/definitions/CustomApiDefinitionCollection"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/listWsdlInterfaces": {
- "post": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Lists WSDL interfaces",
- "operationId": "CustomApis_ListWsdlInterfaces",
- "description": "This returns the list of interfaces in the WSDL",
- "x-ms-examples": {
- "List the WSDL interfaces": {
- "$ref": "./examples/customApisListWsdlInterfaces.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/locationParameter"
- },
- {
- "$ref": "#/parameters/wsdlDefinitionParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A list of interfaces",
- "schema": {
- "$ref": "#/definitions/WsdlServiceCollection"
- }
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/customApis": {
+ "get": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "List of custom APIs",
+ "operationId": "CustomApis_ListByResourceGroup",
+ "description": "Gets a list of all custom APIs in a subscription for a specific resource group",
+ "x-ms-examples": {
+ "List all custom APIs": {
+ "$ref": "./examples/customApisListByResourceGroup.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/pageSizeParameter"
+ },
+ {
+ "$ref": "#/parameters/skipTokenParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A list of custom APIs",
+ "schema": {
+ "$ref": "#/definitions/CustomApiDefinitionCollection"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/extractApiDefinitionFromWsdl": {
- "post": {
- "tags": [
- "Custom APIs"
- ],
- "summary": "Returns API definition from WSDL",
- "operationId": "CustomApis_ExtractApiDefinitionFromWsdl",
- "description": "Parses the specified WSDL and extracts the API definition",
- "x-ms-examples": {
- "Extract definition from WSDL": {
- "$ref": "./examples/customApisExtractApiDefinitionFromWsdl.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/locationParameter"
- },
- {
- "$ref": "#/parameters/wsdlDefinitionParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "Swagger of the API extracted from the WSDL",
- "schema": {}
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/customApis/{apiName}": {
+ "get": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Get a custom API",
+ "operationId": "CustomApis_Get",
+ "description": "Gets a custom API by name for a specific subscription and resource group",
+ "x-ms-examples": {
+ "Get a custom API": {
+ "$ref": "./examples/customApisGet.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A custom API",
+ "schema": {
+ "$ref": "#/definitions/CustomApiDefinition"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis": {
- "get": {
- "tags": [
- "Managed APIs"
- ],
- "summary": "Lists managed APIs",
- "operationId": "ManagedApis_List",
- "description": "Gets a list of managed APIs",
- "x-ms-examples": {
- "List all managed APIs": {
- "$ref": "./examples/managedApisList.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/locationParameter"
- },
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A list of managed APIs",
- "schema": {
- "$ref": "#/definitions/ManagedApiDefinitionCollection"
- }
- }
- }
+ }
+ }
+ },
+ "put": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Replaces an existing custom API",
+ "operationId": "CustomApis_CreateOrUpdate",
+ "description": "Creates or updates an existing custom API",
+ "x-ms-examples": {
+ "Replace a custom API": {
+ "$ref": "./examples/customApisCreateOrUpdate.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiNameParameter"
+ },
+ {
+ "$ref": "#/parameters/customApiParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The replacing custom API",
+ "schema": {
+ "$ref": "#/definitions/CustomApiDefinition"
}
- },
- "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis/{apiName}": {
- "get": {
- "tags": [
- "Managed APIs"
- ],
- "summary": "Gets managed API",
- "operationId": "ManagedApis_Get",
- "description": "Gets a managed API",
- "x-ms-examples": {
- "Get a managed API": {
- "$ref": "./examples/managedApisGet.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/locationParameter"
- },
- {
- "$ref": "#/parameters/apiNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A managed API definition",
- "schema": {
- "$ref": "#/definitions/ManagedApiDefinition"
- }
- }
- }
+ }
+ }
+ },
+ "patch": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Update an existing custom API",
+ "operationId": "CustomApis_Update",
+ "description": "Updates an existing custom API's tags",
+ "x-ms-examples": {
+ "Update a custom API's tags": {
+ "$ref": "./examples/customApisUpdate.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiNameParameter"
+ },
+ {
+ "$ref": "#/parameters/customApiParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The updated custom API",
+ "schema": {
+ "$ref": "#/definitions/CustomApiDefinition"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections": {
- "get": {
- "tags": [
- "Connections"
- ],
- "summary": "Get all connections",
- "operationId": "Connections_List",
- "description": "Gets a list of connections",
- "x-ms-examples": {
- "List all connections": {
- "$ref": "./examples/connectionsList.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/pageSizeParameter"
- },
- {
- "$ref": "#/parameters/filterParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A list of API connection",
- "schema": {
- "$ref": "#/definitions/ApiConnectionDefinitionCollection"
- }
- }
- }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Delete a custom API",
+ "operationId": "CustomApis_Delete",
+ "description": "Deletes a custom API from the resource group",
+ "x-ms-examples": {
+ "Delete a custom API": {
+ "$ref": "./examples/customApisDelete.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successfully deleted the custom API"
+ },
+ "204": {
+ "description": "No custom API to delete"
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/customApis/{apiName}/move": {
+ "post": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Moves the custom API",
+ "operationId": "CustomApis_Move",
+ "description": "Moves a specific custom API",
+ "x-ms-examples": {
+ "Move a custom API": {
+ "$ref": "./examples/customApisMove.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiNameParameter"
+ },
+ {
+ "$ref": "#/parameters/customApiReferenceParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "custom API successfully moved"
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/listWsdlInterfaces": {
+ "post": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Lists WSDL interfaces",
+ "operationId": "CustomApis_ListWsdlInterfaces",
+ "description": "This returns the list of interfaces in the WSDL",
+ "x-ms-examples": {
+ "List the WSDL interfaces": {
+ "$ref": "./examples/customApisListWsdlInterfaces.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/locationParameter"
+ },
+ {
+ "$ref": "#/parameters/wsdlDefinitionParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A list of interfaces",
+ "schema": {
+ "$ref": "#/definitions/WsdlServiceCollection"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}": {
- "get": {
- "tags": [
- "Connections"
- ],
- "summary": "Get a connection",
- "operationId": "Connections_Get",
- "description": "Get a specific connection",
- "x-ms-examples": {
- "Get a connection": {
- "$ref": "./examples/connectionsGet.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "An API connection",
- "schema": {
- "$ref": "#/definitions/ApiConnectionDefinition"
- }
- }
- }
- },
- "put": {
- "tags": [
- "Connections"
- ],
- "summary": "Replace an existing connection",
- "operationId": "Connections_CreateOrUpdate",
- "description": "Creates or updates a connection",
- "x-ms-examples": {
- "Replace a connection": {
- "$ref": "./examples/connectionsCreateOrUpdate.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionNameParameter"
- },
- {
- "$ref": "#/parameters/apiConnectionParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "New API connection created",
- "schema": {
- "$ref": "#/definitions/ApiConnectionDefinition"
- }
- },
- "201": {
- "description": "Already existing API connection updated",
- "schema": {
- "$ref": "#/definitions/ApiConnectionDefinition"
- }
- }
- }
- },
- "patch": {
- "tags": [
- "Connections"
- ],
- "summary": "Update an existing connection",
- "operationId": "Connections_Update",
- "description": "Updates a connection's tags",
- "x-ms-examples": {
- "Update a connection's tags": {
- "$ref": "./examples/connectionsUpdate.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionNameParameter"
- },
- {
- "$ref": "#/parameters/apiConnectionParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "API connection updated",
- "schema": {
- "$ref": "#/definitions/ApiConnectionDefinition"
- }
- }
- }
- },
- "delete": {
- "tags": [
- "Connections"
- ],
- "summary": "Delete an existing connection",
- "operationId": "Connections_Delete",
- "description": "Deletes a connection",
- "x-ms-examples": {
- "Delete a connection": {
- "$ref": "./examples/connectionsDelete.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionNameParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "Successfully deleted the connection"
- },
- "204": {
- "description": "No connection to delete"
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/extractApiDefinitionFromWsdl": {
+ "post": {
+ "tags": [
+ "Custom APIs"
+ ],
+ "summary": "Returns API definition from WSDL",
+ "operationId": "CustomApis_ExtractApiDefinitionFromWsdl",
+ "description": "Parses the specified WSDL and extracts the API definition",
+ "x-ms-examples": {
+ "Extract definition from WSDL": {
+ "$ref": "./examples/customApisExtractApiDefinitionFromWsdl.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/locationParameter"
+ },
+ {
+ "$ref": "#/parameters/wsdlDefinitionParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Swagger of the API extracted from the WSDL",
+ "schema": {}
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis": {
+ "get": {
+ "tags": [
+ "Managed APIs"
+ ],
+ "summary": "Lists managed APIs",
+ "operationId": "ManagedApis_List",
+ "description": "Gets a list of managed APIs",
+ "x-ms-examples": {
+ "List all managed APIs": {
+ "$ref": "./examples/managedApisList.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/locationParameter"
+ },
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A list of managed APIs",
+ "schema": {
+ "$ref": "#/definitions/ManagedApiDefinitionCollection"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/listConsentLinks": {
- "post": {
- "tags": [
- "Connections"
- ],
- "summary": "Lists consent links for a connection",
- "operationId": "Connections_ListConsentLinks",
- "description": "Lists the consent links of a connection",
- "x-ms-examples": {
- "List consent links": {
- "$ref": "./examples/connectionsListConsentLinks.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionNameParameter"
- },
- {
- "$ref": "#/parameters/listConsentLinkParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "A list of the consent links",
- "schema": {
- "$ref": "#/definitions/ConsentLinkCollection"
- }
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis/{apiName}": {
+ "get": {
+ "tags": [
+ "Managed APIs"
+ ],
+ "summary": "Gets managed API",
+ "operationId": "ManagedApis_Get",
+ "description": "Gets a managed API",
+ "x-ms-examples": {
+ "Get a managed API": {
+ "$ref": "./examples/managedApisGet.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/locationParameter"
+ },
+ {
+ "$ref": "#/parameters/apiNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A managed API definition",
+ "schema": {
+ "$ref": "#/definitions/ManagedApiDefinition"
}
- },
- "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/confirmConsentCode": {
- "post": {
- "tags": [
- "Connections"
- ],
- "summary": "Confirms the consent code for a connection",
- "operationId": "Connections_ConfirmConsentCode",
- "description": "Confirms consent code of a connection",
- "x-ms-examples": {
- "Confirm consent code": {
- "$ref": "./examples/connectionsConfirmConsentCode.json"
- }
- },
- "parameters": [
- {
- "$ref": "#/parameters/subscriptionIdParameter"
- },
- {
- "$ref": "#/parameters/resourceGroupNameParameter"
- },
- {
- "$ref": "#/parameters/connectionNameParameter"
- },
- {
- "$ref": "#/parameters/confirmConsentCodeParameter"
- },
- {
- "$ref": "#/parameters/apiVersionParameter"
- }
- ],
- "responses": {
- "200": {
- "description": "Confirmation of the consent code",
- "schema": {
- "$ref": "#/definitions/ConfirmConsentCodeDefinition"
- }
- }
- }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections": {
+ "get": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Get all connections",
+ "operationId": "Connections_List",
+ "description": "Gets a list of connections",
+ "x-ms-examples": {
+ "List all connections": {
+ "$ref": "./examples/connectionsList.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/pageSizeParameter"
+ },
+ {
+ "$ref": "#/parameters/filterParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A list of API connection",
+ "schema": {
+ "$ref": "#/definitions/ApiConnectionDefinitionCollection"
}
+ }
}
+ }
},
- "parameters": {
- "apiConnectionParameter": {
- "name": "connection",
- "description": "The connection",
- "in": "body",
- "required": true,
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}": {
+ "get": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Get a connection",
+ "operationId": "Connections_Get",
+ "description": "Get a specific connection",
+ "x-ms-examples": {
+ "Get a connection": {
+ "$ref": "./examples/connectionsGet.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "An API connection",
"schema": {
- "$ref": "#/definitions/ApiConnectionDefinition"
- },
- "x-ms-parameter-location": "method"
- },
- "apiNameParameter": {
- "type": "string",
- "name": "apiName",
- "description": "API name",
- "in": "path",
- "required": true,
- "x-ms-parameter-location": "method"
- },
- "apiVersionParameter": {
- "name": "api-version",
- "in": "query",
- "description": "API Version",
- "required": true,
- "type": "string",
- "x-ms-parameter-location": "method"
- },
- "confirmConsentCodeParameter": {
- "name": "confirmConsentCode",
- "description": "The consent code confirmation",
- "in": "body",
- "required": true,
+ "$ref": "#/definitions/ApiConnectionDefinition"
+ }
+ }
+ }
+ },
+ "put": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Replace an existing connection",
+ "operationId": "Connections_CreateOrUpdate",
+ "description": "Creates or updates a connection",
+ "x-ms-examples": {
+ "Replace a connection": {
+ "$ref": "./examples/connectionsCreateOrUpdate.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiConnectionParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "New API connection created",
"schema": {
- "$ref": "#/definitions/ConfirmConsentCodeDefinition"
- },
- "x-ms-parameter-location": "method"
- },
- "connectionGatewayBodyParameter": {
- "name": "connectionGateway",
- "description": "The connection gateway",
- "in": "body",
- "required": true,
+ "$ref": "#/definitions/ApiConnectionDefinition"
+ }
+ },
+ "201": {
+ "description": "Already existing API connection updated",
"schema": {
- "$ref": "#/definitions/ConnectionGatewayDefinition"
- },
- "x-ms-parameter-location": "method"
- },
- "connectionGatewayNameParameter": {
- "name": "connectionGatewayName",
- "description": "The connection gateway name",
- "in": "path",
- "required": true,
- "type": "string",
- "x-ms-parameter-location": "method"
- },
- "connectionNameParameter": {
- "type": "string",
- "name": "connectionName",
- "description": "Connection name",
- "in": "path",
- "required": true,
- "x-ms-parameter-location": "method"
- },
- "customApiParameter": {
- "name": "customApi",
- "description": "The custom API",
- "in": "body",
- "required": true,
+ "$ref": "#/definitions/ApiConnectionDefinition"
+ }
+ }
+ }
+ },
+ "patch": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Update an existing connection",
+ "operationId": "Connections_Update",
+ "description": "Updates a connection's tags",
+ "x-ms-examples": {
+ "Update a connection's tags": {
+ "$ref": "./examples/connectionsUpdate.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiConnectionParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "API connection updated",
"schema": {
- "$ref": "#/definitions/CustomApiDefinition"
- },
- "x-ms-parameter-location": "method"
- },
- "customApiReferenceParameter": {
- "name": "customApiReference",
- "description": "The custom API reference",
- "in": "body",
- "required": true,
+ "$ref": "#/definitions/ApiConnectionDefinition"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Delete an existing connection",
+ "operationId": "Connections_Delete",
+ "description": "Deletes a connection",
+ "x-ms-examples": {
+ "Delete a connection": {
+ "$ref": "./examples/connectionsDelete.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionNameParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successfully deleted the connection"
+ },
+ "204": {
+ "description": "No connection to delete"
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/listConsentLinks": {
+ "post": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Lists consent links for a connection",
+ "operationId": "Connections_ListConsentLinks",
+ "description": "Lists the consent links of a connection",
+ "x-ms-examples": {
+ "List consent links": {
+ "$ref": "./examples/connectionsListConsentLinks.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionNameParameter"
+ },
+ {
+ "$ref": "#/parameters/listConsentLinkParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "A list of the consent links",
"schema": {
- "$ref": "#/definitions/CustomApiReference"
- },
- "x-ms-parameter-location": "method"
- },
- "filterParameter": {
- "name": "$filter",
- "description": "The filter to apply on the operation",
- "in": "query",
- "required": false,
- "type": "string",
- "x-ms-parameter-location": "method"
- },
- "gatewayIdParameter": {
- "type": "string",
- "name": "gatewayId",
- "description": "Gateway ID",
- "in": "path",
- "required": true,
- "x-ms-parameter-location": "method"
- },
- "listConnectionKeysParameter": {
- "name": "listConnectionKeys",
- "description": "The connection keys to list",
- "in": "body",
- "required": true,
+ "$ref": "#/definitions/ConsentLinkCollection"
+ }
+ }
+ }
+ }
+ },
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/connections/{connectionName}/confirmConsentCode": {
+ "post": {
+ "tags": [
+ "Connections"
+ ],
+ "summary": "Confirms the consent code for a connection",
+ "operationId": "Connections_ConfirmConsentCode",
+ "description": "Confirms consent code of a connection",
+ "x-ms-examples": {
+ "Confirm consent code": {
+ "$ref": "./examples/connectionsConfirmConsentCode.json"
+ }
+ },
+ "parameters": [
+ {
+ "$ref": "#/parameters/subscriptionIdParameter"
+ },
+ {
+ "$ref": "#/parameters/resourceGroupNameParameter"
+ },
+ {
+ "$ref": "#/parameters/connectionNameParameter"
+ },
+ {
+ "$ref": "#/parameters/confirmConsentCodeParameter"
+ },
+ {
+ "$ref": "#/parameters/apiVersionParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Confirmation of the consent code",
"schema": {
- "$ref": "#/definitions/ListConnectionKeysDefinition"
+ "$ref": "#/definitions/ConfirmConsentCodeDefinition"
+ }
+ }
+ }
+ }
+ }
+ },
+ "parameters": {
+ "apiConnectionParameter": {
+ "name": "connection",
+ "description": "The connection",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/ApiConnectionDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "apiNameParameter": {
+ "type": "string",
+ "name": "apiName",
+ "description": "API name",
+ "in": "path",
+ "required": true,
+ "x-ms-parameter-location": "method"
+ },
+ "apiVersionParameter": {
+ "name": "api-version",
+ "in": "query",
+ "description": "API Version",
+ "required": true,
+ "type": "string",
+ "x-ms-parameter-location": "method"
+ },
+ "confirmConsentCodeParameter": {
+ "name": "confirmConsentCode",
+ "description": "The consent code confirmation",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/ConfirmConsentCodeDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "connectionGatewayBodyParameter": {
+ "name": "connectionGateway",
+ "description": "The connection gateway",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/ConnectionGatewayDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "connectionGatewayNameParameter": {
+ "name": "connectionGatewayName",
+ "description": "The connection gateway name",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-parameter-location": "method"
+ },
+ "connectionNameParameter": {
+ "type": "string",
+ "name": "connectionName",
+ "description": "Connection name",
+ "in": "path",
+ "required": true,
+ "x-ms-parameter-location": "method"
+ },
+ "customApiParameter": {
+ "name": "customApi",
+ "description": "The custom API",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/CustomApiDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "customApiReferenceParameter": {
+ "name": "customApiReference",
+ "description": "The custom API reference",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/CustomApiReference"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "filterParameter": {
+ "name": "$filter",
+ "description": "The filter to apply on the operation",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "x-ms-parameter-location": "method"
+ },
+ "gatewayIdParameter": {
+ "type": "string",
+ "name": "gatewayId",
+ "description": "Gateway ID",
+ "in": "path",
+ "required": true,
+ "x-ms-parameter-location": "method"
+ },
+ "listConnectionKeysParameter": {
+ "name": "listConnectionKeys",
+ "description": "The connection keys to list",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/ListConnectionKeysDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "listConsentLinkParameter": {
+ "name": "listConsentLink",
+ "description": "The consent links",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/ListConsentLinksDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "locationParameter": {
+ "name": "location",
+ "description": "The location",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-parameter-location": "method"
+ },
+ "pageSizeParameter": {
+ "name": "$top",
+ "description": "The number of items to be included in the result",
+ "in": "query",
+ "required": false,
+ "type": "integer",
+ "format": "int32",
+ "x-ms-parameter-location": "method"
+ },
+ "resourceGroupNameParameter": {
+ "name": "resourceGroupName",
+ "description": "The resource group",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-parameter-location": "method"
+ },
+ "skipTokenParameter": {
+ "type": "string",
+ "name": "skiptoken",
+ "description": "Skip Token",
+ "in": "query",
+ "required": false,
+ "x-ms-parameter-location": "method"
+ },
+ "subscriptionIdParameter": {
+ "name": "subscriptionId",
+ "in": "path",
+ "description": "Subscription Id",
+ "required": true,
+ "type": "string",
+ "x-ms-parameter-location": "method"
+ },
+ "wsdlDefinitionParameter": {
+ "name": "wsdlDefinition",
+ "description": "WSDL definition",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/WsdlDefinition"
+ },
+ "x-ms-parameter-location": "method"
+ }
+ },
+ "definitions": {
+ "ApiConnectionDefinitionCollection": {
+ "description": "A list of API connection definitions",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of API connections",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ApiConnectionDefinition"
+ }
+ }
+ }
+ },
+ "ManagedApiDefinitionCollection": {
+ "description": "A list of managed API definitions",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of managed APIs",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ManagedApiDefinition"
+ }
+ }
+ }
+ },
+ "WsdlServiceCollection": {
+ "description": "A list of custom API WSDL interfaces",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of WSDL interfaces",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/WsdlService"
+ }
+ }
+ }
+ },
+ "CustomApiDefinitionCollection": {
+ "description": "A list of custom API definitions",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of custom APIs",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CustomApiDefinition"
+ }
+ }
+ }
+ },
+ "ConnectionGatewayInstallationDefinitionCollection": {
+ "description": "A list of connection gateway installation definitions",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of connection gateway installations",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ConnectionGatewayInstallationDefinition"
+ }
+ }
+ }
+ },
+ "ConnectionGatewayDefinitionCollection": {
+ "description": "A list of connection gateway definitions",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of connection gateways",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ConnectionGatewayDefinition"
+ }
+ }
+ }
+ },
+ "ConnectionGatewayDefinition": {
+ "description": "The gateway definition",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "properties": {
+ "properties": {
+ "connectionGatewayInstallation": {
+ "$ref": "#/definitions/ConnectionGatewayReference"
},
- "x-ms-parameter-location": "method"
- },
- "listConsentLinkParameter": {
- "name": "listConsentLink",
- "description": "The consent links",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/ListConsentLinksDefinition"
+ "contactInformation": {
+ "description": "The gateway admin",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
},
- "x-ms-parameter-location": "method"
- },
- "locationParameter": {
- "name": "location",
- "description": "The location",
- "in": "path",
- "required": true,
- "type": "string",
- "x-ms-parameter-location": "method"
- },
- "pageSizeParameter": {
- "name": "$top",
- "description": "The number of items to be included in the result",
- "in": "query",
- "required": false,
- "type": "integer",
- "format": "int32",
- "x-ms-parameter-location": "method"
- },
- "resourceGroupNameParameter": {
- "name": "resourceGroupName",
- "description": "The resource group",
- "in": "path",
- "required": true,
- "type": "string",
- "x-ms-parameter-location": "method"
- },
- "skipTokenParameter": {
- "type": "string",
- "name": "skiptoken",
- "description": "Skip Token",
- "in": "query",
- "required": false,
- "x-ms-parameter-location": "method"
- },
- "subscriptionIdParameter": {
- "name": "subscriptionId",
- "in": "path",
- "description": "Subscription Id",
- "required": true,
- "type": "string",
- "x-ms-parameter-location": "method"
- },
- "wsdlDefinitionParameter": {
- "name": "wsdlDefinition",
- "description": "WSDL definition",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/WsdlDefinition"
+ "displayName": {
+ "description": "The gateway display name",
+ "type": "string"
},
- "x-ms-parameter-location": "method"
- }
- },
- "definitions": {
- "ApiConnectionDefinitionCollection": {
- "description": "A list of API connection definitions",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of API connections",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ApiConnectionDefinition"
- }
- }
- }
- },
- "ManagedApiDefinitionCollection": {
- "description": "A list of managed API definitions",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of managed APIs",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ManagedApiDefinition"
- }
- }
- }
- },
- "WsdlServiceCollection": {
- "description": "A list of custom API WSDL interfaces",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of WSDL interfaces",
- "type": "array",
- "items": {
- "$ref": "#/definitions/WsdlService"
- }
- }
- }
- },
- "CustomApiDefinitionCollection": {
- "description": "A list of custom API definitions",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of custom APIs",
- "type": "array",
- "items": {
- "$ref": "#/definitions/CustomApiDefinition"
- }
- }
- }
- },
- "ConnectionGatewayInstallationDefinitionCollection": {
- "description": "A list of connection gateway installation definitions",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of connection gateway installations",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ConnectionGatewayInstallationDefinition"
- }
- }
- }
- },
- "ConnectionGatewayDefinitionCollection": {
- "description": "A list of connection gateway definitions",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of connection gateways",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ConnectionGatewayDefinition"
- }
- }
- }
- },
- "ConnectionGatewayDefinition": {
- "description": "The gateway definition",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "properties": {
- "properties": {
- "connectionGatewayInstallation": {
- "$ref": "#/definitions/ConnectionGatewayReference"
- },
- "contactInformation": {
- "description": "The gateway admin",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "displayName": {
- "description": "The gateway display name",
- "type": "string"
- },
- "description": {
- "description": "The gateway description",
- "type": "string"
- },
- "machineName": {
- "description": "The machine name of the gateway",
- "type": "string"
- },
- "status": {
- "description": "The gateway status",
- "type": "object"
- },
- "backendUri": {
- "description": "The URI of the backend",
- "type": "string"
- }
- }
- }
+ "description": {
+ "description": "The gateway description",
+ "type": "string"
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ]
- },
- "ConnectionGatewayReference": {
- "description": "The gateway installation reference",
- "type": "object",
- "properties": {
- "location": {
- "description": "Resource reference location",
- "type": "string"
- },
- "name": {
- "description": "Resource reference name",
- "type": "string"
- }
+ "machineName": {
+ "description": "The machine name of the gateway",
+ "type": "string"
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceReference"
- }
- ]
- },
- "ResourceReference": {
- "type": "object",
- "x-abstract": true,
- "additionalProperties": false,
- "properties": {
- "id": {
- "description": "Resource reference id",
- "type": "string"
- },
- "type": {
- "description": "Resource reference type",
- "type": "string"
- }
+ "status": {
+ "description": "The gateway status",
+ "type": "object"
+ },
+ "backendUri": {
+ "description": "The URI of the backend",
+ "type": "string"
}
- },
- "ResourceDefinition": {
- "description": "A resource",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "id": {
- "description": "Resource id",
- "type": "string",
- "readOnly": true
- },
- "name": {
- "description": "Resource name",
- "type": "string",
- "readOnly": true
- },
- "type": {
- "description": "Resource type",
- "type": "string",
- "readOnly": true
- },
- "location": {
- "description": "Resource location",
- "type": "string"
- },
- "etag": {
- "description": "Resource ETag",
- "type": "string"
- },
- "tags": {
- "$ref": "#/definitions/TagsDictionary"
- }
+ }
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ]
+ },
+ "ConnectionGatewayReference": {
+ "description": "The gateway installation reference",
+ "type": "object",
+ "properties": {
+ "location": {
+ "description": "Resource reference location",
+ "type": "string"
+ },
+ "name": {
+ "description": "Resource reference name",
+ "type": "string"
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceReference"
+ }
+ ]
+ },
+ "ResourceReference": {
+ "type": "object",
+ "x-abstract": true,
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "description": "Resource reference id",
+ "type": "string"
+ },
+ "type": {
+ "description": "Resource reference type",
+ "type": "string"
+ }
+ }
+ },
+ "ResourceDefinition": {
+ "description": "A resource",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "description": "Resource id",
+ "type": "string",
+ "readOnly": true
+ },
+ "name": {
+ "description": "Resource name",
+ "type": "string",
+ "readOnly": true
+ },
+ "type": {
+ "description": "Resource type",
+ "type": "string",
+ "readOnly": true
+ },
+ "location": {
+ "description": "Resource location",
+ "type": "string"
+ },
+ "etag": {
+ "description": "Resource ETag",
+ "type": "string"
+ },
+ "tags": {
+ "$ref": "#/definitions/TagsDictionary"
+ }
+ },
+ "x-ms-azure-resource": true
+ },
+ "ConnectionGatewayInstallationDefinition": {
+ "description": "The gateway installation",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "properties": {
+ "properties": {
+ "connectionGateway": {
+ "$ref": "#/definitions/ConnectionGatewayReference"
},
- "x-ms-azure-resource": true
- },
- "ConnectionGatewayInstallationDefinition": {
- "description": "The gateway installation",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "properties": {
- "properties": {
- "connectionGateway": {
- "$ref": "#/definitions/ConnectionGatewayReference"
- },
- "contactInformation": {
- "description": "The gateway admin",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "displayName": {
- "description": "The gateway display name",
- "type": "string"
- },
- "description": {
- "description": "The gateway description",
- "type": "string"
- },
- "machineName": {
- "description": "The machine name of the gateway",
- "type": "string"
- },
- "status": {
- "description": "The gateway status",
- "type": "object"
- },
- "backendUri": {
- "description": "The URI of the backend",
- "type": "string"
- }
- }
- }
+ "contactInformation": {
+ "description": "The gateway admin",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ]
- },
- "CustomApiDefinition": {
- "type": "object",
- "description": "A custom API",
- "additionalProperties": false,
- "properties": {
- "properties": {
- "$ref": "#/definitions/CustomApiPropertiesDefinition"
- }
+ "displayName": {
+ "description": "The gateway display name",
+ "type": "string"
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ]
- },
- "CustomApiPropertiesDefinition": {
- "type": "object",
- "description": "Custom API properties",
- "additionalProperties": false,
- "properties": {
- "connectionParameters": {
- "description": "Connection parameters",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/ConnectionParameter"
- }
- },
- "runtimeUrls": {
- "type": "array",
- "description": "Runtime URLs",
- "items": {
- "type": "string"
- }
- },
- "capabilities": {
- "type": "array",
- "description": "The custom API capabilities",
- "items": {
- "type": "string"
- }
- },
- "swagger": {
- "type": "object",
- "description": "The JSON representation of the swagger"
- },
- "brandColor": {
- "type": "string",
- "description": "Brand color"
- },
- "description": {
- "type": "string",
- "description": "The custom API description"
- },
- "displayName": {
- "type": "string",
- "description": "The display name"
- },
- "iconUri": {
- "type": "string",
- "description": "The icon URI"
- },
- "backendService": {
- "$ref": "#/definitions/ApiResourceBackendService"
- },
- "apiDefinitions": {
- "$ref": "#/definitions/ApiResourceDefinitions"
- },
- "apiType": {
- "$ref": "#/definitions/ApiType"
- },
- "wsdlDefinition": {
- "$ref": "#/definitions/WsdlDefinition"
- }
- }
- },
- "ConnectionParameter": {
- "description": "Connection provider parameters",
- "type": "object",
- "properties": {
- "type": {
- "description": "Type of the parameter",
- "enum": [
- "string",
- "securestring",
- "secureobject",
- "int",
- "bool",
- "object",
- "array",
- "oauthSetting",
- "connection"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "ConnectionParameterType",
- "modelAsString": false
- }
- },
- "oAuthSettings": {
- "$ref": "#/definitions/ApiOAuthSettings"
- }
- }
- },
- "ApiOAuthSettings": {
- "description": "OAuth settings for the connection provider",
- "type": "object",
- "properties": {
- "identityProvider": {
- "description": "Identity provider",
- "type": "string"
- },
- "clientId": {
- "description": "Resource provider client id",
- "type": "string"
- },
- "clientSecret": {
- "description": "Client Secret needed for OAuth",
- "type": "string"
- },
- "scopes": {
- "description": "OAuth scopes",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "redirectUrl": {
- "description": "Url",
- "type": "string"
- },
- "properties": {
- "type": "object",
- "description": "Read only properties for this oauth setting."
- },
- "customParameters": {
- "description": "OAuth parameters key is the name of parameter",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/ApiOAuthSettingsParameter"
- }
- }
- }
- },
- "ApiOAuthSettingsParameter": {
- "description": "OAuth settings for the API",
- "type": "object",
- "properties": {
- "value": {
- "description": "Value of the setting",
- "type": "string"
- },
- "options": {
- "type": "object",
- "description": "Options available to this parameter"
- },
- "uiDefinition": {
- "type": "object",
- "description": "UI definitions per culture as caller can specify the culture"
- }
+ "description": {
+ "description": "The gateway description",
+ "type": "string"
+ },
+ "machineName": {
+ "description": "The machine name of the gateway",
+ "type": "string"
+ },
+ "status": {
+ "description": "The gateway status",
+ "type": "object"
+ },
+ "backendUri": {
+ "description": "The URI of the backend",
+ "type": "string"
}
+ }
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ]
+ },
+ "CustomApiDefinition": {
+ "type": "object",
+ "description": "A custom API",
+ "additionalProperties": false,
+ "properties": {
+ "properties": {
+ "$ref": "#/definitions/CustomApiPropertiesDefinition"
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ]
+ },
+ "CustomApiPropertiesDefinition": {
+ "type": "object",
+ "description": "Custom API properties",
+ "additionalProperties": false,
+ "properties": {
+ "connectionParameters": {
+ "description": "Connection parameters",
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/definitions/ConnectionParameter"
+ }
+ },
+ "runtimeUrls": {
+ "type": "array",
+ "description": "Runtime URLs",
+ "items": {
+ "type": "string"
+ }
+ },
+ "capabilities": {
+ "type": "array",
+ "description": "The custom API capabilities",
+ "items": {
+ "type": "string"
+ }
+ },
+ "swagger": {
+ "type": "object",
+ "description": "The JSON representation of the swagger"
+ },
+ "brandColor": {
+ "type": "string",
+ "description": "Brand color"
+ },
+ "description": {
+ "type": "string",
+ "description": "The custom API description"
+ },
+ "displayName": {
+ "type": "string",
+ "description": "The display name"
+ },
+ "iconUri": {
+ "type": "string",
+ "description": "The icon URI"
+ },
+ "backendService": {
+ "$ref": "#/definitions/ApiResourceBackendService"
+ },
+ "apiDefinitions": {
+ "$ref": "#/definitions/ApiResourceDefinitions"
+ },
+ "apiType": {
+ "$ref": "#/definitions/ApiType"
+ },
+ "wsdlDefinition": {
+ "$ref": "#/definitions/WsdlDefinition"
+ }
+ }
+ },
+ "ConnectionParameter": {
+ "description": "Connection provider parameters",
+ "type": "object",
+ "properties": {
+ "type": {
+ "description": "Type of the parameter",
+ "enum": [
+ "string",
+ "securestring",
+ "secureobject",
+ "int",
+ "bool",
+ "object",
+ "array",
+ "oauthSetting",
+ "connection"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "ConnectionParameterType",
+ "modelAsString": false
+ }
+ },
+ "oAuthSettings": {
+ "$ref": "#/definitions/ApiOAuthSettings"
+ }
+ }
+ },
+ "ApiOAuthSettings": {
+ "description": "OAuth settings for the connection provider",
+ "type": "object",
+ "properties": {
+ "identityProvider": {
+ "description": "Identity provider",
+ "type": "string"
+ },
+ "clientId": {
+ "description": "Resource provider client id",
+ "type": "string"
+ },
+ "clientSecret": {
+ "description": "Client Secret needed for OAuth",
+ "type": "string"
+ },
+ "scopes": {
+ "description": "OAuth scopes",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "redirectUrl": {
+ "description": "Url",
+ "type": "string"
+ },
+ "properties": {
+ "type": "object",
+ "description": "Read only properties for this oauth setting."
+ },
+ "customParameters": {
+ "description": "OAuth parameters key is the name of parameter",
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/definitions/ApiOAuthSettingsParameter"
+ }
+ }
+ }
+ },
+ "ApiOAuthSettingsParameter": {
+ "description": "OAuth settings for the API",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Value of the setting",
+ "type": "string"
+ },
+ "options": {
+ "type": "object",
+ "description": "Options available to this parameter"
+ },
+ "uiDefinition": {
+ "type": "object",
+ "description": "UI definitions per culture as caller can specify the culture"
+ }
+ }
+ },
+ "ApiResourceBackendService": {
+ "type": "object",
+ "description": "The API backend service",
+ "additionalProperties": false,
+ "properties": {
+ "serviceUrl": {
+ "type": "string",
+ "description": "The service URL"
+ }
+ }
+ },
+ "ApiResourceDefinitions": {
+ "type": "object",
+ "description": "API Definitions",
+ "additionalProperties": false,
+ "properties": {
+ "originalSwaggerUrl": {
+ "type": "string",
+ "description": "The original swagger URL"
+ },
+ "modifiedSwaggerUrl": {
+ "type": "string",
+ "description": "The modified swagger URL"
+ }
+ }
+ },
+ "ApiType": {
+ "type": "string",
+ "description": "The API type",
+ "enum": [
+ "NotSpecified",
+ "Rest",
+ "Soap"
+ ],
+ "x-ms-enum": {
+ "name": "ApiType",
+ "modelAsString": true
+ }
+ },
+ "WsdlDefinition": {
+ "type": "object",
+ "description": "The WSDL definition",
+ "additionalProperties": false,
+ "properties": {
+ "url": {
+ "type": "string",
+ "description": "The WSDL URL"
+ },
+ "content": {
+ "type": "string",
+ "description": "The WSDL content"
+ },
+ "service": {
+ "$ref": "#/definitions/WsdlService"
+ },
+ "importMethod": {
+ "$ref": "#/definitions/WsdlImportMethod"
+ }
+ }
+ },
+ "WsdlService": {
+ "type": "object",
+ "description": "The service with name and endpoint names",
+ "additionalProperties": false,
+ "required": [
+ "qualifiedName"
+ ],
+ "properties": {
+ "qualifiedName": {
+ "description": "The service's qualified name",
+ "type": "string"
+ },
+ "endpointQualifiedNames": {
+ "type": "array",
+ "description": "List of the endpoints' qualified names",
+ "items": {
+ "type": "string"
+ }
+ }
+ }
+ },
+ "WsdlImportMethod": {
+ "type": "string",
+ "description": "The WSDL import method",
+ "enum": [
+ "NotSpecified",
+ "SoapToRest",
+ "SoapPassThrough"
+ ],
+ "x-ms-enum": {
+ "name": "WsdlImportMethod",
+ "modelAsString": true
+ }
+ },
+ "CustomApiReference": {
+ "type": "object",
+ "description": "The custom API reference",
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ApiReference"
+ }
+ ]
+ },
+ "ApiReference": {
+ "type": "object",
+ "x-abstract": true,
+ "additionalProperties": false,
+ "properties": {
+ "swagger": {
+ "type": "object",
+ "description": "The JSON representation of the swagger"
+ },
+ "brandColor": {
+ "type": "string",
+ "description": "Brand color"
+ },
+ "description": {
+ "type": "string",
+ "description": "The custom API description"
+ },
+ "displayName": {
+ "type": "string",
+ "description": "The display name"
+ },
+ "iconUri": {
+ "type": "string",
+ "description": "The icon URI"
+ },
+ "name": {
+ "type": "string",
+ "description": "The name of the API"
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceReference"
+ }
+ ]
+ },
+ "ManagedApiDefinition": {
+ "type": "object",
+ "description": "A managed API definition",
+ "additionalProperties": false,
+ "properties": {
+ "properties": {
+ "$ref": "#/definitions/ApiResourceProperties"
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ]
+ },
+ "ApiResourceProperties": {
+ "type": "object",
+ "description": "API resource properties",
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "connectionParameters": {
+ "description": "Connection parameters",
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/definitions/ConnectionParameter"
+ }
+ },
+ "metadata": {
+ "$ref": "#/definitions/ApiResourceMetadata"
+ },
+ "runtimeUrls": {
+ "type": "array",
+ "description": "Runtime URLs",
+ "items": {
+ "type": "string"
+ }
+ },
+ "generalInformation": {
+ "$ref": "#/definitions/ApiResourceGeneralInformation"
+ },
+ "capabilities": {
+ "type": "array",
+ "description": "The managed API capabilities",
+ "items": {
+ "type": "string"
+ }
+ },
+ "swagger": {
+ "type": "object",
+ "description": "The JSON representation of the swagger"
+ },
+ "backendService": {
+ "$ref": "#/definitions/ApiResourceBackendService"
+ },
+ "policies": {
+ "$ref": "#/definitions/ApiResourcePolicies"
+ },
+ "apiDefinitionUrl": {
+ "type": "string",
+ "description": "URL where the swagger can be downloaded from"
+ },
+ "apiDefinitions": {
+ "$ref": "#/definitions/ApiResourceDefinitions"
+ }
+ }
+ },
+ "ApiResourceMetadata": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "source": {
+ "type": "string",
+ "description": "The source"
},
- "ApiResourceBackendService": {
- "type": "object",
- "description": "The API backend service",
- "additionalProperties": false,
- "properties": {
- "serviceUrl": {
- "type": "string",
- "description": "The service URL"
- }
- }
+ "brandColor": {
+ "type": "string",
+ "description": "Brand color"
},
- "ApiResourceDefinitions": {
- "type": "object",
- "description": "API Definitions",
- "additionalProperties": false,
- "properties": {
- "originalSwaggerUrl": {
- "type": "string",
- "description": "The original swagger URL"
- },
- "modifiedSwaggerUrl": {
- "type": "string",
- "description": "The modified swagger URL"
- }
- }
+ "hideKey": {
+ "type": "string",
+ "description": "Hide key"
},
- "ApiType": {
- "type": "string",
- "description": "The API type",
- "enum": [
- "NotSpecified",
- "Rest",
- "Soap"
- ],
- "x-ms-enum": {
- "name": "ApiType",
- "modelAsString": true
- }
+ "tags": {
+ "$ref": "#/definitions/TagsDictionary"
},
- "WsdlDefinition": {
- "type": "object",
- "description": "The WSDL definition",
- "additionalProperties": false,
- "properties": {
- "url": {
- "type": "string",
- "description": "The WSDL URL"
- },
- "content": {
- "type": "string",
- "description": "The WSDL content"
- },
- "service": {
- "$ref": "#/definitions/WsdlService"
- },
- "importMethod": {
- "$ref": "#/definitions/WsdlImportMethod"
- }
- }
+ "apiType": {
+ "$ref": "#/definitions/ApiType"
},
- "WsdlService": {
- "type": "object",
- "description": "The service with name and endpoint names",
- "additionalProperties": false,
- "required": [
- "qualifiedName"
- ],
- "properties": {
- "qualifiedName": {
- "description": "The service's qualified name",
- "type": "string"
- },
- "endpointQualifiedNames": {
- "type": "array",
- "description": "List of the endpoints' qualified names",
- "items": {
- "type": "string"
- }
- }
- }
+ "wsdlService": {
+ "$ref": "#/definitions/WsdlService"
},
- "WsdlImportMethod": {
- "type": "string",
- "description": "The WSDL import method",
- "enum": [
- "NotSpecified",
- "SoapToRest",
- "SoapPassThrough"
- ],
- "x-ms-enum": {
- "name": "WsdlImportMethod",
- "modelAsString": true
- }
+ "wsdlImportMethod": {
+ "$ref": "#/definitions/WsdlImportMethod"
},
- "CustomApiReference": {
- "type": "object",
- "description": "The custom API reference",
- "additionalProperties": false,
- "properties": {
- "name": {
- "type": "string"
- }
+ "connectionType": {
+ "type": "string",
+ "description": "The connection type"
+ }
+ }
+ },
+ "TagsDictionary": {
+ "type": "object",
+ "description": "Resource tags",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "example": {
+ "SampleTagName": "SampleTagValue"
+ }
+ },
+ "ApiResourceGeneralInformation": {
+ "type": "object",
+ "description": "General information about the API",
+ "additionalProperties": false,
+ "properties": {
+ "iconUrl": {
+ "type": "string",
+ "description": "The icon URL"
+ },
+ "displayName": {
+ "type": "string",
+ "description": "Display name"
+ },
+ "description": {
+ "type": "string",
+ "description": "The API description"
+ },
+ "termsOfUseUrl": {
+ "type": "string",
+ "description": "URL to the Terms of Use"
+ },
+ "releaseTag": {
+ "type": "string",
+ "description": "Release tag"
+ }
+ }
+ },
+ "ApiResourcePolicies": {
+ "type": "object",
+ "description": "Describes the API policies either as embedded content or as a link to uploaded content",
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "type": "string",
+ "description": "API level policies as XML"
+ },
+ "contentLink": {
+ "type": "string",
+ "description": "Link to the JSON of the policies"
+ }
+ }
+ },
+ "ApiConnectionDefinition": {
+ "description": "API connection",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "properties": {
+ "properties": {
+ "displayName": {
+ "description": "Display name",
+ "type": "string"
},
- "allOf": [
- {
- "$ref": "#/definitions/ApiReference"
- }
- ]
- },
- "ApiReference": {
- "type": "object",
- "x-abstract": true,
- "additionalProperties": false,
- "properties": {
- "swagger": {
- "type": "object",
- "description": "The JSON representation of the swagger"
- },
- "brandColor": {
- "type": "string",
- "description": "Brand color"
- },
- "description": {
- "type": "string",
- "description": "The custom API description"
- },
- "displayName": {
- "type": "string",
- "description": "The display name"
- },
- "iconUri": {
- "type": "string",
- "description": "The icon URI"
- },
- "name": {
- "type": "string",
- "description": "The name of the API"
- }
+ "statuses": {
+ "description": "Status of the connection",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ConnectionStatusDefinition"
+ }
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceReference"
- }
- ]
- },
- "ManagedApiDefinition": {
- "type": "object",
- "description": "A managed API definition",
- "additionalProperties": false,
- "properties": {
- "properties": {
- "$ref": "#/definitions/ApiResourceProperties"
- }
+ "parameterValues": {
+ "description": "Dictionary of parameter values",
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ]
- },
- "ApiResourceProperties": {
- "type": "object",
- "description": "API resource properties",
- "additionalProperties": false,
- "properties": {
- "name": {
- "type": "string"
- },
- "connectionParameters": {
- "description": "Connection parameters",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/ConnectionParameter"
- }
- },
- "metadata": {
- "$ref": "#/definitions/ApiResourceMetadata"
- },
- "runtimeUrls": {
- "type": "array",
- "description": "Runtime URLs",
- "items": {
- "type": "string"
- }
- },
- "generalInformation": {
- "$ref": "#/definitions/ApiResourceGeneralInformation"
- },
- "capabilities": {
- "type": "array",
- "description": "The managed API capabilities",
- "items": {
- "type": "string"
- }
- },
- "swagger": {
- "type": "object",
- "description": "The JSON representation of the swagger"
- },
- "backendService": {
- "$ref": "#/definitions/ApiResourceBackendService"
- },
- "policies": {
- "$ref": "#/definitions/ApiResourcePolicies"
- },
- "apiDefinitionUrl": {
- "type": "string",
- "description": "URL where the swagger can be downloaded from"
- },
- "apiDefinitions": {
- "$ref": "#/definitions/ApiResourceDefinitions"
- }
- }
- },
- "ApiResourceMetadata": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "source": {
- "type": "string",
- "description": "The source"
- },
- "brandColor": {
- "type": "string",
- "description": "Brand color"
- },
- "hideKey": {
- "type": "string",
- "description": "Hide key"
- },
- "tags": {
- "$ref": "#/definitions/TagsDictionary"
- },
- "apiType": {
- "$ref": "#/definitions/ApiType"
- },
- "wsdlService": {
- "$ref": "#/definitions/WsdlService"
- },
- "wsdlImportMethod": {
- "$ref": "#/definitions/WsdlImportMethod"
- },
- "connectionType": {
- "type": "string",
- "description": "The connection type"
- }
- }
- },
- "TagsDictionary": {
- "type": "object",
- "description": "Resource tags",
- "additionalProperties": {
+ "customParameterValues": {
+ "description": "Dictionary of custom parameter values",
+ "type": "object",
+ "additionalProperties": {
"type": "string"
+ }
},
- "example": {
- "SampleTagName": "SampleTagValue"
- }
- },
- "ApiResourceGeneralInformation": {
- "type": "object",
- "description": "General information about the API",
- "additionalProperties": false,
- "properties": {
- "iconUrl": {
- "type": "string",
- "description": "The icon URL"
- },
- "displayName": {
- "type": "string",
- "description": "Display name"
- },
- "description": {
- "type": "string",
- "description": "The API description"
- },
- "termsOfUseUrl": {
- "type": "string",
- "description": "URL to the Terms of Use"
- },
- "releaseTag": {
- "type": "string",
- "description": "Release tag"
- }
- }
- },
- "ApiResourcePolicies": {
- "type": "object",
- "description": "Describes the API policies either as embedded content or as a link to uploaded content",
- "additionalProperties": false,
- "properties": {
- "content": {
- "type": "string",
- "description": "API level policies as XML"
- },
- "contentLink": {
- "type": "string",
- "description": "Link to the JSON of the policies"
- }
- }
- },
- "ApiConnectionDefinition": {
- "description": "API connection",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "properties": {
- "properties": {
- "displayName": {
- "description": "Display name",
- "type": "string"
- },
- "statuses": {
- "description": "Status of the connection",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ConnectionStatusDefinition"
- }
- },
- "parameterValues": {
- "description": "Dictionary of parameter values",
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- },
- "customParameterValues": {
- "description": "Dictionary of custom parameter values",
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- },
- "nonSecretParameterValues": {
- "description": "Dictionary of nonsecret parameter values",
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- },
- "createdTime": {
- "format": "date-time",
- "description": "Timestamp of the connection creation",
- "type": "string"
- },
- "changedTime": {
- "format": "date-time",
- "description": "Timestamp of last connection change",
- "type": "string"
- },
- "api": {
- "$ref": "#/definitions/ApiReference"
- },
- "testLinks": {
- "description": "Links to test the API connection",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ApiConnectionTestLink"
- }
- }
- }
- }
+ "nonSecretParameterValues": {
+ "description": "Dictionary of nonsecret parameter values",
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
},
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ]
- },
- "ApiConnectionTestLink": {
- "description": "API connection properties",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "requestUri": {
- "description": "Test link request URI",
- "type": "string"
- },
- "method": {
- "description": "HTTP Method",
- "type": "string"
- }
- }
- },
- "ListConsentLinksDefinition": {
- "description": "Request for a list of consent links",
- "type": "object",
- "properties": {
- "parameters": {
- "description": "Collection of resources",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ConsentLinkParameterDefinition"
- }
- }
- }
- },
- "ConsentLinkParameterDefinition": {
- "description": "Consent link definition",
- "type": "object",
- "properties": {
- "parameterName": {
- "description": "Name of the parameter in the connection provider's OAuth settings",
- "type": "string"
- },
- "redirectUrl": {
- "description": "Name of the parameter in the connection provider's OAuth settings",
- "type": "string"
- },
- "objectId": {
- "description": "AAD OID (user or group) if the principal type is ActiveDirectory. MSA PUID if the principal type is MicrosoftAccount",
- "type": "string"
- },
- "tenantId": {
- "description": "The tenant id",
- "type": "string"
- }
- }
- },
- "ConsentLinkCollection": {
- "description": "Collection of consent links",
- "type": "object",
- "properties": {
- "value": {
- "description": "Collection of resources",
- "type": "array",
- "items": {
- "$ref": "#/definitions/ConsentLinkDefinition"
- }
- }
- }
- },
- "ConsentLinkDefinition": {
- "description": "A consent link",
- "type": "object",
- "properties": {
- "link": {
- "description": "URI for the consent link",
- "type": "string"
- },
- "firstPartyLoginUri": {
- "description": "URI for first party login",
- "type": "string"
- },
- "displayName": {
- "description": "Display name of the parameter in the connection provider's OAuth settings",
- "type": "string"
- },
- "status": {
- "description": "Status of the link",
- "enum": [
- "Unauthenticated",
- "Authenticated",
- "Error"
- ],
- "type": "string",
- "x-ms-enum": {
- "name": "LinkState",
- "modelAsString": true
- }
- }
- }
- },
- "ConfirmConsentCodeDefinition": {
- "description": "Confirm consent code request",
- "type": "object",
- "properties": {
- "tenantId": {
- "description": "Tenant Id",
- "type": "string"
- },
- "objectId": {
- "description": "AAD object ID. This is userId",
- "type": "string"
- },
- "code": {
- "description": "Code that was returned during consent flow",
- "type": "string"
- }
- }
- },
- "ListConnectionKeysDefinition": {
- "description": "List connection keys",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ],
- "properties": {
- "properties": {
- "properties": {
- "validityTimeSpan": {
- "description": "Time span for how long the keys will be valid",
- "type": "string"
- }
- },
- "x-ms-client-flatten": true
- }
- }
- },
- "ConnectionStatusDefinition": {
- "description": "Connection status",
- "type": "object",
- "properties": {
- "status": {
- "description": "The gateway status",
- "type": "string"
- },
- "target": {
- "description": "Target of the error",
- "type": "string"
- },
- "error": {
- "$ref": "#/definitions/ConnectionError"
- }
- }
- },
- "ConnectionError": {
- "description": "Connection error",
- "type": "object",
- "allOf": [
- {
- "$ref": "#/definitions/ResourceDefinition"
- }
- ],
- "properties": {
- "properties": {
- "properties": {
- "code": {
- "description": "Code of the status",
- "type": "string"
- },
- "message": {
- "description": "Description of the status",
- "type": "string"
- }
- },
- "x-ms-client-flatten": true
- }
+ "createdTime": {
+ "format": "date-time",
+ "description": "Timestamp of the connection creation",
+ "type": "string"
+ },
+ "changedTime": {
+ "format": "date-time",
+ "description": "Timestamp of last connection change",
+ "type": "string"
+ },
+ "api": {
+ "$ref": "#/definitions/ApiReference"
+ },
+ "testLinks": {
+ "description": "Links to test the API connection",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ApiConnectionTestLink"
+ }
}
+ }
+ }
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ]
+ },
+ "ApiConnectionTestLink": {
+ "description": "API connection properties",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "requestUri": {
+ "description": "Test link request URI",
+ "type": "string"
+ },
+ "method": {
+ "description": "HTTP Method",
+ "type": "string"
}
+ }
},
- "securityDefinitions": {
- "azure_auth": {
- "type": "oauth2",
- "description": "Azure Active Directory OAuth2 Flow",
- "flow": "implicit",
- "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
- "scopes": {
- "user_impersonation": "impersonate a user account"
+ "ListConsentLinksDefinition": {
+ "description": "Request for a list of consent links",
+ "type": "object",
+ "properties": {
+ "parameters": {
+ "description": "Collection of resources",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ConsentLinkParameterDefinition"
+ }
+ }
+ }
+ },
+ "ConsentLinkParameterDefinition": {
+ "description": "Consent link definition",
+ "type": "object",
+ "properties": {
+ "parameterName": {
+ "description": "Name of the parameter in the connection provider's OAuth settings",
+ "type": "string"
+ },
+ "redirectUrl": {
+ "description": "Name of the parameter in the connection provider's OAuth settings",
+ "type": "string"
+ },
+ "objectId": {
+ "description": "AAD OID (user or group) if the principal type is ActiveDirectory. MSA PUID if the principal type is MicrosoftAccount",
+ "type": "string"
+ },
+ "tenantId": {
+ "description": "The tenant id",
+ "type": "string"
+ }
+ }
+ },
+ "ConsentLinkCollection": {
+ "description": "Collection of consent links",
+ "type": "object",
+ "properties": {
+ "value": {
+ "description": "Collection of resources",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ConsentLinkDefinition"
+ }
+ }
+ }
+ },
+ "ConsentLinkDefinition": {
+ "description": "A consent link",
+ "type": "object",
+ "properties": {
+ "link": {
+ "description": "URI for the consent link",
+ "type": "string"
+ },
+ "firstPartyLoginUri": {
+ "description": "URI for first party login",
+ "type": "string"
+ },
+ "displayName": {
+ "description": "Display name of the parameter in the connection provider's OAuth settings",
+ "type": "string"
+ },
+ "status": {
+ "description": "Status of the link",
+ "enum": [
+ "Unauthenticated",
+ "Authenticated",
+ "Error"
+ ],
+ "type": "string",
+ "x-ms-enum": {
+ "name": "LinkState",
+ "modelAsString": true
+ }
+ }
+ }
+ },
+ "ConfirmConsentCodeDefinition": {
+ "description": "Confirm consent code request",
+ "type": "object",
+ "properties": {
+ "tenantId": {
+ "description": "Tenant Id",
+ "type": "string"
+ },
+ "objectId": {
+ "description": "AAD object ID. This is userId",
+ "type": "string"
+ },
+ "code": {
+ "description": "Code that was returned during consent flow",
+ "type": "string"
+ }
+ }
+ },
+ "ListConnectionKeysDefinition": {
+ "description": "List connection keys",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "properties": {
+ "validityTimeSpan": {
+ "description": "Time span for how long the keys will be valid",
+ "type": "string"
}
+ },
+ "x-ms-client-flatten": true
+ }
+ }
+ },
+ "ConnectionStatusDefinition": {
+ "description": "Connection status",
+ "type": "object",
+ "properties": {
+ "status": {
+ "description": "The gateway status",
+ "type": "string"
+ },
+ "target": {
+ "description": "Target of the error",
+ "type": "string"
+ },
+ "error": {
+ "$ref": "#/definitions/ConnectionError"
}
+ }
},
- "security": [
+ "ConnectionError": {
+ "description": "Connection error",
+ "type": "object",
+ "allOf": [
{
- "azure_auth": [
- "user_impersonation"
- ]
+ "$ref": "#/definitions/ResourceDefinition"
+ }
+ ],
+ "properties": {
+ "properties": {
+ "properties": {
+ "code": {
+ "description": "Code of the status",
+ "type": "string"
+ },
+ "message": {
+ "description": "Description of the status",
+ "type": "string"
+ }
+ },
+ "x-ms-client-flatten": true
}
- ]
-}
\ No newline at end of file
+ }
+ }
+ },
+ "securityDefinitions": {
+ "azure_auth": {
+ "type": "oauth2",
+ "description": "Azure Active Directory OAuth2 Flow",
+ "flow": "implicit",
+ "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
+ "scopes": {
+ "user_impersonation": "impersonate a user account"
+ }
+ }
+ },
+ "security": [
+ {
+ "azure_auth": [
+ "user_impersonation"
+ ]
+ }
+ ]
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-08-01/WebApps.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-08-01/WebApps.json
index ec314f07e90b..57d66198784e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-08-01/WebApps.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-08-01/WebApps.json
@@ -12336,7 +12336,6 @@
"schema": {
"$ref": "#/definitions/SiteSourceControl"
}
-
}
}
},
@@ -13749,7 +13748,6 @@
"schema": {
"$ref": "#/definitions/SiteSourceControl"
}
-
}
}
},
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/CreateOrUpdateAppServicePlan.json
index fde6cba7089f..52e4bf2e08e2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/CreateOrUpdateAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/CreateOrUpdateAppServicePlan.json
@@ -1,130 +1,130 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01",
+ "appServicePlan": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
"name": "testsf6141",
- "api-version": "2016-09-01",
- "appServicePlan": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name" : "testsf6141"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
},
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "201": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "201": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ },
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
+ },
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
- },
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
}
+ }
}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/DeleteAppServicePlan.json
index 2842f6196196..c1546cd8bdee 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/DeleteAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/DeleteAppServicePlan.json
@@ -1,12 +1,12 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "testsf6141",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/GetAppServicePlan.json
index 19a6219abf82..0be529e2586a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/GetAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/GetAppServicePlan.json
@@ -1,46 +1,46 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
"name": "testsf6141",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "404": {}
- }
-}
\ No newline at end of file
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ },
+ "404": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json
index c2c89ef1170e..56d2fc25f593 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json
@@ -1,79 +1,79 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value" : [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
- "name": "testsf7252",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf7252",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_5680",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
+ "name": "testsf7252",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf7252",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_5680",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json
index 24e8b4b9ee1c..7f31c84083d1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json
@@ -1,80 +1,80 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value" : [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
- "name": "testsf7252",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf7252",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_5680",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
+ "name": "testsf7252",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf7252",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_5680",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/PatchAppServicePlan.json
index f5194919f0f5..660b50ce2151 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/PatchAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/PatchAppServicePlan.json
@@ -1,89 +1,89 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01",
+ "appServicePlan": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "properties": {
+ "name": "testsf6141"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
"name": "testsf6141",
- "api-version": "2016-09-01",
- "appServicePlan": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "properties": {
- "name" : "testsf6141"
- }
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
},
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
+ },
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
- },
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Certificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Certificates.json
index c310e8fb81c5..329f6a0d8a89 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Certificates.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Certificates.json
@@ -633,4 +633,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/DeletedWebApps.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/DeletedWebApps.json
index 48cba3ea56bc..4404350050c1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/DeletedWebApps.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/DeletedWebApps.json
@@ -204,4 +204,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Diagnostics.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Diagnostics.json
index d0543f2bd1e8..dd28f9400c3e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Diagnostics.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/Diagnostics.json
@@ -2156,4 +2156,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/ResourceHealthMetadata.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/ResourceHealthMetadata.json
index 70306f81285e..17d5e7e8a2d3 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/ResourceHealthMetadata.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/ResourceHealthMetadata.json
@@ -400,4 +400,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateAppServicePlan.json
index fde6cba7089f..52e4bf2e08e2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateAppServicePlan.json
@@ -1,130 +1,130 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01",
+ "appServicePlan": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
"name": "testsf6141",
- "api-version": "2016-09-01",
- "appServicePlan": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name" : "testsf6141"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
},
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "201": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "201": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ },
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
+ },
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
- },
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
}
+ }
}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateCertificate.json
index ed39b60acdb8..1b0774007c31 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateCertificate.json
@@ -1,49 +1,49 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01",
+ "certificateEnvelope": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2018-02-01",
- "certificateEnvelope": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteAppServicePlan.json
index 2842f6196196..c1546cd8bdee 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteAppServicePlan.json
@@ -1,12 +1,12 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "testsf6141",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteCertificate.json
index 169358dcf88d..4a9880fec94e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/DeleteCertificate.json
@@ -1,12 +1,12 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "testc6282",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysis.json
index 8a92c1510c75..67c3ccba3972 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysis.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysis.json
@@ -1,134 +1,134 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "analysisName": "apprestartanalyses",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "analysisName": "apprestartanalyses",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json
index fc3161055f49..2e2cf8d95f7d 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteAnalysisSlot.json
@@ -1,135 +1,135 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "analysisName": "apprestartanalyses",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "analysisName": "apprestartanalyses",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetector.json
index 790fad1bbef8..efdd2da6927b 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetector.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetector.json
@@ -1,134 +1,134 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json
index 286ddbc20e98..30b767875891 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ExecuteSiteDetectorSlot.json
@@ -1,135 +1,135 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "properties": {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "abnormalTimePeriods": [
- {
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "events": [
- {
- "startTime": "2017-11-06T22:21:50Z",
- "endTime": "2017-11-06T22:21:48Z",
- "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
- "source": null,
- "priority": 0,
- "metaData": [
- [
- {
- "name": "feature",
- "value": "auditlogs"
- },
- {
- "name": "displayedName",
- "value": "Check Audit Logs"
- }
- ]
- ],
- "type": "ServiceIncident",
- "solutions": []
- }
- ],
- "solutions": []
- }
- ],
- "payload": [
- {
- "source": "workerprocessrecycle",
- "detectorDefinition": {
- "name": "workerprocessrecycle",
- "displayName": "Worker Process Recycle Events",
- "description": null,
- "rank": 20,
- "isEnabled": true
- },
- "metrics": [
- {
- "name": "All Application Stop Events",
- "unit": null,
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "roleInstance": "RD00155D3C15BE",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:00:00Z",
- "total": 2,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3C15C1",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "roleInstance": "RD00155D3BE0FB",
- "total": 2
- },
- {
- "timestamp": "2017-11-06T00:10:00Z",
- "total": 4,
- "isAggregated": true
- }
- ]
- },
- {
- "name": "User Events",
- "unit": "",
- "startTime": "2017-11-05T22:50:00Z",
- "endTime": "2017-11-06T22:50:00Z",
- "timeGrain": "00:05:00",
- "values": [
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "total": 3,
- "isAggregated": true
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C09FC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C2ADC",
- "total": 1
- },
- {
- "timestamp": "2017-11-06T22:20:00Z",
- "roleInstance": "RD00155D3C214E",
- "total": 1
- }
- ]
- }
- ],
- "data": [],
- "detectorMetaData": null
- }
- ],
- "nonCorrelatedDetectors": []
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "properties": {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "abnormalTimePeriods": [
+ {
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "events": [
+ {
+ "startTime": "2017-11-06T22:21:50Z",
+ "endTime": "2017-11-06T22:21:48Z",
+ "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.",
+ "source": null,
+ "priority": 0,
+ "metaData": [
+ [
+ {
+ "name": "feature",
+ "value": "auditlogs"
+ },
+ {
+ "name": "displayedName",
+ "value": "Check Audit Logs"
+ }
+ ]
+ ],
+ "type": "ServiceIncident",
+ "solutions": []
+ }
+ ],
+ "solutions": []
+ }
+ ],
+ "payload": [
+ {
+ "source": "workerprocessrecycle",
+ "detectorDefinition": {
+ "name": "workerprocessrecycle",
+ "displayName": "Worker Process Recycle Events",
+ "description": null,
+ "rank": 20,
+ "isEnabled": true
+ },
+ "metrics": [
+ {
+ "name": "All Application Stop Events",
+ "unit": null,
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "roleInstance": "RD00155D3C15BE",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:00:00Z",
+ "total": 2,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3C15C1",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "roleInstance": "RD00155D3BE0FB",
+ "total": 2
+ },
+ {
+ "timestamp": "2017-11-06T00:10:00Z",
+ "total": 4,
+ "isAggregated": true
+ }
+ ]
+ },
+ {
+ "name": "User Events",
+ "unit": "",
+ "startTime": "2017-11-05T22:50:00Z",
+ "endTime": "2017-11-06T22:50:00Z",
+ "timeGrain": "00:05:00",
+ "values": [
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "total": 3,
+ "isAggregated": true
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C09FC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C2ADC",
+ "total": 1
+ },
+ {
+ "timestamp": "2017-11-06T22:20:00Z",
+ "roleInstance": "RD00155D3C214E",
+ "total": 1
+ }
+ ]
+ }
+ ],
+ "data": [],
+ "detectorMetaData": null
+ }
+ ],
+ "nonCorrelatedDetectors": []
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json
index 45433e2a7526..2b157ffa145f 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json
@@ -1,136 +1,136 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "name": "SampleAppServiceEnvironment",
- "detectorName": "runtimeavailability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes all the requests to all applications running on this app service environment.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- {
- "table": {
- "tableName": "Table_0",
- "columns": [
- {
- "columnName": "PreciseTimeStamp",
- "dataType": "DateTime",
- "columnType": "datetime"
- },
- {
- "columnName": "count_Http2xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http3xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http4xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http5xx",
- "dataType": "Int64",
- "columnType": "long"
- }
- ],
- "rows": [
- [
- "2018-03-27T00:25:00Z",
- "772705",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:30:00Z",
- "787069",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:35:00Z",
- "781627",
- "0",
- "1",
- "0"
- ],
- [
- "2018-03-27T00:40:00Z",
- "785017",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:45:00Z",
- "783518",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:50:00Z",
- "785783",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:55:00Z",
- "772874",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:00:00Z",
- "787162",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:05:00Z",
- "782036",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:10:00Z",
- "784642",
- "0",
- "0",
- "0"
- ]
- ]
- },
- "renderingProperties": {
- "renderingType": "TimeSeries",
- "title": "Requests by Status Code",
- "description": "This detector breaks down the number of requests that your apps on this app service environment received for each status code."
- }
- }
- ]
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "name": "SampleAppServiceEnvironment",
+ "detectorName": "runtimeavailability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes all the requests to all applications running on this app service environment.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": [
+ {
+ "table": {
+ "tableName": "Table_0",
+ "columns": [
+ {
+ "columnName": "PreciseTimeStamp",
+ "dataType": "DateTime",
+ "columnType": "datetime"
+ },
+ {
+ "columnName": "count_Http2xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http3xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http4xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http5xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ }
+ ],
+ "rows": [
+ [
+ "2018-03-27T00:25:00Z",
+ "772705",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:30:00Z",
+ "787069",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:35:00Z",
+ "781627",
+ "0",
+ "1",
+ "0"
+ ],
+ [
+ "2018-03-27T00:40:00Z",
+ "785017",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:45:00Z",
+ "783518",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:50:00Z",
+ "785783",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:55:00Z",
+ "772874",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:00:00Z",
+ "787162",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:05:00Z",
+ "782036",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:10:00Z",
+ "784642",
+ "0",
+ "0",
+ "0"
+ ]
+ ]
+ },
+ "renderingProperties": {
+ "renderingType": "TimeSeries",
+ "title": "Requests by Status Code",
+ "description": "This detector breaks down the number of requests that your apps on this app service environment received for each status code."
+ }
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysis.json
index 180064484a38..a81c6bcc73d2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysis.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysis.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "analysisName": "appanalysis",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
- "name": "appanalysis",
- "properties": {
- "analysisName": "appanalysis",
- "description": "Determine causes of availability loss as well as solutions for these problems"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "analysisName": "appanalysis",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
+ "name": "appanalysis",
+ "properties": {
+ "analysisName": "appanalysis",
+ "description": "Determine causes of availability loss as well as solutions for these problems"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysisSlot.json
index f39ec2dfa74f..cdf926c20188 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysisSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteAnalysisSlot.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "analysisName": "apprestartanalysis",
- "description": "Find the reasons that your app restarted"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "analysisName": "apprestartanalysis",
+ "description": "Find the reasons that your app restarted"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetector.json
index c765b0918ff3..22cb9543ee90 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetector.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetector.json
@@ -1,28 +1,28 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponse.json
index df95673505bc..707988a50737 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponse.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponse.json
@@ -1,136 +1,136 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "detectorName": "runtimeavailability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "Web App Down",
- "supportTopicId": ""
- },
- "dataset": [
- {
- "table": {
- "tableName": "Table_0",
- "columns": [
- {
- "columnName": "PreciseTimeStamp",
- "dataType": "DateTime",
- "columnType": "datetime"
- },
- {
- "columnName": "count_Http2xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http3xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http4xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http5xx",
- "dataType": "Int64",
- "columnType": "long"
- }
- ],
- "rows": [
- [
- "2018-03-27T00:25:00Z",
- "772705",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:30:00Z",
- "787069",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:35:00Z",
- "781627",
- "0",
- "1",
- "0"
- ],
- [
- "2018-03-27T00:40:00Z",
- "785017",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:45:00Z",
- "783518",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:50:00Z",
- "785783",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:55:00Z",
- "772874",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:00:00Z",
- "787162",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:05:00Z",
- "782036",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:10:00Z",
- "784642",
- "0",
- "0",
- "0"
- ]
- ]
- },
- "renderingProperties": {
- "renderingType": "TimeSeries",
- "title": "Requests by Status Code",
- "description": "This detector breaks down the number of requests that your app received for each status code."
- }
- }
- ]
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "detectorName": "runtimeavailability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "Web App Down",
+ "supportTopicId": ""
+ },
+ "dataset": [
+ {
+ "table": {
+ "tableName": "Table_0",
+ "columns": [
+ {
+ "columnName": "PreciseTimeStamp",
+ "dataType": "DateTime",
+ "columnType": "datetime"
+ },
+ {
+ "columnName": "count_Http2xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http3xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http4xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http5xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ }
+ ],
+ "rows": [
+ [
+ "2018-03-27T00:25:00Z",
+ "772705",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:30:00Z",
+ "787069",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:35:00Z",
+ "781627",
+ "0",
+ "1",
+ "0"
+ ],
+ [
+ "2018-03-27T00:40:00Z",
+ "785017",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:45:00Z",
+ "783518",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:50:00Z",
+ "785783",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:55:00Z",
+ "772874",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:00:00Z",
+ "787162",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:05:00Z",
+ "782036",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:10:00Z",
+ "784642",
+ "0",
+ "0",
+ "0"
+ ]
+ ]
+ },
+ "renderingProperties": {
+ "renderingType": "TimeSeries",
+ "title": "Requests by Status Code",
+ "description": "This detector breaks down the number of requests that your app received for each status code."
+ }
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json
index c8942612ca76..b9fbd793a4e3 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json
@@ -1,137 +1,137 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "detectorName": "runtimeavailability",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "Web App Down",
- "supportTopicId": ""
- },
- "dataset": [
- {
- "table": {
- "tableName": "Table_0",
- "columns": [
- {
- "columnName": "PreciseTimeStamp",
- "dataType": "DateTime",
- "columnType": "datetime"
- },
- {
- "columnName": "count_Http2xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http3xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http4xx",
- "dataType": "Int64",
- "columnType": "long"
- },
- {
- "columnName": "count_Http5xx",
- "dataType": "Int64",
- "columnType": "long"
- }
- ],
- "rows": [
- [
- "2018-03-27T00:25:00Z",
- "772705",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:30:00Z",
- "787069",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:35:00Z",
- "781627",
- "0",
- "1",
- "0"
- ],
- [
- "2018-03-27T00:40:00Z",
- "785017",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:45:00Z",
- "783518",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:50:00Z",
- "785783",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T00:55:00Z",
- "772874",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:00:00Z",
- "787162",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:05:00Z",
- "782036",
- "0",
- "0",
- "0"
- ],
- [
- "2018-03-27T01:10:00Z",
- "784642",
- "0",
- "0",
- "0"
- ]
- ]
- },
- "renderingProperties": {
- "renderingType": "TimeSeries",
- "title": "Requests by Status Code",
- "description": "This detector breaks down the number of requests that your app received for each status code."
- }
- }
- ]
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "detectorName": "runtimeavailability",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "Web App Down",
+ "supportTopicId": ""
+ },
+ "dataset": [
+ {
+ "table": {
+ "tableName": "Table_0",
+ "columns": [
+ {
+ "columnName": "PreciseTimeStamp",
+ "dataType": "DateTime",
+ "columnType": "datetime"
+ },
+ {
+ "columnName": "count_Http2xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http3xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http4xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ },
+ {
+ "columnName": "count_Http5xx",
+ "dataType": "Int64",
+ "columnType": "long"
+ }
+ ],
+ "rows": [
+ [
+ "2018-03-27T00:25:00Z",
+ "772705",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:30:00Z",
+ "787069",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:35:00Z",
+ "781627",
+ "0",
+ "1",
+ "0"
+ ],
+ [
+ "2018-03-27T00:40:00Z",
+ "785017",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:45:00Z",
+ "783518",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:50:00Z",
+ "785783",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T00:55:00Z",
+ "772874",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:00:00Z",
+ "787162",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:05:00Z",
+ "782036",
+ "0",
+ "0",
+ "0"
+ ],
+ [
+ "2018-03-27T01:10:00Z",
+ "784642",
+ "0",
+ "0",
+ "0"
+ ]
+ ]
+ },
+ "renderingProperties": {
+ "renderingType": "TimeSeries",
+ "title": "Requests by Status Code",
+ "description": "This detector breaks down the number of requests that your app received for each status code."
+ }
}
+ ]
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorSlot.json
index d2071b4eb0cc..75d02c61c7fe 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorSlot.json
@@ -1,29 +1,29 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "detectorName": "sitecrashes",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "detectorName": "sitecrashes",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategory.json
index 01845e80e710..c16648575c1b 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategory.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategory.json
@@ -1,23 +1,23 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json
index 29e267ede0f4..b0404926d2aa 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
+ }
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json
index b9bc21ae1030..0161800ab593 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json
@@ -1,30 +1,29 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "name": "SampleAppServiceEnvironment",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes all the requests to all applications running on this app service environment.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "name": "SampleAppServiceEnvironment",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes all the requests to all applications running on this app service environment.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": []
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalyses.json
index 90ceb06c6a8b..cf93f0630f59 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalyses.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalyses.json
@@ -1,57 +1,57 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis",
- "name": "appanalysis",
- "properties": {
- "analysisName": "appanalysis",
- "description": "Determine causes of availability loss as well as solutions for these problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "name": "apprestartanalysis",
- "description": "Find the reasons that your app restarted"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis",
- "name": "memoryanalysis",
- "properties": {
- "name": "memoryanalysis",
- "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis",
- "name": "tcpconnectionsanalysis",
- "properties": {
- "name": "tcpconnectionsanalysis",
- "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis",
- "name": "perfanalysis",
- "properties": {
- "name": "perfanalysis",
- "description": "Determine causes of performance degredation as well as solutions for these problems"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis",
+ "name": "appanalysis",
+ "properties": {
+ "analysisName": "appanalysis",
+ "description": "Determine causes of availability loss as well as solutions for these problems"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "name": "apprestartanalysis",
+ "description": "Find the reasons that your app restarted"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis",
+ "name": "memoryanalysis",
+ "properties": {
+ "name": "memoryanalysis",
+ "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis",
+ "name": "tcpconnectionsanalysis",
+ "properties": {
+ "name": "tcpconnectionsanalysis",
+ "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis",
+ "name": "perfanalysis",
+ "properties": {
+ "name": "perfanalysis",
+ "description": "Determine causes of performance degredation as well as solutions for these problems"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalysesSlot.json
index 0a8dbd07c5f0..cd93bffd289a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalysesSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteAnalysesSlot.json
@@ -1,58 +1,58 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
- "name": "appanalysis",
- "properties": {
- "analysisName": "appanalysis",
- "description": "Determine causes of availability loss as well as solutions for these problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
- "name": "apprestartanalysis",
- "properties": {
- "name": "apprestartanalysis",
- "description": "Find the reasons that your app restarted"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis",
- "name": "memoryanalysis",
- "properties": {
- "name": "memoryanalysis",
- "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis",
- "name": "tcpconnectionsanalysis",
- "properties": {
- "name": "tcpconnectionsanalysis",
- "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis",
- "name": "perfanalysis",
- "properties": {
- "name": "perfanalysis",
- "description": "Determine causes of performance degredation as well as solutions for these problems"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis",
+ "name": "appanalysis",
+ "properties": {
+ "analysisName": "appanalysis",
+ "description": "Determine causes of availability loss as well as solutions for these problems"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses",
+ "name": "apprestartanalysis",
+ "properties": {
+ "name": "apprestartanalysis",
+ "description": "Find the reasons that your app restarted"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis",
+ "name": "memoryanalysis",
+ "properties": {
+ "name": "memoryanalysis",
+ "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis",
+ "name": "tcpconnectionsanalysis",
+ "properties": {
+ "name": "tcpconnectionsanalysis",
+ "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app"
+ }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis",
+ "name": "perfanalysis",
+ "properties": {
+ "name": "perfanalysis",
+ "description": "Determine causes of performance degredation as well as solutions for these problems"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponses.json
index 6af6c89b8d6e..5e2e145a2811 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponses.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponses.json
@@ -1,30 +1,29 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": []
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json
index dd2bc3d39cf7..ee97f2052943 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorResponsesSlot.json
@@ -1,31 +1,30 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "api-version": "2016-03-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability",
- "name": "runtimeavailability",
- "properties": {
- "metadata": {
- "description": "This detector analyzes the requests to your application.",
- "category": "Availability and Performance",
- "subCategory": "App Availability",
- "supportTopicId": ""
- },
- "dataset": [
- ]
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "api-version": "2016-03-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability",
+ "name": "runtimeavailability",
+ "properties": {
+ "metadata": {
+ "description": "This detector analyzes the requests to your application.",
+ "category": "Availability and Performance",
+ "subCategory": "App Availability",
+ "supportTopicId": ""
+ },
+ "dataset": []
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectors.json
index 82dcc8b8117c..7fa203daf891 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectors.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectors.json
@@ -1,233 +1,233 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth",
- "name": "servicehealth",
- "location": "West US",
- "properties": {
- "name": "servicehealth",
- "displayName": "Service Health",
- "description": null,
- "rank": 1,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap",
- "name": "siteswap",
- "location": "West US",
- "properties": {
- "name": "siteswap",
- "displayName": "Site Swap Operations",
- "description": null,
- "rank": 8,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment",
- "name": "deployment",
- "location": "West US",
- "properties": {
- "name": "deployment",
- "displayName": "Site Deployments",
- "description": null,
- "rank": 7,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis",
- "name": "sitecpuanalysis",
- "location": "West US",
- "properties": {
- "name": "sitecpuanalysis",
- "displayName": "CPU Analysis",
- "description": null,
- "rank": 3,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis",
- "name": "sitememoryanalysis",
- "location": "West US",
- "properties": {
- "name": "sitememoryanalysis",
- "displayName": "Physical Memory Analysis",
- "description": null,
- "rank": 3,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage",
- "name": "committedmemoryusage",
- "location": "West US",
- "properties": {
- "name": "committedmemoryusage",
- "displayName": "Committed Memory Usage",
- "description": null,
- "rank": 7,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations",
- "name": "pagefileoperations",
- "location": "West US",
- "properties": {
- "name": "pagefileoperations",
- "displayName": "Page File Operations",
- "description": null,
- "rank": 3,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated",
- "name": "siterestartuserinitiated",
- "location": "West US",
- "properties": {
- "name": "siterestartuserinitiated",
- "displayName": "User Initiated Site Restarts",
- "description": null,
- "rank": 14,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate",
- "name": "siterestartsettingupdate",
- "location": "West US",
- "properties": {
- "name": "siterestartsettingupdate",
- "displayName": "Config Update Site Restarts",
- "description": null,
- "rank": 12,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis",
- "name": "frebanalysis",
- "location": "West US",
- "properties": {
- "name": "frebanalysis",
- "displayName": "Freb Logs Analysis",
- "description": null,
- "rank": 6,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability",
- "name": "workeravailability",
- "location": "West US",
- "properties": {
- "name": "workeravailability",
- "displayName": "Worker Availability",
- "description": null,
- "rank": 11,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency",
- "name": "sitelatency",
- "location": "West US",
- "properties": {
- "name": "sitelatency",
- "displayName": "Site Latency",
- "description": null,
- "rank": 1005,
- "isEnabled": false
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount",
- "name": "threadcount",
- "location": "West US",
- "properties": {
- "name": "threadcount",
- "displayName": "Thread Count",
- "description": null,
- "rank": 23,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri",
- "name": "failedrequestsperuri",
- "location": "West US",
- "properties": {
- "name": "failedrequestsperuri",
- "displayName": "Failed Requests Per URI",
- "description": null,
- "rank": 998,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal",
- "name": "autoheal",
- "location": "West US",
- "properties": {
- "name": "autoheal",
- "displayName": "AutoHeal",
- "description": null,
- "rank": 21,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer",
- "name": "loganalyzer",
- "location": "West US",
- "properties": {
- "name": "loganalyzer",
- "displayName": "PHP Log Analyzer",
- "description": null,
- "rank": 26,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore",
- "name": "aspnetcore",
- "location": "West US",
- "properties": {
- "name": "aspnetcore",
- "displayName": "ASP.NET Core",
- "description": null,
- "rank": 5,
- "isEnabled": true
- }
- }
- ]
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth",
+ "name": "servicehealth",
+ "location": "West US",
+ "properties": {
+ "name": "servicehealth",
+ "displayName": "Service Health",
+ "description": null,
+ "rank": 1,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap",
+ "name": "siteswap",
+ "location": "West US",
+ "properties": {
+ "name": "siteswap",
+ "displayName": "Site Swap Operations",
+ "description": null,
+ "rank": 8,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment",
+ "name": "deployment",
+ "location": "West US",
+ "properties": {
+ "name": "deployment",
+ "displayName": "Site Deployments",
+ "description": null,
+ "rank": 7,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis",
+ "name": "sitecpuanalysis",
+ "location": "West US",
+ "properties": {
+ "name": "sitecpuanalysis",
+ "displayName": "CPU Analysis",
+ "description": null,
+ "rank": 3,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis",
+ "name": "sitememoryanalysis",
+ "location": "West US",
+ "properties": {
+ "name": "sitememoryanalysis",
+ "displayName": "Physical Memory Analysis",
+ "description": null,
+ "rank": 3,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage",
+ "name": "committedmemoryusage",
+ "location": "West US",
+ "properties": {
+ "name": "committedmemoryusage",
+ "displayName": "Committed Memory Usage",
+ "description": null,
+ "rank": 7,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations",
+ "name": "pagefileoperations",
+ "location": "West US",
+ "properties": {
+ "name": "pagefileoperations",
+ "displayName": "Page File Operations",
+ "description": null,
+ "rank": 3,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated",
+ "name": "siterestartuserinitiated",
+ "location": "West US",
+ "properties": {
+ "name": "siterestartuserinitiated",
+ "displayName": "User Initiated Site Restarts",
+ "description": null,
+ "rank": 14,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate",
+ "name": "siterestartsettingupdate",
+ "location": "West US",
+ "properties": {
+ "name": "siterestartsettingupdate",
+ "displayName": "Config Update Site Restarts",
+ "description": null,
+ "rank": 12,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis",
+ "name": "frebanalysis",
+ "location": "West US",
+ "properties": {
+ "name": "frebanalysis",
+ "displayName": "Freb Logs Analysis",
+ "description": null,
+ "rank": 6,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability",
+ "name": "workeravailability",
+ "location": "West US",
+ "properties": {
+ "name": "workeravailability",
+ "displayName": "Worker Availability",
+ "description": null,
+ "rank": 11,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency",
+ "name": "sitelatency",
+ "location": "West US",
+ "properties": {
+ "name": "sitelatency",
+ "displayName": "Site Latency",
+ "description": null,
+ "rank": 1005,
+ "isEnabled": false
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount",
+ "name": "threadcount",
+ "location": "West US",
+ "properties": {
+ "name": "threadcount",
+ "displayName": "Thread Count",
+ "description": null,
+ "rank": 23,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri",
+ "name": "failedrequestsperuri",
+ "location": "West US",
+ "properties": {
+ "name": "failedrequestsperuri",
+ "displayName": "Failed Requests Per URI",
+ "description": null,
+ "rank": 998,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal",
+ "name": "autoheal",
+ "location": "West US",
+ "properties": {
+ "name": "autoheal",
+ "displayName": "AutoHeal",
+ "description": null,
+ "rank": 21,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer",
+ "name": "loganalyzer",
+ "location": "West US",
+ "properties": {
+ "name": "loganalyzer",
+ "displayName": "PHP Log Analyzer",
+ "description": null,
+ "rank": 26,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore",
+ "name": "aspnetcore",
+ "location": "West US",
+ "properties": {
+ "name": "aspnetcore",
+ "displayName": "ASP.NET Core",
+ "description": null,
+ "rank": 5,
+ "isEnabled": true
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorsSlot.json
index 1bce6772c5b5..6f51d97e78f2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorsSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDetectorsSlot.json
@@ -1,66 +1,66 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "diagnosticCategory": "availability",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth",
- "name": "servicehealth",
- "location": "West US",
- "properties": {
- "name": "servicehealth",
- "displayName": "Service Health",
- "description": null,
- "rank": 1,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap",
- "name": "siteswap",
- "location": "West US",
- "properties": {
- "name": "siteswap",
- "displayName": "Site Swap Operations",
- "description": null,
- "rank": 8,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
- "name": "sitecrashes",
- "location": "West US",
- "properties": {
- "name": "sitecrashes",
- "displayName": "Site Crash Events",
- "description": null,
- "rank": 9,
- "isEnabled": true
- }
- },
- {
- "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment",
- "name": "deployment",
- "location": "West US",
- "properties": {
- "name": "deployment",
- "displayName": "Site Deployments",
- "description": null,
- "rank": 7,
- "isEnabled": true
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "diagnosticCategory": "availability",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth",
+ "name": "servicehealth",
+ "location": "West US",
+ "properties": {
+ "name": "servicehealth",
+ "displayName": "Service Health",
+ "description": null,
+ "rank": 1,
+ "isEnabled": true
}
- }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap",
+ "name": "siteswap",
+ "location": "West US",
+ "properties": {
+ "name": "siteswap",
+ "displayName": "Site Swap Operations",
+ "description": null,
+ "rank": 8,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes",
+ "name": "sitecrashes",
+ "location": "West US",
+ "properties": {
+ "name": "sitecrashes",
+ "displayName": "Site Crash Events",
+ "description": null,
+ "rank": 9,
+ "isEnabled": true
+ }
+ },
+ {
+ "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment",
+ "name": "deployment",
+ "location": "West US",
+ "properties": {
+ "name": "deployment",
+ "displayName": "Site Deployments",
+ "description": null,
+ "rank": 7,
+ "isEnabled": true
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategories.json
index 35405e4d1b6a..7f136bdad9f5 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategories.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategories.json
@@ -1,24 +1,24 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json
index 83ce75a2b42c..7b74fa509ffa 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json
@@ -1,25 +1,25 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "siteName": "SampleApp",
- "slot": "staging",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
- "name": "availability",
- "properties": {
- "identifier": "availability",
- "description": "Availability and Perfomance Diagnostics"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "siteName": "SampleApp",
+ "slot": "staging",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability",
+ "name": "availability",
+ "properties": {
+ "identifier": "availability",
+ "description": "Availability and Perfomance Diagnostics"
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetAppServicePlan.json
index 19a6219abf82..0be529e2586a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetAppServicePlan.json
@@ -1,46 +1,46 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
"name": "testsf6141",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "404": {}
- }
-}
\ No newline at end of file
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ },
+ "404": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetCertificate.json
index b4b7e23152ea..ff9c72ff4e39 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetCertificate.json
@@ -1,31 +1,31 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetDeletedWebAppByLocation.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetDeletedWebAppByLocation.json
index 0f2997f9d2c3..da0e92452a5b 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetDeletedWebAppByLocation.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetDeletedWebAppByLocation.json
@@ -1,27 +1,27 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "location": "West US 2",
- "deletedSiteId": "9",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "name": "wussite6",
- "type": "Microsoft.Web/locations/deletedSites",
- "properties": {
- "deletedSiteId": 9,
- "deletedTimestamp": "2019-05-09T22:29:05.1337007",
- "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroup": "rg1",
- "deletedSiteName": "wussite6",
- "slot": "Production",
- "kind": "app",
- "geoRegionName": "West US 2"
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "location": "West US 2",
+ "deletedSiteId": "9",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "name": "wussite6",
+ "type": "Microsoft.Web/locations/deletedSites",
+ "properties": {
+ "deletedSiteId": 9,
+ "deletedTimestamp": "2019-05-09T22:29:05.1337007",
+ "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroup": "rg1",
+ "deletedSiteName": "wussite6",
+ "slot": "Production",
+ "kind": "app",
+ "geoRegionName": "West US 2"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetInboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetInboundNetworkDependenciesEndpoints.json
index 5b085c34022f..94ac54b7e85c 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetInboundNetworkDependenciesEndpoints.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetInboundNetworkDependenciesEndpoints.json
@@ -1,80 +1,80 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "name": "SampleAse",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "description": "App Service management",
- "endpoints": [
- "70.37.57.58/32",
- "157.55.208.185/32",
- "23.102.188.65/32",
- "191.236.154.88/32",
- "52.174.22.21/32",
- "13.94.149.179/32",
- "13.94.143.126/32",
- "13.94.141.115/32",
- "52.178.195.197/32",
- "52.178.190.65/32",
- "52.178.184.149/32",
- "52.178.177.147/32",
- "13.75.127.117/32",
- "40.83.125.161/32",
- "40.83.121.56/32",
- "40.83.120.64/32",
- "52.187.56.50/32",
- "52.187.63.37/32",
- "52.187.59.251/32",
- "52.187.63.19/32",
- "52.165.158.140/32",
- "52.165.152.214/32",
- "52.165.154.193/32",
- "52.165.153.122/32",
- "104.44.129.255/32",
- "104.44.134.255/32",
- "104.44.129.243/32",
- "104.44.129.141/32",
- "65.52.193.203/32",
- "70.37.89.222/32",
- "13.64.115.203/32",
- "52.225.177.153/32",
- "65.52.172.237/32"
- ],
- "ports": [
- "454",
- "455"
- ]
- },
- {
- "description": "App Service Environment VIP",
- "endpoints": [
- "52.247.209.18/32"
- ],
- "ports": [
- "454",
- "455",
- "16001"
- ]
- },
- {
- "description": "App Service Environment subnet",
- "endpoints": [
- "192.168.250.0/24"
- ],
- "ports": [
- "All"
- ]
- }
- ],
- "nextLink": null,
- "id": null
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "name": "SampleAse",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "description": "App Service management",
+ "endpoints": [
+ "70.37.57.58/32",
+ "157.55.208.185/32",
+ "23.102.188.65/32",
+ "191.236.154.88/32",
+ "52.174.22.21/32",
+ "13.94.149.179/32",
+ "13.94.143.126/32",
+ "13.94.141.115/32",
+ "52.178.195.197/32",
+ "52.178.190.65/32",
+ "52.178.184.149/32",
+ "52.178.177.147/32",
+ "13.75.127.117/32",
+ "40.83.125.161/32",
+ "40.83.121.56/32",
+ "40.83.120.64/32",
+ "52.187.56.50/32",
+ "52.187.63.37/32",
+ "52.187.59.251/32",
+ "52.187.63.19/32",
+ "52.165.158.140/32",
+ "52.165.152.214/32",
+ "52.165.154.193/32",
+ "52.165.153.122/32",
+ "104.44.129.255/32",
+ "104.44.134.255/32",
+ "104.44.129.243/32",
+ "104.44.129.141/32",
+ "65.52.193.203/32",
+ "70.37.89.222/32",
+ "13.64.115.203/32",
+ "52.225.177.153/32",
+ "65.52.172.237/32"
+ ],
+ "ports": [
+ "454",
+ "455"
+ ]
+ },
+ {
+ "description": "App Service Environment VIP",
+ "endpoints": [
+ "52.247.209.18/32"
+ ],
+ "ports": [
+ "454",
+ "455",
+ "16001"
+ ]
+ },
+ {
+ "description": "App Service Environment subnet",
+ "endpoints": [
+ "192.168.250.0/24"
+ ],
+ "ports": [
+ "All"
+ ]
+ }
+ ],
+ "nextLink": null,
+ "id": null
+ }
}
+ }
}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetOutboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetOutboundNetworkDependenciesEndpoints.json
index 6ff7e6f0c857..83a3ba248491 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetOutboundNetworkDependenciesEndpoints.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetOutboundNetworkDependenciesEndpoints.json
@@ -1,803 +1,803 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "Sample-WestUSResourceGroup",
- "name": "SampleAse",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "body": {
- "value": [
- {
- "category": "Azure Storage",
- "endpoints": [
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "52.183.104.36",
- "port": 80,
- "latency": 42.0469,
- "isAccessable": true
- },
- {
- "ipAddress": "52.183.104.36",
- "port": 443,
- "latency": 41.7038,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "52.183.104.25",
- "port": 80,
- "latency": 37.326,
- "isAccessable": true
- },
- {
- "ipAddress": "52.183.104.25",
- "port": 443,
- "latency": 37.513600000000004,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "52.183.104.26",
- "port": 80,
- "latency": 32.789,
- "isAccessable": true
- },
- {
- "ipAddress": "52.183.104.26",
- "port": 443,
- "latency": 1.8702,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "52.183.104.28",
- "port": 80,
- "latency": 36.7378,
- "isAccessable": true
- },
- {
- "ipAddress": "52.183.104.28",
- "port": 443,
- "latency": 36.7108,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.64",
- "port": 80,
- "latency": 4.0261000000000005,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.64",
- "port": 443,
- "latency": 3.8264,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.73",
- "port": 80,
- "latency": 40.8523,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.73",
- "port": 443,
- "latency": 40.7501,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.74",
- "port": 80,
- "latency": 1.2071,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.74",
- "port": 443,
- "latency": 38.2975,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.76",
- "port": 80,
- "latency": 59.383700000000005,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.76",
- "port": 443,
- "latency": 60.0775,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.64",
- "port": 80,
- "latency": 3.5512,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.64",
- "port": 443,
- "latency": 2.6777,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.73",
- "port": 80,
- "latency": 3.5204,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.73",
- "port": 443,
- "latency": 2.8193,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.74",
- "port": 80,
- "latency": 3.2720000000000002,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.74",
- "port": 443,
- "latency": 3.0147,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.76",
- "port": 80,
- "latency": 3.2387,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.76",
- "port": 443,
- "latency": 3.2804,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.66.176.16",
- "port": 80,
- "latency": 43.025200000000005,
- "isAccessable": true
- },
- {
- "ipAddress": "13.66.176.16",
- "port": 443,
- "latency": 43.1683,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.66.176.25",
- "port": 80,
- "latency": 41.8598,
- "isAccessable": true
- },
- {
- "ipAddress": "13.66.176.25",
- "port": 443,
- "latency": 41.9805,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.66.176.26",
- "port": 80,
- "latency": 30.542900000000003,
- "isAccessable": true
- },
- {
- "ipAddress": "13.66.176.26",
- "port": 443,
- "latency": 0.98320000000000007,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.66.176.28",
- "port": 80,
- "latency": 35.9562,
- "isAccessable": true
- },
- {
- "ipAddress": "13.66.176.28",
- "port": 443,
- "latency": 36.0643,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.64",
- "port": 80,
- "latency": 3.2829,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.64",
- "port": 443,
- "latency": 2.3393,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.73",
- "port": 80,
- "latency": 3.4103000000000003,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.73",
- "port": 443,
- "latency": 4.1032,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.74",
- "port": 80,
- "latency": 3.1141,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.74",
- "port": 443,
- "latency": 3.0247,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.76",
- "port": 80,
- "latency": 2.834,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.76",
- "port": 443,
- "latency": 2.8198000000000003,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.64",
- "port": 80,
- "latency": 1.3855000000000002,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.64",
- "port": 443,
- "latency": 1.0594000000000001,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.73",
- "port": 80,
- "latency": 2.4717000000000002,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.73",
- "port": 443,
- "latency": 2.4827,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.74",
- "port": 80,
- "latency": 3.395,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.74",
- "port": 443,
- "latency": 3.1701,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.76",
- "port": 80,
- "latency": 1.4308,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.76",
- "port": 443,
- "latency": 22.5866,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "blob.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.64",
- "port": 80,
- "latency": 2.5372,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.64",
- "port": 443,
- "latency": 2.4626,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "queue.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.73",
- "port": 80,
- "latency": 3.7873,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.73",
- "port": 443,
- "latency": 4.1911000000000005,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "table.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.74",
- "port": 80,
- "latency": 2.9162000000000003,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.74",
- "port": 443,
- "latency": 2.7896,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "file.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.77.184.76",
- "port": 80,
- "latency": 26.723100000000002,
- "isAccessable": true
- },
- {
- "ipAddress": "13.77.184.76",
- "port": 443,
- "latency": 26.735200000000003,
- "isAccessable": true
- }
- ]
- }
- ]
- },
- {
- "category": "Azure SQL Database",
- "endpoints": [
- {
- "domainName": "database.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "13.66.226.202",
- "port": 1433,
- "latency": 1.5964,
- "isAccessable": true
- }
- ]
- }
- ]
- },
- {
- "category": "Azure Management",
- "endpoints": [
- {
- "domainName": "management.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "23.102.135.246",
- "port": 443,
- "latency": 46.5764,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "admin.core.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "23.102.135.247",
- "port": 443,
- "latency": 47.408,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "management.azure.com",
- "endpointDetails": [
- {
- "ipAddress": "52.151.25.45",
- "port": 443,
- "latency": 3.9529,
- "isAccessable": true
- }
- ]
- }
- ]
- },
- {
- "category": "Azure Active Directory",
- "endpoints": [
- {
- "domainName": "graph.windows.net",
- "endpointDetails": [
- {
- "ipAddress": "20.190.133.83",
- "port": 443,
- "latency": 3.2264,
- "isAccessable": true
- },
- {
- "ipAddress": "20.190.133.81",
- "port": 443,
- "latency": 3.2264,
- "isAccessable": true
- },
- {
- "ipAddress": "20.190.133.67",
- "port": 443,
- "latency": 3.2264,
- "isAccessable": true
- },
- {
- "ipAddress": "40.126.5.34",
- "port": 443,
- "latency": 3.2264,
- "isAccessable": true
- }
- ]
- }
- ]
- },
- {
- "category": "Regional Service",
- "endpoints": [
- {
- "domainName": "gr-prod-mwh.cloudapp.net",
- "endpointDetails": [
- {
- "ipAddress": "13.66.225.188",
- "port": 443,
- "latency": 3.3826,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "az-prod.metrics.nsatc.net",
- "endpointDetails": [
- {
- "ipAddress": "40.77.24.27",
- "port": 443,
- "latency": 38.5647,
- "isAccessable": true
- }
- ]
- }
- ]
- },
- {
- "category": "SSL Certificate Verification",
- "endpoints": [
- {
- "domainName": "ocsp.msocsp.com",
- "endpointDetails": [
- {
- "ipAddress": "104.18.25.243",
- "port": 80,
- "latency": 6.0651,
- "isAccessable": true
- },
- {
- "ipAddress": "104.18.25.243",
- "port": 443,
- "latency": 12.888,
- "isAccessable": true
- },
- {
- "ipAddress": "104.18.24.243",
- "port": 80,
- "latency": 6.0651,
- "isAccessable": true
- },
- {
- "ipAddress": "104.18.24.243",
- "port": 443,
- "latency": 12.888,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "mscrl.microsoft.com",
- "endpointDetails": [
- {
- "ipAddress": "152.199.4.33",
- "port": 80,
- "latency": 6.7429000000000006,
- "isAccessable": true
- },
- {
- "ipAddress": "152.199.4.33",
- "port": 443,
- "latency": 7.4361000000000006,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "crl.microsoft.com",
- "endpointDetails": [
- {
- "ipAddress": "23.215.102.10",
- "port": 80,
- "latency": 25.136200000000002,
- "isAccessable": true
- },
- {
- "ipAddress": "23.215.102.10",
- "port": 443,
- "latency": 25.0085,
- "isAccessable": true
- },
- {
- "ipAddress": "23.215.102.42",
- "port": 80,
- "latency": 25.136200000000002,
- "isAccessable": true
- },
- {
- "ipAddress": "23.215.102.42",
- "port": 443,
- "latency": 25.0085,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "www.microsoft.com",
- "endpointDetails": [
- {
- "ipAddress": "23.49.13.56",
- "port": 80,
- "latency": 7.9229,
- "isAccessable": true
- },
- {
- "ipAddress": "23.49.13.56",
- "port": 443,
- "latency": 8.4871,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "crl3.digicert.com",
- "endpointDetails": [
- {
- "ipAddress": "72.21.91.29",
- "port": 80,
- "latency": 5.4074,
- "isAccessable": true
- },
- {
- "ipAddress": "72.21.91.29",
- "port": 443,
- "latency": 5.577,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "ocsp.digicert.com",
- "endpointDetails": [
- {
- "ipAddress": "72.21.91.29",
- "port": 80,
- "latency": 6.8989,
- "isAccessable": true
- },
- {
- "ipAddress": "72.21.91.29",
- "port": 443,
- "latency": 5.6674000000000007,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "cacerts.digicert.com",
- "endpointDetails": [
- {
- "ipAddress": "104.18.11.39",
- "port": 80,
- "latency": 10.772400000000001,
- "isAccessable": true
- },
- {
- "ipAddress": "104.18.11.39",
- "port": 443,
- "latency": 10.7705,
- "isAccessable": true
- },
- {
- "ipAddress": "104.18.10.39",
- "port": 80,
- "latency": 10.772400000000001,
- "isAccessable": true
- },
- {
- "ipAddress": "104.18.10.39",
- "port": 443,
- "latency": 10.7705,
- "isAccessable": true
- }
- ]
- },
- {
- "domainName": "www.thawte.com",
- "endpointDetails": [
- {
- "ipAddress": "54.69.98.161",
- "port": 80,
- "latency": 47.532900000000005,
- "isAccessable": true
- },
- {
- "ipAddress": "54.69.98.161",
- "port": 443,
- "latency": 48.5362,
- "isAccessable": true
- },
- {
- "ipAddress": "35.167.62.148",
- "port": 80,
- "latency": 47.532900000000005,
- "isAccessable": true
- },
- {
- "ipAddress": "35.167.62.148",
- "port": 443,
- "latency": 48.5362,
- "isAccessable": true
- }
- ]
- }
- ]
- }
- ],
- "nextLink": null,
- "id": null
- }
- }
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "Sample-WestUSResourceGroup",
+ "name": "SampleAse",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "category": "Azure Storage",
+ "endpoints": [
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "52.183.104.36",
+ "port": 80,
+ "latency": 42.0469,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "52.183.104.36",
+ "port": 443,
+ "latency": 41.7038,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "52.183.104.25",
+ "port": 80,
+ "latency": 37.326,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "52.183.104.25",
+ "port": 443,
+ "latency": 37.513600000000004,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "52.183.104.26",
+ "port": 80,
+ "latency": 32.789,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "52.183.104.26",
+ "port": 443,
+ "latency": 1.8702,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "52.183.104.28",
+ "port": 80,
+ "latency": 36.7378,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "52.183.104.28",
+ "port": 443,
+ "latency": 36.7108,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 80,
+ "latency": 4.0261000000000005,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 443,
+ "latency": 3.8264,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 80,
+ "latency": 40.8523,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 443,
+ "latency": 40.7501,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 80,
+ "latency": 1.2071,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 443,
+ "latency": 38.2975,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 80,
+ "latency": 59.383700000000005,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 443,
+ "latency": 60.0775,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 80,
+ "latency": 3.5512,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 443,
+ "latency": 2.6777,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 80,
+ "latency": 3.5204,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 443,
+ "latency": 2.8193,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 80,
+ "latency": 3.2720000000000002,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 443,
+ "latency": 3.0147,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 80,
+ "latency": 3.2387,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 443,
+ "latency": 3.2804,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.66.176.16",
+ "port": 80,
+ "latency": 43.025200000000005,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.66.176.16",
+ "port": 443,
+ "latency": 43.1683,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.66.176.25",
+ "port": 80,
+ "latency": 41.8598,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.66.176.25",
+ "port": 443,
+ "latency": 41.9805,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.66.176.26",
+ "port": 80,
+ "latency": 30.542900000000003,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.66.176.26",
+ "port": 443,
+ "latency": 0.98320000000000007,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.66.176.28",
+ "port": 80,
+ "latency": 35.9562,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.66.176.28",
+ "port": 443,
+ "latency": 36.0643,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 80,
+ "latency": 3.2829,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 443,
+ "latency": 2.3393,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 80,
+ "latency": 3.4103000000000003,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 443,
+ "latency": 4.1032,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 80,
+ "latency": 3.1141,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 443,
+ "latency": 3.0247,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 80,
+ "latency": 2.834,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 443,
+ "latency": 2.8198000000000003,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 80,
+ "latency": 1.3855000000000002,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 443,
+ "latency": 1.0594000000000001,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 80,
+ "latency": 2.4717000000000002,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 443,
+ "latency": 2.4827,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 80,
+ "latency": 3.395,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 443,
+ "latency": 3.1701,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 80,
+ "latency": 1.4308,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 443,
+ "latency": 22.5866,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "blob.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 80,
+ "latency": 2.5372,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.64",
+ "port": 443,
+ "latency": 2.4626,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "queue.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 80,
+ "latency": 3.7873,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.73",
+ "port": 443,
+ "latency": 4.1911000000000005,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "table.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 80,
+ "latency": 2.9162000000000003,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.74",
+ "port": 443,
+ "latency": 2.7896,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "file.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 80,
+ "latency": 26.723100000000002,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "13.77.184.76",
+ "port": 443,
+ "latency": 26.735200000000003,
+ "isAccessable": true
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "category": "Azure SQL Database",
+ "endpoints": [
+ {
+ "domainName": "database.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.66.226.202",
+ "port": 1433,
+ "latency": 1.5964,
+ "isAccessable": true
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "category": "Azure Management",
+ "endpoints": [
+ {
+ "domainName": "management.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "23.102.135.246",
+ "port": 443,
+ "latency": 46.5764,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "admin.core.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "23.102.135.247",
+ "port": 443,
+ "latency": 47.408,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "management.azure.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "52.151.25.45",
+ "port": 443,
+ "latency": 3.9529,
+ "isAccessable": true
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "category": "Azure Active Directory",
+ "endpoints": [
+ {
+ "domainName": "graph.windows.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "20.190.133.83",
+ "port": 443,
+ "latency": 3.2264,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "20.190.133.81",
+ "port": 443,
+ "latency": 3.2264,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "20.190.133.67",
+ "port": 443,
+ "latency": 3.2264,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "40.126.5.34",
+ "port": 443,
+ "latency": 3.2264,
+ "isAccessable": true
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "category": "Regional Service",
+ "endpoints": [
+ {
+ "domainName": "gr-prod-mwh.cloudapp.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "13.66.225.188",
+ "port": 443,
+ "latency": 3.3826,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "az-prod.metrics.nsatc.net",
+ "endpointDetails": [
+ {
+ "ipAddress": "40.77.24.27",
+ "port": 443,
+ "latency": 38.5647,
+ "isAccessable": true
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "category": "SSL Certificate Verification",
+ "endpoints": [
+ {
+ "domainName": "ocsp.msocsp.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "104.18.25.243",
+ "port": 80,
+ "latency": 6.0651,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "104.18.25.243",
+ "port": 443,
+ "latency": 12.888,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "104.18.24.243",
+ "port": 80,
+ "latency": 6.0651,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "104.18.24.243",
+ "port": 443,
+ "latency": 12.888,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "mscrl.microsoft.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "152.199.4.33",
+ "port": 80,
+ "latency": 6.7429000000000006,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "152.199.4.33",
+ "port": 443,
+ "latency": 7.4361000000000006,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "crl.microsoft.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "23.215.102.10",
+ "port": 80,
+ "latency": 25.136200000000002,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "23.215.102.10",
+ "port": 443,
+ "latency": 25.0085,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "23.215.102.42",
+ "port": 80,
+ "latency": 25.136200000000002,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "23.215.102.42",
+ "port": 443,
+ "latency": 25.0085,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "www.microsoft.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "23.49.13.56",
+ "port": 80,
+ "latency": 7.9229,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "23.49.13.56",
+ "port": 443,
+ "latency": 8.4871,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "crl3.digicert.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "72.21.91.29",
+ "port": 80,
+ "latency": 5.4074,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "72.21.91.29",
+ "port": 443,
+ "latency": 5.577,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "ocsp.digicert.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "72.21.91.29",
+ "port": 80,
+ "latency": 6.8989,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "72.21.91.29",
+ "port": 443,
+ "latency": 5.6674000000000007,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "cacerts.digicert.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "104.18.11.39",
+ "port": 80,
+ "latency": 10.772400000000001,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "104.18.11.39",
+ "port": 443,
+ "latency": 10.7705,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "104.18.10.39",
+ "port": 80,
+ "latency": 10.772400000000001,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "104.18.10.39",
+ "port": 443,
+ "latency": 10.7705,
+ "isAccessable": true
+ }
+ ]
+ },
+ {
+ "domainName": "www.thawte.com",
+ "endpointDetails": [
+ {
+ "ipAddress": "54.69.98.161",
+ "port": 80,
+ "latency": 47.532900000000005,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "54.69.98.161",
+ "port": 443,
+ "latency": 48.5362,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "35.167.62.148",
+ "port": 80,
+ "latency": 47.532900000000005,
+ "isAccessable": true
+ },
+ {
+ "ipAddress": "35.167.62.148",
+ "port": 443,
+ "latency": 48.5362,
+ "isAccessable": true
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "nextLink": null,
+ "id": null
+ }
}
+ }
}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetResourceHealthMetadataBySite.json
index a4601006a30f..637c64cd02b1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetResourceHealthMetadataBySite.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetResourceHealthMetadataBySite.json
@@ -1,23 +1,23 @@
{
- "parameters":{
- "api-version":"2018-02-01",
- "name":"newsiteinnewASE-NCUS",
- "slot":"Production",
- "resourceGroupName":"Default-Web-NorthCentralUS",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38",
- "metadataName":"default"
- },
- "responses":{
- "200":{
- "body":{
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
+ "parameters": {
+ "api-version": "2018-02-01",
+ "name": "newsiteinnewASE-NCUS",
+ "slot": "Production",
+ "resourceGroupName": "Default-Web-NorthCentralUS",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38",
+ "metadataName": "default"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraceOperation.json
index cce0885ef8af..7c703f36ff32 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraceOperation.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraceOperation.json
@@ -1,35 +1,35 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "api-version": "2018-02-01"
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
+ }
+ ]
},
- "responses": {
- "200": {
- "headers": {},
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
- },
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
- },
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
+ },
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
}
+ ]
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraces.json
index 9632f83b3b4f..7c3b26d920f5 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraces.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetWebSiteNetworkTraces.json
@@ -1,22 +1,22 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
}
+ ]
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json
index c2c89ef1170e..56d2fc25f593 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json
@@ -1,79 +1,79 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value" : [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
- "name": "testsf7252",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf7252",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_5680",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
+ "name": "testsf7252",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf7252",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_5680",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json
index 24e8b4b9ee1c..7f31c84083d1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json
@@ -1,80 +1,80 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "api-version": "2016-09-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value" : [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
- "name": "testsf7252",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf7252",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "kind": "app",
- "reserved": false,
- "mdmId": "waws-prod-blu-033_5680",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "api-version": "2016-09-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252",
+ "name": "testsf7252",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf7252",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "kind": "app",
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_5680",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificates.json
index 42971748ee2d..b2d10a34cbf8 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificates.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificates.json
@@ -1,51 +1,51 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
- "name": "testc4912",
- "type": "Microsoft.Web/certificates",
- "location": "West US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert2",
- "hostNames": [
- "ServerCert2"
- ],
- "issuer": "CACert",
- "issueDate": "2015-12-12T23:40:25+00:00",
- "expirationDate": "2040-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
+ "name": "testc4912",
+ "type": "Microsoft.Web/certificates",
+ "location": "West US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert2",
+ "hostNames": [
+ "ServerCert2"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-12-12T23:40:25+00:00",
+ "expirationDate": "2040-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificatesByResourceGroup.json
index 3c890a111948..e7eae6f3f626 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificatesByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificatesByResourceGroup.json
@@ -1,52 +1,52 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
- "name": "testc4912",
- "type": "Microsoft.Web/certificates",
- "location": "West US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert2",
- "hostNames": [
- "ServerCert2"
- ],
- "issuer": "CACert",
- "issueDate": "2015-12-12T23:40:25+00:00",
- "expirationDate": "2040-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
+ "name": "testc4912",
+ "type": "Microsoft.Web/certificates",
+ "location": "West US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert2",
+ "hostNames": [
+ "ServerCert2"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-12-12T23:40:25+00:00",
+ "expirationDate": "2040-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListDeletedWebAppsByLocation.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListDeletedWebAppsByLocation.json
index 5bf67b152a92..d758a980b56e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListDeletedWebAppsByLocation.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListDeletedWebAppsByLocation.json
@@ -1,31 +1,31 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "location": "West US 2",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "name": "wussite6",
- "type": "Microsoft.Web/locations/deletedSites",
- "properties": {
- "deletedSiteId": 9,
- "deletedTimestamp": "2019-05-09T22:29:05.1337007",
- "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroup": "rg1",
- "deletedSiteName": "wussite6",
- "slot": "Production",
- "kind": "app",
- "geoRegionName": "West US 2"
- }
- }
- ],
- "nextLink": null
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "location": "West US 2",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "name": "wussite6",
+ "type": "Microsoft.Web/locations/deletedSites",
+ "properties": {
+ "deletedSiteId": 9,
+ "deletedTimestamp": "2019-05-09T22:29:05.1337007",
+ "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroup": "rg1",
+ "deletedSiteName": "wussite6",
+ "slot": "Production",
+ "kind": "app",
+ "geoRegionName": "West US 2"
}
- }
+ }
+ ],
+ "nextLink": null
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListOperations.json
index 8fcb64da4ede..8fda0a9c507d 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListOperations.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListOperations.json
@@ -1,5781 +1,5781 @@
{
- "parameters": {
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "name": "Microsoft.Web/sites/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App",
- "description": "Get the properties of a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Create or Update Web App",
- "description": "Create a new Web App or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Create or Update Web App Slot",
- "description": "Create a new Web App Slot or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Delete Web App",
- "description": "Delete an existing Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Delete Web App Slot",
- "description": "Delete an existing Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/config/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slot Configuration",
- "description": "Get Web App Slot's configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/config/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Configuration",
- "description": "Get Web App configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/config/list/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "List Web App Security Sensitive Settings",
- "description": "List Web App's security sensitive settings, such as publishing credentials, app settings and connection strings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/config/list/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "List Web App Slot Security Sensitive Settings",
- "description": "List Web App Slot's security sensitive settings, such as publishing credentials, app settings and connection strings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/config/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Update Web App Configuration",
- "description": "Update Web App's configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/config/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Update Web App Slot Configuration",
- "description": "Update Web App Slot's configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/sourcecontrols/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Source Control Configuration",
- "description": "Get Web App's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/sourcecontrols/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slot Source Control Configuration",
- "description": "Get Web App Slot's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/sourcecontrols/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Update Web App Source Control Configuration",
- "description": "Update Web App's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/sourcecontrols/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Update Web App Slot Source Control Configuration",
- "description": "Update Web App Slot's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/sourcecontrols/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Delete Web App Source Control Configuration",
- "description": "Delete Web App's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/sourcecontrols/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Delete Web App Slot Source Control Configuration",
- "description": "Delete Web App Slot's source control configuration settings"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/backup/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Create Web App Backup",
- "description": "Create a new web app backup"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/backup/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Create Web App Slot Backup",
- "description": "Create new Web App Slot backup."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/backups/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Backup",
- "description": "Get the properties of a web app's backup"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/backups/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "List Web App Slot Backups",
- "description": "Get the properties of a web app slots' backup"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/publishxml/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Publishing Profile",
- "description": "Get publishing profile xml for a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/publishxml/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slot Publishing Profile",
- "description": "Get publishing profile xml for Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/publish/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Publish Web App",
- "description": "Publish a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/publish/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Publish Web App Slot",
- "description": "Publish a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/restart/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Restart Web App",
- "description": "Restart a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/restart/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Restart Web App Slot",
- "description": "Restart a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/start/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Start Web App",
- "description": "Start a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/start/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Start Web App Slot",
- "description": "Start a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/stop/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Stop Web App",
- "description": "Stop a Web App"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/stop/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Stop Web App Slot",
- "description": "Stop a Web App Slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slotsswap/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Swap Web App Slots",
- "description": "Swap Web App deployment slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/slotsswap/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Swap Web App Slots",
- "description": "Swap Web App deployment slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slotsdiffs/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Get Web App Slots Differences",
- "description": "Get differences in configuration between web app and slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/slotsdiffs/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Slots Differences",
- "description": "Get differences in configuration between web app and slots"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/applySlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Apply Web App Configuration",
- "description": "Apply web app slot configuration from target slot to the current web app"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/applySlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Apply Web App Slot Configuration",
- "description": "Apply web app slot configuration from target slot to the current slot."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/resetSlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App",
- "operation": "Reset Web App Configuration",
- "description": "Reset web app configuration"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/resetSlotConfig/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Reset Web App Slot Configuration",
- "description": "Reset web app slot configuration"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/slots/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web App Slot",
- "operation": "Get Web App Deployment Slot",
- "description": "Get the properties of a Web App deployment slot"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Get App Service Plan",
- "description": "Get the properties on an App Service Plan"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Create or Update App Service Plan",
- "description": "Create a new App Service Plan or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Delete App Service Plan",
- "description": "Delete an existing App Service Plan"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/restartSites/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plan",
- "operation": "Restart Web Apps",
- "description": "Restart all Web Apps in an App Service Plan"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/certificates/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Certificate",
- "operation": "Get Certificates",
- "description": "Get the list of certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/certificates/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Certificate",
- "operation": "Add or Update Certificate",
- "description": "Add a new certificate or update an existing one."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/certificates/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Certificate",
- "operation": "Delete Certificate",
- "description": "Delete an existing certificate."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/geoRegions/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Geo Region",
- "operation": "Get Geo Regions",
- "description": "Get the list of Geo regions."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/listSitesAssignedToHostName/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Site Name",
- "operation": "Get sites assigned to hostname",
- "description": "Get names of sites assigned to hostname."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Get App Service Environment",
- "description": "Get the properties of an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Create or Update App Service Environment",
- "description": "Create a new App Service Environment or update existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Delete App Service Environment",
- "description": "Delete an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/reboot/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment",
- "operation": "Reboot an App Service Environment",
- "description": "Reboot all machines in an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment FrontEnd Pool",
- "operation": "Get FrontEnd Pool",
- "description": "Get the properties of a FrontEnd Pool in an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment FrontEnd Pool",
- "operation": "Create or Update FrontEnd Pool",
- "description": "Create a new FrontEnd Pool in an App Service Environment or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/workerPools/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment Worker Pool",
- "operation": "Get Worker Pool",
- "description": "Get the properties of a Worker Pool in an App Service Environment"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/workerPools/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Environment Worker Pool",
- "operation": "Create or Update Worker Pool",
- "description": "Create a new Worker Pool in an App Service Environment or update an existing one"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Get Connections",
- "description": "Get the list of Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Add or Update Connection",
- "description": "Creates or updates a Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Delete Connection",
- "description": "Deletes a Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connections/Join/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Join Connection",
- "description": "Joins a Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Get Connection Gateways",
- "description": "Get the list of Connection Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Add or Update Connection Gateways",
- "description": "Creates or updates a Connection Gateway."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Delete Connection Gateway",
- "description": "Deletes a Connection Gateway."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/connectionGateways/Join/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "Join Connection Gateway",
- "description": "Joins a Connection Gateway."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/recommendations/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Recommendation",
- "operation": "Get recommendations",
- "description": "Get the list of recommendations for subscriptions."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/sites/recommendations/Read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Recommendation",
- "operation": "Get recommendations for web app",
- "description": "Get the list of recommendations for web app."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/availablestacks/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Available Stacks",
- "operation": "Get Available Stacks",
- "description": "Get Available Stacks."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/checknameavailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Check Name Availability",
- "operation": "Get Check Name Availability",
- "description": "Check if resource name is available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/classicmobileservices/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Classic Mobile Services",
- "operation": "Get Classic Mobile Services",
- "description": "Get Classic Mobile Services."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/connections/confirmconsentcode/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "Confirm Connections Consent Code",
- "description": "Confirm Connections Consent Code."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/connections/listconsentlinks/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connections",
- "operation": "List Consent Links for Connections",
- "description": "List Consent Links for Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/deploymentlocations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Deployment Locations",
- "operation": "Get Deployment Locations",
- "description": "Get Deployment Locations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/capacities/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Capacities",
- "operation": "Get Hosting Environments Capacities",
- "description": "Get Hosting Environments Capacities."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/diagnostics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Diagnostics",
- "operation": "Get Hosting Environments Diagnostics",
- "description": "Get Hosting Environments Diagnostics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Metric Definitions",
- "operation": "Get Hosting Environments Metric Definitions",
- "description": "Get Hosting Environments Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools Metric Definitions",
- "operation": "Get Hosting Environments MultiRole Pools Metric Definitions",
- "description": "Get Hosting Environments MultiRole Pools Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools Metrics",
- "operation": "Get Hosting Environments MultiRole Pools Metrics",
- "description": "Get Hosting Environments MultiRole Pools Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools SKUs",
- "operation": "Get Hosting Environments MultiRole Pools SKUs",
- "description": "Get Hosting Environments MultiRole Pools SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/multirolepools/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments MultiRole Pools Usages",
- "operation": "Get Hosting Environments MultiRole Pools Usages",
- "description": "Get Hosting Environments MultiRole Pools Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Operations",
- "operation": "Get Hosting Environments Operations",
- "description": "Get Hosting Environments Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/resume/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments",
- "operation": "Resume Hosting Environments",
- "description": "Resume Hosting Environments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/serverfarms/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments App Service Plans",
- "operation": "Get Hosting Environments App Service Plans",
- "description": "Get Hosting Environments App Service Plans."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/sites/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Web Apps",
- "operation": "Get Hosting Environments Web Apps",
- "description": "Get Hosting Environments Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/suspend/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments",
- "operation": "Suspend Hosting Environments",
- "description": "Suspend Hosting Environments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Usages",
- "operation": "Get Hosting Environments Usages",
- "description": "Get Hosting Environments Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools Metric Definitions",
- "operation": "Get Hosting Environments Workerpools Metric Definitions",
- "description": "Get Hosting Environments Workerpools Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools Metrics",
- "operation": "Get Hosting Environments Workerpools Metrics",
- "description": "Get Hosting Environments Workerpools Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools SKUs",
- "operation": "Get Hosting Environments Workerpools SKUs",
- "description": "Get Hosting Environments Workerpools SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/hostingenvironments/workerpools/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environments Workerpools Usages",
- "operation": "Get Hosting Environments Workerpools Usages",
- "description": "Get Hosting Environments Workerpools Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/ishostingenvironmentnameavailable/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hosting Environment Name",
- "operation": "Check if Hosting Environment Name is available",
- "description": "Get if Hosting Environment Name is available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/ishostnameavailable/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Hostname",
- "operation": "Check if Hostname is Available",
- "description": "Check if Hostname is Available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/isusernameavailable/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Username",
- "operation": "Check if Username is available",
- "description": "Check if Username is available."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/locations/apioperations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Locations API Operations",
- "operation": "Get Locations API Operations",
- "description": "Get Locations API Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/locations/connectiongatewayinstallations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Locations Connection Gateway Installations",
- "operation": "Get Locations Connection Gateway Installations",
- "description": "Get Locations Connection Gateway Installations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/locations/managedapis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Locations Managed APIs",
- "operation": "Get Locations Managed APIs",
- "description": "Get Locations Managed APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Operations",
- "operation": "Get Operations",
- "description": "Get Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/publishingusers/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Publishing Users",
- "operation": "Get Publishing Users",
- "description": "Get Publishing Users."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/publishingusers/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Publishing Users",
- "operation": "Update Publishing Users",
- "description": "Update Publishing Users."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/capabilities/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Capabilities",
- "operation": "Get App Service Plans Capabilities",
- "description": "Get App Service Plans Capabilities."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/firstpartyapps/settings/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans First Party Apps Settings",
- "operation": "Delete App Service Plans First Party Apps Settings",
- "description": "Delete App Service Plans First Party Apps Settings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/firstpartyapps/settings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans First Party Apps Settings",
- "operation": "Get App Service Plans First Party Apps Settings",
- "description": "Get App Service Plans First Party Apps Settings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/firstpartyapps/settings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans First Party Apps Settings",
- "operation": "Update App Service Plans First Party Apps Settings",
- "description": "Update App Service Plans First Party Apps Settings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/sites/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Namespaces Relays Web Apps",
- "operation": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps",
- "description": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionplanlimits/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Plan Limits",
- "operation": "Get App Service Plans Hybrid Connection Plan Limits",
- "description": "Get App Service Plans Hybrid Connection Plan Limits."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionrelays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Relays",
- "operation": "Get App Service Plans Hybrid Connection Relays",
- "description": "Get App Service Plans Hybrid Connection Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Metric Definitions",
- "operation": "Get App Service Plans Metric Definitions",
- "description": "Get App Service Plans Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Metrics",
- "operation": "Get App Service Plans Metrics",
- "description": "Get App Service Plans Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/operationresults/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Operation Results",
- "operation": "Get App Service Plans Operation Results",
- "description": "Get App Service Plans Operation Results."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/sites/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Web Apps",
- "operation": "Get App Service Plans Web Apps",
- "description": "Get App Service Plans Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans SKUs",
- "operation": "Get App Service Plans SKUs",
- "description": "Get App Service Plans SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Usages",
- "operation": "Get App Service Plans Usages",
- "description": "Get App Service Plans Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/gateways/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Gateways",
- "operation": "Update App Service Plans Virtual Network Connections Gateways",
- "description": "Update App Service Plans Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections",
- "operation": "Get App Service Plans Virtual Network Connections",
- "description": "Get App Service Plans Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Routes",
- "operation": "Delete App Service Plans Virtual Network Connections Routes",
- "description": "Delete App Service Plans Virtual Network Connections Routes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Routes",
- "operation": "Get App Service Plans Virtual Network Connections Routes",
- "description": "Get App Service Plans Virtual Network Connections Routes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Virtual Network Connections Routes",
- "operation": "Update App Service Plans Virtual Network Connections Routes",
- "description": "Update App Service Plans Virtual Network Connections Routes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/workers/reboot/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Workers",
- "operation": "Reboot App Service Plans Workers",
- "description": "Reboot App Service Plans Workers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/analyzecustomhostname/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Custom Hostname",
- "operation": "Analyze Custom Hostname",
- "description": "Analyze Custom Hostname."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backup/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backup",
- "operation": "Get Web Apps Backup",
- "description": "Get Web Apps Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backup/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backup",
- "operation": "Update Web Apps Backup",
- "description": "Update Web Apps Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backups/list/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backups",
- "operation": "List Web Apps Backups",
- "description": "List Web Apps Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backups/restore/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backups",
- "operation": "Restore Web Apps Backups",
- "description": "Restore Web Apps Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/config/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Config",
- "operation": "Delete Web Apps Config",
- "description": "Delete Web Apps Config."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Delete Web Apps Continuous Web Jobs",
- "description": "Delete Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Get Web Apps Continuous Web Jobs",
- "description": "Get Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/start/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Start Web Apps Continuous Web Jobs",
- "description": "Start Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/continuouswebjobs/stop/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Continuous Web Jobs",
- "operation": "Stop Web Apps Continuous Web Jobs",
- "description": "Stop Web Apps Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments",
- "operation": "Delete Web Apps Deployments",
- "description": "Delete Web Apps Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/log/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments Log",
- "operation": "Get Web Apps Deployments Log",
- "description": "Get Web Apps Deployments Log."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments",
- "operation": "Get Web Apps Deployments",
- "description": "Get Web Apps Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/deployments/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Deployments",
- "operation": "Update Web Apps Deployments",
- "description": "Update Web Apps Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/frebanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics FREB Analysis",
- "operation": "Get Web Apps Diagnostics FREB Analysis",
- "description": "Get Web Apps Diagnostics FREB Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/frebanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics FREB Analysis",
- "operation": "Get Web Apps Slots Diagnostics FREB Analysis",
- "description": "Get Web Apps Slots Diagnostics FREB Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Category",
- "operation": "Get Web Apps Diagnostics Category",
- "description": "Get Web Apps Diagnostics Categories."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/runtimeavailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Runtime Availability",
- "operation": "Get Web Apps Diagnostics Runtime Availability",
- "description": "Get Web Apps Diagnostics Runtime Availability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/servicehealth/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Service Health",
- "operation": "Get Web Apps Diagnostics Service Health",
- "description": "Get Web Apps Diagnostics Service Health."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/workeravailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Workeravailability",
- "operation": "Get Web Apps Diagnostics Workeravailability",
- "description": "Get Web Apps Diagnostics Workeravailability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/workeravailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Workeravailability",
- "operation": "Get Web Apps Slots Diagnostics Workeravailability",
- "description": "Get Web Apps Slots Diagnostics Workeravailability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/workerprocessrecycle/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Worker Process Recycle",
- "operation": "Get Web Apps Diagnostics Worker Process Recycle",
- "description": "Get Web Apps Diagnostics Worker Process Recycle."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/workerprocessrecycle/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Worker Process Recycle",
- "operation": "Get Web Apps Slots Diagnostics Worker Process Recycle",
- "description": "Get Web Apps Slots Diagnostics Worker Process Recycle."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/aspnetcore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics ASP.NET Core",
- "operation": "Get Web Apps Diagnostics ASP.NET Core",
- "description": "Get Web Apps Diagnostics for ASP.NET Core app."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/aspnetcore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics ASP.NET Core",
- "operation": "Get Web Apps Slots Diagnostics ASP.NET Core",
- "description": "Get Web Apps Slots Diagnostics for ASP.NET Core app."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/domainownershipidentifiers/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Domain Ownership Identifiers",
- "operation": "Get Web Apps Domain Ownership Identifiers",
- "description": "Get Web Apps Domain Ownership Identifiers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/domainownershipidentifiers/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Domain Ownership Identifiers",
- "operation": "Update Web Apps Domain Ownership Identifiers",
- "description": "Update Web Apps Domain Ownership Identifiers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Functions Web Apps",
- "description": "Functions Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "Delete Web Apps Functions",
- "description": "Delete Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/listsecrets/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "List Secrets Web Apps Functions",
- "description": "List Secrets Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "Get Web Apps Functions",
- "description": "Get Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions",
- "operation": "Update Web Apps Functions",
- "description": "Update Web Apps Functions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hostnamebindings/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hostname Bindings",
- "operation": "Delete Web Apps Hostname Bindings",
- "description": "Delete Web Apps Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hostnamebindings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hostname Bindings",
- "operation": "Get Web Apps Hostname Bindings",
- "description": "Get Web Apps Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hostnamebindings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hostname Bindings",
- "operation": "Update Web Apps Hostname Bindings",
- "description": "Update Web Apps Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnection/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection",
- "operation": "Delete Web Apps Hybrid Connection",
- "description": "Delete Web Apps Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnection/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection",
- "operation": "Get Web Apps Hybrid Connection",
- "description": "Get Web Apps Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnection/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection",
- "operation": "Update Web Apps Hybrid Connection",
- "description": "Update Web Apps Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionrelays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Relays",
- "operation": "Get Web Apps Hybrid Connection Relays",
- "description": "Get Web Apps Hybrid Connection Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Deployments",
- "operation": "Get Web Apps Instances Deployments",
- "description": "Get Web Apps Instances Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/processes/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Processes",
- "operation": "Delete Web Apps Instances Processes",
- "description": "Delete Web Apps Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/processes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Processes",
- "operation": "Get Web Apps Instances Processes",
- "description": "Get Web Apps Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances",
- "operation": "Get Web Apps Instances",
- "description": "Get Web Apps Instances."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/listsyncfunctiontriggerstatus/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "List Sync Function Trigger Status Web Apps",
- "description": "List Sync Function Trigger Status Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Metric Definitions",
- "operation": "Get Web Apps Metric Definitions",
- "description": "Get Web Apps Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Metrics",
- "operation": "Get Web Apps Metrics",
- "description": "Get Web Apps Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/networktrace/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Network Trace Web Apps",
- "description": "Network Trace Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/newpassword/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Newpassword Web Apps",
- "description": "Newpassword Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/operationresults/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Operation Results",
- "operation": "Get Web Apps Operation Results",
- "description": "Get Web Apps Operation Results."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/perfcounters/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Performance Counters",
- "operation": "Get Web Apps Performance Counters",
- "description": "Get Web Apps Performance Counters."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/premieraddons/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Premier Addons",
- "operation": "Delete Web Apps Premier Addons",
- "description": "Delete Web Apps Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/premieraddons/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Premier Addons",
- "operation": "Get Web Apps Premier Addons",
- "description": "Get Web Apps Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/premieraddons/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Premier Addons",
- "operation": "Update Web Apps Premier Addons",
- "description": "Update Web Apps Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publishxml/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Publishing XML",
- "operation": "Get Web Apps Publishing XML",
- "description": "Get Web Apps Publishing XML."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/recommendationhistory/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Recommendation History",
- "operation": "Get Web Apps Recommendation History",
- "description": "Get Web Apps Recommendation History."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/recommendations/disable/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Recommendations",
- "operation": "Disable Web Apps Recommendations",
- "description": "Disable Web Apps Recommendations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/restore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Restore",
- "operation": "Get Web Apps Restore",
- "description": "Get Web Apps Restore."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/analyzecustomhostname/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Analyze Custom Hostname",
- "operation": "Get Web Apps Slots Analyze Custom Hostname",
- "description": "Get Web Apps Slots Analyze Custom Hostname."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backup/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backup",
- "operation": "Update Web Apps Slots Backup",
- "description": "Update Web Apps Slots Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backups/list/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backups",
- "operation": "List Web Apps Slots Backups",
- "description": "List Web Apps Slots Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backups/restore/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backups",
- "operation": "Restore Web Apps Slots Backups",
- "description": "Restore Web Apps Slots Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/config/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Config",
- "operation": "Delete Web Apps Slots Config",
- "description": "Delete Web Apps Slots Config."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Delete Web Apps Slots Continuous Web Jobs",
- "description": "Delete Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Get Web Apps Slots Continuous Web Jobs",
- "description": "Get Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/start/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Start Web Apps Slots Continuous Web Jobs",
- "description": "Start Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/continuouswebjobs/stop/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Continuous Web Jobs",
- "operation": "Stop Web Apps Slots Continuous Web Jobs",
- "description": "Stop Web Apps Slots Continuous Web Jobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments",
- "operation": "Delete Web Apps Slots Deployments",
- "description": "Delete Web Apps Slots Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/log/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments Log",
- "operation": "Get Web Apps Slots Deployments Log",
- "description": "Get Web Apps Slots Deployments Log."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments",
- "operation": "Get Web Apps Slots Deployments",
- "description": "Get Web Apps Slots Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/deployments/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Deployments",
- "operation": "Update Web Apps Slots Deployments",
- "description": "Update Web Apps Slots Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hostnamebindings/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hostname Bindings",
- "operation": "Delete Web Apps Slots Hostname Bindings",
- "description": "Delete Web Apps Slots Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hostnamebindings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hostname Bindings",
- "operation": "Get Web Apps Slots Hostname Bindings",
- "description": "Get Web Apps Slots Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hostnamebindings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hostname Bindings",
- "operation": "Update Web Apps Slots Hostname Bindings",
- "description": "Update Web Apps Slots Hostname Bindings."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnection/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection",
- "operation": "Delete Web Apps Slots Hybrid Connection",
- "description": "Delete Web Apps Slots Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnection/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection",
- "operation": "Get Web Apps Slots Hybrid Connection",
- "description": "Get Web Apps Slots Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnection/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection",
- "operation": "Update Web Apps Slots Hybrid Connection",
- "description": "Update Web Apps Slots Hybrid Connection."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances Deployments",
- "operation": "Get Web Apps Slots Instances Deployments",
- "description": "Get Web Apps Slots Instances Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/processes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances Processes",
- "operation": "Get Web Apps Slots Instances Processes",
- "description": "Get Web Apps Slots Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances",
- "operation": "Get Web Apps Slots Instances",
- "description": "Get Web Apps Slots Instances."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/metricdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Metric Definitions",
- "operation": "Get Web Apps Slots Metric Definitions",
- "description": "Get Web Apps Slots Metric Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/metrics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Metrics",
- "operation": "Get Web Apps Slots Metrics",
- "description": "Get Web Apps Slots Metrics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/newpassword/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Newpassword Web Apps Slots",
- "description": "Newpassword Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/operationresults/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Operation Results",
- "operation": "Get Web Apps Slots Operation Results",
- "description": "Get Web Apps Slots Operation Results."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/phplogging/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Phplogging",
- "operation": "Get Web Apps Slots Phplogging",
- "description": "Get Web Apps Slots Phplogging."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/premieraddons/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Premier Addons",
- "operation": "Delete Web Apps Slots Premier Addons",
- "description": "Delete Web Apps Slots Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/premieraddons/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Premier Addons",
- "operation": "Get Web Apps Slots Premier Addons",
- "description": "Get Web Apps Slots Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/premieraddons/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Premier Addons",
- "operation": "Update Web Apps Slots Premier Addons",
- "description": "Update Web Apps Slots Premier Addons."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/restore/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Restore",
- "operation": "Get Web Apps Slots Restore",
- "description": "Get Web Apps Slots Restore."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/sync/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Sync Web Apps Slots",
- "description": "Sync Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/triggeredwebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Triggered WebJobs",
- "operation": "Delete Web Apps Slots Triggered WebJobs",
- "description": "Delete Web Apps Slots Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/triggeredwebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Triggered WebJobs",
- "operation": "Get Web Apps Slots Triggered WebJobs",
- "description": "Get Web Apps Slots Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/triggeredwebjobs/run/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Triggered WebJobs",
- "operation": "Run Web Apps Slots Triggered WebJobs",
- "description": "Run Web Apps Slots Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Usages",
- "operation": "Get Web Apps Slots Usages",
- "description": "Get Web Apps Slots Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections",
- "operation": "Delete Web Apps Slots Virtual Network Connections",
- "description": "Delete Web Apps Slots Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/gateways/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections Gateways",
- "operation": "Update Web Apps Slots Virtual Network Connections Gateways",
- "description": "Update Web Apps Slots Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections",
- "operation": "Get Web Apps Slots Virtual Network Connections",
- "description": "Get Web Apps Slots Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/virtualnetworkconnections/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Virtual Network Connections",
- "operation": "Update Web Apps Slots Virtual Network Connections",
- "description": "Update Web Apps Slots Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/webjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots WebJobs",
- "operation": "Get Web Apps Slots WebJobs",
- "description": "Get Web Apps Slots WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/snapshots/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Snapshots",
- "operation": "Get Web Apps Snapshots",
- "description": "Get Web Apps Snapshots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/sync/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Sync Web Apps",
- "description": "Sync Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs",
- "operation": "Delete Web Apps Triggered WebJobs",
- "description": "Delete Web Apps Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs",
- "operation": "Get Web Apps Triggered WebJobs",
- "description": "Get Web Apps Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/run/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs",
- "operation": "Run Web Apps Triggered WebJobs",
- "description": "Run Web Apps Triggered WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/usages/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Usages",
- "operation": "Get Web Apps Usages",
- "description": "Get Web Apps Usages."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections",
- "operation": "Delete Web Apps Virtual Network Connections",
- "description": "Delete Web Apps Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/gateways/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections Gateways",
- "operation": "Get Web Apps Virtual Network Connections Gateways",
- "description": "Get Web Apps Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/gateways/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections Gateways",
- "operation": "Update Web Apps Virtual Network Connections Gateways",
- "description": "Update Web Apps Virtual Network Connections Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections",
- "operation": "Get Web Apps Virtual Network Connections",
- "description": "Get Web Apps Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/virtualnetworkconnections/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Virtual Network Connections",
- "operation": "Update Web Apps Virtual Network Connections",
- "description": "Update Web Apps Virtual Network Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/webjobs/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps WebJobs",
- "operation": "Get Web Apps WebJobs",
- "description": "Get Web Apps WebJobs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/skus/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "SKUs",
- "operation": "Get SKUs",
- "description": "Get SKUs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sourcecontrols/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Source Controls",
- "operation": "Get Source Controls",
- "description": "Get Source Controls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sourcecontrols/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Source Controls",
- "operation": "Update Source Controls",
- "description": "Update Source Controls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/unregister/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Microsoft.Web resource provider",
- "operation": "Unregister Microsoft.Web resource provider",
- "description": "Unregister Microsoft.Web resource provider for the subscription."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/validate/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "",
- "operation": "Validate ",
- "description": "Validate ."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/register/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Microsoft.Web resource provider",
- "operation": "Register Microsoft.Web resource provider",
- "description": "Register Microsoft.Web resource provider for the subscription."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Namespaces Relays",
- "operation": "Get App Service Plans Hybrid Connection Namespaces Relays",
- "description": "Get App Service Plans Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/backups/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Backups",
- "operation": "Delete Web Apps Backups",
- "description": "Delete Web Apps Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "Delete Web Apps Hybrid Connection Namespaces Relays",
- "description": "Delete Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/listkeys/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "List Keys Web Apps Hybrid Connection Namespaces Relays",
- "description": "List Keys Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "Update Web Apps Hybrid Connection Namespaces Relays",
- "description": "Update Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/metricsdefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Metrics Definitions",
- "operation": "Get Web Apps Metrics Definitions",
- "description": "Get Web Apps Metrics Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/migratemysql/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Migrate MySql Web Apps",
- "description": "Migrate MySql Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/migratemysql/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Migrate MySql",
- "operation": "Get Web Apps Migrate MySql",
- "description": "Get Web Apps Migrate MySql."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/recover/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Recover Web Apps",
- "description": "Recover Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/siteextensions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Site Extensions",
- "operation": "Delete Web Apps Site Extensions",
- "description": "Delete Web Apps Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/siteextensions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Site Extensions",
- "operation": "Get Web Apps Site Extensions",
- "description": "Get Web Apps Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/siteextensions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Site Extensions",
- "operation": "Update Web Apps Site Extensions",
- "description": "Update Web Apps Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backup/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backup",
- "operation": "Get Web Apps Slots Backup",
- "description": "Get Web Apps Slots Backup."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnectionrelays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection Relays",
- "operation": "Get Web Apps Slots Hybrid Connection Relays",
- "description": "Get Web Apps Slots Hybrid Connection Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/siteextensions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Site Extensions",
- "operation": "Delete Web Apps Slots Site Extensions",
- "description": "Delete Web Apps Slots Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/siteextensions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Site Extensions",
- "operation": "Get Web Apps Slots Site Extensions",
- "description": "Get Web Apps Slots Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/siteextensions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Site Extensions",
- "operation": "Update Web Apps Slots Site Extensions",
- "description": "Update Web Apps Slots Site Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/snapshots/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Snapshots",
- "operation": "Get Web Apps Slots Snapshots",
- "description": "Get Web Apps Slots Snapshots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/syncfunctiontriggers/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Sync Function Triggers for Web Apps",
- "description": "Sync Function Triggers for Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/triggeredwebjobs/history/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Triggered WebJobs History",
- "operation": "Get Web Apps Triggered WebJobs History",
- "description": "Get Web Apps Triggered WebJobs History."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/connectiongateways/liststatus/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Connection Gateways",
- "operation": "List Status Connection Gateways",
- "description": "List Status Connection Gateways."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "App Service Plans Hybrid Connection Namespaces Relays",
- "operation": "Delete App Service Plans Hybrid Connection Namespaces Relays",
- "description": "Delete App Service Plans Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/deployment/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Deployment",
- "operation": "Get Web Apps Diagnostics Deployment",
- "description": "Get Web Apps Diagnostics Deployment."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitecpuanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site CPU Analysis",
- "operation": "Get Web Apps Diagnostics Site CPU Analysis",
- "description": "Get Web Apps Diagnostics Site CPU Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitelatency/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Latency",
- "operation": "Get Web Apps Diagnostics Site Latency",
- "description": "Get Web Apps Diagnostics Site Latency."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitememoryanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Memory Analysis",
- "operation": "Get Web Apps Diagnostics Site Memory Analysis",
- "description": "Get Web Apps Diagnostics Site Memory Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/threadcount/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Thread Count",
- "operation": "Get Web Apps Diagnostics Thread Count",
- "description": "Get Web Apps Diagnostics Thread Count."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/deployment/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Deployment",
- "operation": "Get Web Apps Slots Diagnostics Deployment",
- "description": "Get Web Apps Slots Diagnostics Deployment."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitecpuanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site CPU Analysis",
- "operation": "Get Web Apps Slots Diagnostics Site CPU Analysis",
- "description": "Get Web Apps Slots Diagnostics Site CPU Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Latency",
- "operation": "Get Web Apps Slots Diagnostics Site Latency",
- "description": "Get Web Apps Slots Diagnostics Site Latency."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitememoryanalysis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Memory Analysis",
- "operation": "Get Web Apps Slots Diagnostics Site Memory Analysis",
- "description": "Get Web Apps Slots Diagnostics Site Memory Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/threadcount/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Thread Count",
- "operation": "Get Web Apps Slots Diagnostics Thread Count",
- "description": "Get Web Apps Slots Diagnostics Thread Count."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/masterkey/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions Masterkey",
- "operation": "Get Web Apps Functions Masterkey",
- "description": "Get Web Apps Functions Masterkey."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Hybrid Connection Namespaces Relays",
- "operation": "Get Web Apps Hybrid Connection Namespaces Relays",
- "description": "Get Web Apps Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/extensions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Extensions",
- "operation": "Get Web Apps Instances Extensions",
- "description": "Get Web Apps Instances Extensions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Operations",
- "operation": "Get Web Apps Operations",
- "description": "Get Web Apps Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/resourcehealthmetadata/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Resource Health Metadata",
- "operation": "Get Web Apps Resource Health Metadata",
- "description": "Get Web Apps Resource Health Metadata."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/backups/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Backups",
- "operation": "Delete Web Apps Slots Backups",
- "description": "Delete Web Apps Slots Backups."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/domainownershipidentifiers/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Domain Ownership Identifiers",
- "operation": "Get Web Apps Slots Domain Ownership Identifiers",
- "description": "Get Web Apps Slots Domain Ownership Identifiers."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
- "operation": "Delete Web Apps Slots Hybrid Connection Namespaces Relays",
- "description": "Delete Web Apps Slots Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
- "operation": "Update Web Apps Slots Hybrid Connection Namespaces Relays",
- "description": "Update Web Apps Slots Hybrid Connection Namespaces Relays."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/operations/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Operations",
- "operation": "Get Web Apps Slots Operations",
- "description": "Get Web Apps Slots Operations."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/perfcounters/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Performance Counters",
- "operation": "Get Web Apps Slots Performance Counters",
- "description": "Get Web Apps Slots Performance Counters."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/resourcehealthmetadata/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Resource Health Metadata",
- "operation": "Get Web Apps Slots Resource Health Metadata",
- "description": "Get Web Apps Slots Resource Health Metadata."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apiacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts Apiacls",
- "operation": "Get Api Management Accounts Apiacls",
- "description": "Get Api Management Accounts Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Get Api Management Accounts APIs Connections",
- "description": "Get Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs",
- "operation": "Get Api Management Accounts APIs",
- "description": "Get Api Management Accounts APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/connectionacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts Connectionacls",
- "operation": "Get Api Management Accounts Connectionacls",
- "description": "Get Api Management Accounts Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/apiacls/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Apiacls",
- "operation": "Delete Api Management Accounts APIs Apiacls",
- "description": "Delete Api Management Accounts APIs Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/apiacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Apiacls",
- "operation": "Get Api Management Accounts APIs Apiacls",
- "description": "Get Api Management Accounts APIs Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/apiacls/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Apiacls",
- "operation": "Update Api Management Accounts APIs Apiacls",
- "description": "Update Api Management Accounts APIs Apiacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connectionacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connectionacls",
- "operation": "Get Api Management Accounts APIs Connectionacls",
- "description": "Get Api Management Accounts APIs Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/confirmconsentcode/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Confirm Consent Code Api Management Accounts APIs Connections",
- "description": "Confirm Consent Code Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections Connectionacls",
- "operation": "Delete Api Management Accounts APIs Connections Connectionacls",
- "description": "Delete Api Management Accounts APIs Connections Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections Connectionacls",
- "operation": "Get Api Management Accounts APIs Connections Connectionacls",
- "description": "Get Api Management Accounts APIs Connections Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections Connectionacls",
- "operation": "Update Api Management Accounts APIs Connections Connectionacls",
- "description": "Update Api Management Accounts APIs Connections Connectionacls."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Delete Api Management Accounts APIs Connections",
- "description": "Delete Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/getconsentlinks/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Get Consent Links for Api Management Accounts APIs Connections",
- "description": "Get Consent Links for Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "Update Api Management Accounts APIs Connections",
- "description": "Update Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs",
- "operation": "Delete Api Management Accounts APIs",
- "description": "Delete Api Management Accounts APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Localized Definitions",
- "operation": "Delete Api Management Accounts APIs Localized Definitions",
- "description": "Delete Api Management Accounts APIs Localized Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Localized Definitions",
- "operation": "Get Api Management Accounts APIs Localized Definitions",
- "description": "Get Api Management Accounts APIs Localized Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Localized Definitions",
- "operation": "Update Api Management Accounts APIs Localized Definitions",
- "description": "Update Api Management Accounts APIs Localized Definitions."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs",
- "operation": "Update Api Management Accounts APIs",
- "description": "Update Api Management Accounts APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/listconnectionkeys/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "List Connection Keys Api Management Accounts APIs Connections",
- "description": "List Connection Keys Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/apimanagementaccounts/apis/connections/listsecrets/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Api Management Accounts APIs Connections",
- "operation": "List Secrets Api Management Accounts APIs Connections",
- "description": "List Secrets Api Management Accounts APIs Connections."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Deployments",
- "operation": "Get Web Apps Diagnostics Deployments",
- "description": "Get Web Apps Diagnostics Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/deployments/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Deployments",
- "operation": "Get Web Apps Slots Diagnostics Deployments",
- "description": "Get Web Apps Slots Diagnostics Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/loganalyzer/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Log Analyzer",
- "operation": "Get Web Apps Diagnostics Log Analyzer",
- "description": "Get Web Apps Diagnostics Log Analyzer."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/loganalyzer/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Log Analyzer",
- "operation": "Get Web Apps Slots Diagnostics Log Analyzer",
- "description": "Get Web Apps Slots Diagnostics Log Analyzer."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/sitecrashes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Crashes",
- "operation": "Get Web Apps Diagnostics Site Crashes",
- "description": "Get Web Apps Diagnostics Site Crashes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitecrashes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Crashes",
- "operation": "Get Web Apps Slots Diagnostics Site Crashes",
- "description": "Get Web Apps Slots Diagnostics Site Crashes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/siterestartsettingupdate/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Restart Setting Update",
- "operation": "Get Web Apps Diagnostics Site Restart Setting Update",
- "description": "Get Web Apps Diagnostics Site Restart Setting Update."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/siterestartsettingupdate/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Restart Setting Update",
- "operation": "Get Web Apps Slots Diagnostics Site Restart Setting Update",
- "description": "Get Web Apps Slots Diagnostics Site Restart Setting Update."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/siterestartuserinitiated/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Restart User Initiated",
- "operation": "Get Web Apps Diagnostics Site Restart User Initiated",
- "description": "Get Web Apps Diagnostics Site Restart User Initiated."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/siterestartuserinitiated/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Restart User Initiated",
- "operation": "Get Web Apps Slots Diagnostics Site Restart User Initiated",
- "description": "Get Web Apps Slots Diagnostics Site Restart User Initiated."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/siteswap/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Site Swap",
- "operation": "Get Web Apps Diagnostics Site Swap",
- "description": "Get Web Apps Diagnostics Site Swap."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/siteswap/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Swap",
- "operation": "Get Web Apps Slots Diagnostics Site Swap",
- "description": "Get Web Apps Slots Diagnostics Site Swap."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/functions/token/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Functions Token",
- "operation": "Get Web Apps Functions Token",
- "description": "Get Web Apps Functions Token."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/deployments/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Deployments",
- "operation": "Delete Web Apps Instances Deployments",
- "description": "Delete Web Apps Instances Deployments."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/processes/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Processes",
- "operation": "Get Web Apps Processes",
- "description": "Get Web Apps Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publiccertificates/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Public Certificates",
- "operation": "Delete Web Apps Public Certificates",
- "description": "Delete Web Apps Public Certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publiccertificates/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Public Certificates",
- "operation": "Get Web Apps Public Certificates",
- "description": "Get Web Apps Public Certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/publiccertificates/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Public Certificates",
- "operation": "Update Web Apps Public Certificates",
- "description": "Update Web Apps Public Certificates."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/networktrace/action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Network Trace Web Apps Slots",
- "description": "Network Trace Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/autoheal/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Autoheal",
- "operation": "Get Web Apps Diagnostics Autoheal",
- "description": "Get Web Apps Diagnostics Autoheal."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/autoheal/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Autoheal",
- "operation": "Get Web Apps Slots Diagnostics Autoheal",
- "description": "Get Web Apps Slots Diagnostics Autoheal."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics",
- "operation": "Get Web Apps Slots Diagnostics",
- "description": "Get Web Apps Slots Diagnostics."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/runtimeavailability/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Runtime Availability",
- "operation": "Get Web Apps Slots Diagnostics Runtime Availability",
- "description": "Get Web Apps Slots Diagnostics Runtime Availability."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/servicehealth/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Service Health",
- "operation": "Get Web Apps Slots Diagnostics Service Health",
- "description": "Get Web Apps Slots Diagnostics Service Health."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Site Latency",
- "operation": "Get Web Apps Slots Diagnostics Site Latency",
- "description": "Get Web Apps Slots Diagnostics Site Latency."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/migratemysql/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Migrate MySql",
- "operation": "Get Web Apps Slots Migrate MySql",
- "description": "Get Web Apps Slots Migrate MySql."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App slot",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for Web App slot",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service plan",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service plan",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service Environment",
- "operation": "Read diagnostic setting",
- "description": "Gets the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Diagnostic setting for App Service Environment",
- "operation": "Write diagnostic setting",
- "description": "Creates or updates the diagnostic setting for the resource"
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/billingmeters/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Billing meters for Microsoft Web Apps",
- "operation": "Read billing meters",
- "description": "Get list of billing meters."
- },
- "origin": "system"
- },
- {
- "name": "microsoft.web/sites/slots/instances/processes/delete",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Instances Processes",
- "operation": "Delete Web Apps Slots Instances Processes",
- "description": "Delete Web Apps Slots Instances Processes."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/restore/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps",
- "operation": "Restore Web Apps",
- "description": "Restore Web Apps."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/instances/extensions/log/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Instances Extensions Log",
- "operation": "Get Web Apps Instances Extensions Log",
- "description": "Get Web Apps Instances Extensions Log."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/customapis/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Custom APIs",
- "operation": "Update Custom APIs",
- "description": "Update Custom APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/customapis/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Custom APIs",
- "operation": "Get Custom APIs",
- "description": "Get Custom APIs."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/failedrequestsperuri/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Failed Requests Per Uri",
- "operation": "Get Web Apps Diagnostics Failed Requests Per Uri",
- "description": "Get Web Apps Diagnostics Failed Requests Per Uri."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/restore/write",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots",
- "operation": "Restore Web Apps Slots",
- "description": "Restore Web Apps Slots."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/detectors/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Detector",
- "operation": "Get Web Apps Diagnostics Detector",
- "description": "Get Web Apps Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/analyses/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Analysis",
- "operation": "Get Web Apps Diagnostics Analysis",
- "description": "Get Web Apps Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/analyses/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Analysis",
- "operation": "Get Web Apps Slots Diagnostics Analysis",
- "description": "Get Web Apps Slots Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/detectors/read",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Detector",
- "operation": "Get Web Apps Slots Diagnostics Detector",
- "description": "Get Web Apps Slots Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/analyses/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Analysis",
- "operation": "Run Web Apps Diagnostics Analysis",
- "description": "Run Web Apps Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/diagnostics/detectors/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Diagnostics Detector",
- "operation": "Run Web Apps Diagnostics Detector",
- "description": "Run Web Apps Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/analyses/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Analysis",
- "operation": "Run Web Apps Slots Diagnostics Analysis",
- "description": "Run Web Apps Slots Diagnostics Analysis."
- },
- "origin": "user,system"
- },
- {
- "name": "microsoft.web/sites/slots/diagnostics/detectors/execute/Action",
- "display": {
- "provider": "Microsoft Web Apps",
- "resource": "Web Apps Slots Diagnostics Detector",
- "operation": "Run Web Apps Slots Diagnostics Detector",
- "description": "Run Web Apps Slots Diagnostics Detector."
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.Web/serverfarms/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of App Service Plan",
- "operation": "Read App Service Plan metric definitions",
- "description": "Gets the available metrics for App Service Plan"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "CpuPercentage",
- "displayName": "CPU Percentage",
- "displayDescription": "CPU Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryPercentage",
- "displayName": "Memory Percentage",
- "displayDescription": "Memory Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "DiskQueueLength",
- "displayName": "Disk Queue Length",
- "displayDescription": "Disk Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "HttpQueueLength",
- "displayName": "Http Queue Length",
- "displayDescription": "Http Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/sites/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of Web App",
- "operation": "Read Web App metric definitions",
- "description": "Gets the available metrics for Web App"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "CpuTime",
- "displayName": "CPU Time",
- "displayDescription": "CPU Time",
- "unit": "Seconds",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Requests",
- "displayName": "Requests",
- "displayDescription": "Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http101",
- "displayName": "Http 101",
- "displayDescription": "Http 101",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http2xx",
- "displayName": "Http 2xx",
- "displayDescription": "Http 2xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http3xx",
- "displayName": "Http 3xx",
- "displayDescription": "Http 3xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http401",
- "displayName": "Http 401",
- "displayDescription": "Http 401",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http403",
- "displayName": "Http 403",
- "displayDescription": "Http 403",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http404",
- "displayName": "Http 404",
- "displayDescription": "Http 404",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http406",
- "displayName": "Http 406",
- "displayDescription": "Http 406",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http4xx",
- "displayName": "Http 4xx",
- "displayDescription": "Http 4xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http5xx",
- "displayName": "Http Server Errors",
- "displayDescription": "Http Server Errors",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryWorkingSet",
- "displayName": "Memory working set",
- "displayDescription": "Memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageMemoryWorkingSet",
- "displayName": "Average memory working set",
- "displayDescription": "Average memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageResponseTime",
- "displayName": "Average Response Time",
- "displayDescription": "Average Response Time",
- "unit": "Seconds",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionUnits",
- "displayName": "Function Execution Units",
- "displayDescription": "Function Execution Units",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionCount",
- "displayName": "Function Execution Count",
- "displayDescription": "Function Execution Count",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/sites/slots/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of Web App Slot",
- "operation": "Read Web App Slot metric definitions",
- "description": "Gets the available metrics for Web App Slot"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "CpuTime",
- "displayName": "CPU Time",
- "displayDescription": "CPU Time",
- "unit": "Seconds",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Requests",
- "displayName": "Requests",
- "displayDescription": "Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http101",
- "displayName": "Http 101",
- "displayDescription": "Http 101",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http2xx",
- "displayName": "Http 2xx",
- "displayDescription": "Http 2xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http3xx",
- "displayName": "Http 3xx",
- "displayDescription": "Http 3xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http401",
- "displayName": "Http 401",
- "displayDescription": "Http 401",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http403",
- "displayName": "Http 403",
- "displayDescription": "Http 403",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http404",
- "displayName": "Http 404",
- "displayDescription": "Http 404",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http406",
- "displayName": "Http 406",
- "displayDescription": "Http 406",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http4xx",
- "displayName": "Http 4xx",
- "displayDescription": "Http 4xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http5xx",
- "displayName": "Http Server Errors",
- "displayDescription": "Http Server Errors",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryWorkingSet",
- "displayName": "Memory working set",
- "displayDescription": "Memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageMemoryWorkingSet",
- "displayName": "Average memory working set",
- "displayDescription": "Average memory working set",
- "unit": "Bytes",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageResponseTime",
- "displayName": "Average Response Time",
- "displayDescription": "Average Response Time",
- "unit": "Seconds",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "^(?!functionapp).*$",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionUnits",
- "displayName": "Function Execution Units",
- "displayDescription": "Function Execution Units",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "FunctionExecutionCount",
- "displayName": "Function Execution Count",
- "displayDescription": "Function Execution Count",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "metricFilterPattern": "(?i:functionapp)",
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/multiRolePools/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of App Service Environment MultiRole",
- "operation": "Read App Service Environment MultiRole metric definitions",
- "description": "Gets the available metrics for App Service Environment MultiRole"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "Requests",
- "displayName": "Requests",
- "displayDescription": "Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesReceived",
- "displayName": "Data In",
- "displayDescription": "Data In",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "BytesSent",
- "displayName": "Data Out",
- "displayDescription": "Data Out",
- "unit": "Bytes",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http101",
- "displayName": "Http 101",
- "displayDescription": "Http 101",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http2xx",
- "displayName": "Http 2xx",
- "displayDescription": "Http 2xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http3xx",
- "displayName": "Http 3xx",
- "displayDescription": "Http 3xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http401",
- "displayName": "Http 401",
- "displayDescription": "Http 401",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http403",
- "displayName": "Http 403",
- "displayDescription": "Http 403",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http404",
- "displayName": "Http 404",
- "displayDescription": "Http 404",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http406",
- "displayName": "Http 406",
- "displayDescription": "Http 406",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http4xx",
- "displayName": "Http 4xx",
- "displayDescription": "Http 4xx",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "Http5xx",
- "displayName": "Http Server Errors",
- "displayDescription": "Http Server Errors",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "AverageResponseTime",
- "displayName": "Average Response Time",
- "displayDescription": "Average Response Time",
- "unit": "Seconds",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "CpuPercentage",
- "displayName": "CPU Percentage",
- "displayDescription": "CPU Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MemoryPercentage",
- "displayName": "Memory Percentage",
- "displayDescription": "Memory Percentage",
- "unit": "Percent",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "DiskQueueLength",
- "displayName": "Disk Queue Length",
- "displayDescription": "Disk Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "HttpQueueLength",
- "displayName": "Http Queue Length",
- "displayDescription": "Http Queue Length",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "ActiveRequests",
- "displayName": "Active Requests",
- "displayDescription": "Active Requests",
- "unit": "Count",
- "aggregationType": "Total",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "dimensions": [
- {
- "name": "Instance",
- "displayName": "Instance",
- "internalName": "ServerName",
- "toBeExportedForShoebox": true
- }
- ],
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "TotalFrontEnds",
- "displayName": "Total Front Ends",
- "displayDescription": "Total Front Ends",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "SmallAppServicePlanInstances",
- "displayName": "Small App Service Plan Workers",
- "displayDescription": "Small App Service Plan Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "MediumAppServicePlanInstances",
- "displayName": "Medium App Service Plan Workers",
- "displayDescription": "Medium App Service Plan Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "LargeAppServicePlanInstances",
- "displayName": "Large App Service Plan Workers",
- "displayDescription": "Large App Service Plan Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
- },
- {
- "name": "Microsoft.Web/hostingEnvironments/workerPools/providers/Microsoft.Insights/metricDefinitions/Read",
- "display": {
- "provider": "Microsoft.Web",
- "resource": "The metric definition of App Service Environment WorkerPool",
- "operation": "Read App Service Environment WorkerPool metric definitions",
- "description": "Gets the available metrics for App Service Environment WorkerPool"
- },
- "origin": "system",
- "properties": {
- "serviceSpecification": {
- "metricSpecifications": [
- {
- "name": "WorkersTotal",
- "displayName": "Total Workers",
- "displayDescription": "Total Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "WorkersAvailable",
- "displayName": "Available Workers",
- "displayDescription": "Available Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- },
- {
- "name": "WorkersUsed",
- "displayName": "Used Workers",
- "displayDescription": "Used Workers",
- "unit": "Count",
- "aggregationType": "Average",
- "supportsInstanceLevelAggregation": false,
- "enableRegionalMdmAccount": false,
- "fillGapWithZero": true,
- "isInternal": false,
- "availabilities": [
- {
- "timeGrain": "PT1M",
- "blobDuration": "P2D"
- },
- {
- "timeGrain": "PT1H",
- "blobDuration": "P30D"
- },
- {
- "timeGrain": "P1D",
- "blobDuration": "P90D"
- }
- ]
- }
- ]
- }
- }
+ "parameters": {
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "name": "Microsoft.Web/sites/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App",
+ "description": "Get the properties of a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Create or Update Web App",
+ "description": "Create a new Web App or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Create or Update Web App Slot",
+ "description": "Create a new Web App Slot or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Delete Web App",
+ "description": "Delete an existing Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Delete Web App Slot",
+ "description": "Delete an existing Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/config/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slot Configuration",
+ "description": "Get Web App Slot's configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/config/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Configuration",
+ "description": "Get Web App configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/config/list/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "List Web App Security Sensitive Settings",
+ "description": "List Web App's security sensitive settings, such as publishing credentials, app settings and connection strings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/config/list/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "List Web App Slot Security Sensitive Settings",
+ "description": "List Web App Slot's security sensitive settings, such as publishing credentials, app settings and connection strings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/config/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Update Web App Configuration",
+ "description": "Update Web App's configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/config/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Update Web App Slot Configuration",
+ "description": "Update Web App Slot's configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/sourcecontrols/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Source Control Configuration",
+ "description": "Get Web App's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/sourcecontrols/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slot Source Control Configuration",
+ "description": "Get Web App Slot's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/sourcecontrols/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Update Web App Source Control Configuration",
+ "description": "Update Web App's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/sourcecontrols/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Update Web App Slot Source Control Configuration",
+ "description": "Update Web App Slot's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/sourcecontrols/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Delete Web App Source Control Configuration",
+ "description": "Delete Web App's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/sourcecontrols/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Delete Web App Slot Source Control Configuration",
+ "description": "Delete Web App Slot's source control configuration settings"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/backup/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Create Web App Backup",
+ "description": "Create a new web app backup"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/backup/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Create Web App Slot Backup",
+ "description": "Create new Web App Slot backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/backups/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Backup",
+ "description": "Get the properties of a web app's backup"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/backups/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "List Web App Slot Backups",
+ "description": "Get the properties of a web app slots' backup"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/publishxml/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Publishing Profile",
+ "description": "Get publishing profile xml for a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/publishxml/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slot Publishing Profile",
+ "description": "Get publishing profile xml for Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/publish/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Publish Web App",
+ "description": "Publish a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/publish/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Publish Web App Slot",
+ "description": "Publish a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/restart/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Restart Web App",
+ "description": "Restart a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/restart/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Restart Web App Slot",
+ "description": "Restart a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/start/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Start Web App",
+ "description": "Start a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/start/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Start Web App Slot",
+ "description": "Start a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/stop/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Stop Web App",
+ "description": "Stop a Web App"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/stop/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Stop Web App Slot",
+ "description": "Stop a Web App Slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slotsswap/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Swap Web App Slots",
+ "description": "Swap Web App deployment slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/slotsswap/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Swap Web App Slots",
+ "description": "Swap Web App deployment slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slotsdiffs/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Get Web App Slots Differences",
+ "description": "Get differences in configuration between web app and slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/slotsdiffs/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Slots Differences",
+ "description": "Get differences in configuration between web app and slots"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/applySlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Apply Web App Configuration",
+ "description": "Apply web app slot configuration from target slot to the current web app"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/applySlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Apply Web App Slot Configuration",
+ "description": "Apply web app slot configuration from target slot to the current slot."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/resetSlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App",
+ "operation": "Reset Web App Configuration",
+ "description": "Reset web app configuration"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/resetSlotConfig/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Reset Web App Slot Configuration",
+ "description": "Reset web app slot configuration"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web App Slot",
+ "operation": "Get Web App Deployment Slot",
+ "description": "Get the properties of a Web App deployment slot"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Get App Service Plan",
+ "description": "Get the properties on an App Service Plan"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Create or Update App Service Plan",
+ "description": "Create a new App Service Plan or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Delete App Service Plan",
+ "description": "Delete an existing App Service Plan"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/restartSites/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plan",
+ "operation": "Restart Web Apps",
+ "description": "Restart all Web Apps in an App Service Plan"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/certificates/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Certificate",
+ "operation": "Get Certificates",
+ "description": "Get the list of certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/certificates/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Certificate",
+ "operation": "Add or Update Certificate",
+ "description": "Add a new certificate or update an existing one."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/certificates/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Certificate",
+ "operation": "Delete Certificate",
+ "description": "Delete an existing certificate."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/geoRegions/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Geo Region",
+ "operation": "Get Geo Regions",
+ "description": "Get the list of Geo regions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/listSitesAssignedToHostName/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Site Name",
+ "operation": "Get sites assigned to hostname",
+ "description": "Get names of sites assigned to hostname."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Get App Service Environment",
+ "description": "Get the properties of an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Create or Update App Service Environment",
+ "description": "Create a new App Service Environment or update existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Delete App Service Environment",
+ "description": "Delete an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/reboot/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment",
+ "operation": "Reboot an App Service Environment",
+ "description": "Reboot all machines in an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment FrontEnd Pool",
+ "operation": "Get FrontEnd Pool",
+ "description": "Get the properties of a FrontEnd Pool in an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment FrontEnd Pool",
+ "operation": "Create or Update FrontEnd Pool",
+ "description": "Create a new FrontEnd Pool in an App Service Environment or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/workerPools/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment Worker Pool",
+ "operation": "Get Worker Pool",
+ "description": "Get the properties of a Worker Pool in an App Service Environment"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/workerPools/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Environment Worker Pool",
+ "operation": "Create or Update Worker Pool",
+ "description": "Create a new Worker Pool in an App Service Environment or update an existing one"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Get Connections",
+ "description": "Get the list of Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Add or Update Connection",
+ "description": "Creates or updates a Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Delete Connection",
+ "description": "Deletes a Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connections/Join/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Join Connection",
+ "description": "Joins a Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Get Connection Gateways",
+ "description": "Get the list of Connection Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Add or Update Connection Gateways",
+ "description": "Creates or updates a Connection Gateway."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Delete Connection Gateway",
+ "description": "Deletes a Connection Gateway."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/connectionGateways/Join/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "Join Connection Gateway",
+ "description": "Joins a Connection Gateway."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/recommendations/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Recommendation",
+ "operation": "Get recommendations",
+ "description": "Get the list of recommendations for subscriptions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/sites/recommendations/Read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Recommendation",
+ "operation": "Get recommendations for web app",
+ "description": "Get the list of recommendations for web app."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/availablestacks/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Available Stacks",
+ "operation": "Get Available Stacks",
+ "description": "Get Available Stacks."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/checknameavailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Check Name Availability",
+ "operation": "Get Check Name Availability",
+ "description": "Check if resource name is available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/classicmobileservices/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Classic Mobile Services",
+ "operation": "Get Classic Mobile Services",
+ "description": "Get Classic Mobile Services."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/connections/confirmconsentcode/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "Confirm Connections Consent Code",
+ "description": "Confirm Connections Consent Code."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/connections/listconsentlinks/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connections",
+ "operation": "List Consent Links for Connections",
+ "description": "List Consent Links for Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/deploymentlocations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Deployment Locations",
+ "operation": "Get Deployment Locations",
+ "description": "Get Deployment Locations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/capacities/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Capacities",
+ "operation": "Get Hosting Environments Capacities",
+ "description": "Get Hosting Environments Capacities."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/diagnostics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Diagnostics",
+ "operation": "Get Hosting Environments Diagnostics",
+ "description": "Get Hosting Environments Diagnostics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Metric Definitions",
+ "operation": "Get Hosting Environments Metric Definitions",
+ "description": "Get Hosting Environments Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools Metric Definitions",
+ "operation": "Get Hosting Environments MultiRole Pools Metric Definitions",
+ "description": "Get Hosting Environments MultiRole Pools Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools Metrics",
+ "operation": "Get Hosting Environments MultiRole Pools Metrics",
+ "description": "Get Hosting Environments MultiRole Pools Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools SKUs",
+ "operation": "Get Hosting Environments MultiRole Pools SKUs",
+ "description": "Get Hosting Environments MultiRole Pools SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/multirolepools/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments MultiRole Pools Usages",
+ "operation": "Get Hosting Environments MultiRole Pools Usages",
+ "description": "Get Hosting Environments MultiRole Pools Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Operations",
+ "operation": "Get Hosting Environments Operations",
+ "description": "Get Hosting Environments Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/resume/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments",
+ "operation": "Resume Hosting Environments",
+ "description": "Resume Hosting Environments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/serverfarms/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments App Service Plans",
+ "operation": "Get Hosting Environments App Service Plans",
+ "description": "Get Hosting Environments App Service Plans."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/sites/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Web Apps",
+ "operation": "Get Hosting Environments Web Apps",
+ "description": "Get Hosting Environments Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/suspend/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments",
+ "operation": "Suspend Hosting Environments",
+ "description": "Suspend Hosting Environments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Usages",
+ "operation": "Get Hosting Environments Usages",
+ "description": "Get Hosting Environments Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools Metric Definitions",
+ "operation": "Get Hosting Environments Workerpools Metric Definitions",
+ "description": "Get Hosting Environments Workerpools Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools Metrics",
+ "operation": "Get Hosting Environments Workerpools Metrics",
+ "description": "Get Hosting Environments Workerpools Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools SKUs",
+ "operation": "Get Hosting Environments Workerpools SKUs",
+ "description": "Get Hosting Environments Workerpools SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/workerpools/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environments Workerpools Usages",
+ "operation": "Get Hosting Environments Workerpools Usages",
+ "description": "Get Hosting Environments Workerpools Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/ishostingenvironmentnameavailable/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hosting Environment Name",
+ "operation": "Check if Hosting Environment Name is available",
+ "description": "Get if Hosting Environment Name is available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/ishostnameavailable/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Hostname",
+ "operation": "Check if Hostname is Available",
+ "description": "Check if Hostname is Available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/isusernameavailable/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Username",
+ "operation": "Check if Username is available",
+ "description": "Check if Username is available."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/locations/apioperations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Locations API Operations",
+ "operation": "Get Locations API Operations",
+ "description": "Get Locations API Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/locations/connectiongatewayinstallations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Locations Connection Gateway Installations",
+ "operation": "Get Locations Connection Gateway Installations",
+ "description": "Get Locations Connection Gateway Installations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/locations/managedapis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Locations Managed APIs",
+ "operation": "Get Locations Managed APIs",
+ "description": "Get Locations Managed APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Operations",
+ "operation": "Get Operations",
+ "description": "Get Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/publishingusers/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Publishing Users",
+ "operation": "Get Publishing Users",
+ "description": "Get Publishing Users."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/publishingusers/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Publishing Users",
+ "operation": "Update Publishing Users",
+ "description": "Update Publishing Users."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/capabilities/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Capabilities",
+ "operation": "Get App Service Plans Capabilities",
+ "description": "Get App Service Plans Capabilities."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/firstpartyapps/settings/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans First Party Apps Settings",
+ "operation": "Delete App Service Plans First Party Apps Settings",
+ "description": "Delete App Service Plans First Party Apps Settings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/firstpartyapps/settings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans First Party Apps Settings",
+ "operation": "Get App Service Plans First Party Apps Settings",
+ "description": "Get App Service Plans First Party Apps Settings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/firstpartyapps/settings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans First Party Apps Settings",
+ "operation": "Update App Service Plans First Party Apps Settings",
+ "description": "Update App Service Plans First Party Apps Settings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/sites/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Namespaces Relays Web Apps",
+ "operation": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps",
+ "description": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionplanlimits/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Plan Limits",
+ "operation": "Get App Service Plans Hybrid Connection Plan Limits",
+ "description": "Get App Service Plans Hybrid Connection Plan Limits."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionrelays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Relays",
+ "operation": "Get App Service Plans Hybrid Connection Relays",
+ "description": "Get App Service Plans Hybrid Connection Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Metric Definitions",
+ "operation": "Get App Service Plans Metric Definitions",
+ "description": "Get App Service Plans Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Metrics",
+ "operation": "Get App Service Plans Metrics",
+ "description": "Get App Service Plans Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/operationresults/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Operation Results",
+ "operation": "Get App Service Plans Operation Results",
+ "description": "Get App Service Plans Operation Results."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/sites/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Web Apps",
+ "operation": "Get App Service Plans Web Apps",
+ "description": "Get App Service Plans Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans SKUs",
+ "operation": "Get App Service Plans SKUs",
+ "description": "Get App Service Plans SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Usages",
+ "operation": "Get App Service Plans Usages",
+ "description": "Get App Service Plans Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/gateways/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Gateways",
+ "operation": "Update App Service Plans Virtual Network Connections Gateways",
+ "description": "Update App Service Plans Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections",
+ "operation": "Get App Service Plans Virtual Network Connections",
+ "description": "Get App Service Plans Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Routes",
+ "operation": "Delete App Service Plans Virtual Network Connections Routes",
+ "description": "Delete App Service Plans Virtual Network Connections Routes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Routes",
+ "operation": "Get App Service Plans Virtual Network Connections Routes",
+ "description": "Get App Service Plans Virtual Network Connections Routes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Virtual Network Connections Routes",
+ "operation": "Update App Service Plans Virtual Network Connections Routes",
+ "description": "Update App Service Plans Virtual Network Connections Routes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/workers/reboot/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Workers",
+ "operation": "Reboot App Service Plans Workers",
+ "description": "Reboot App Service Plans Workers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/analyzecustomhostname/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Custom Hostname",
+ "operation": "Analyze Custom Hostname",
+ "description": "Analyze Custom Hostname."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backup/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backup",
+ "operation": "Get Web Apps Backup",
+ "description": "Get Web Apps Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backup/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backup",
+ "operation": "Update Web Apps Backup",
+ "description": "Update Web Apps Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backups/list/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backups",
+ "operation": "List Web Apps Backups",
+ "description": "List Web Apps Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backups/restore/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backups",
+ "operation": "Restore Web Apps Backups",
+ "description": "Restore Web Apps Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/config/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Config",
+ "operation": "Delete Web Apps Config",
+ "description": "Delete Web Apps Config."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Delete Web Apps Continuous Web Jobs",
+ "description": "Delete Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Get Web Apps Continuous Web Jobs",
+ "description": "Get Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/start/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Start Web Apps Continuous Web Jobs",
+ "description": "Start Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/continuouswebjobs/stop/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Continuous Web Jobs",
+ "operation": "Stop Web Apps Continuous Web Jobs",
+ "description": "Stop Web Apps Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments",
+ "operation": "Delete Web Apps Deployments",
+ "description": "Delete Web Apps Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/log/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments Log",
+ "operation": "Get Web Apps Deployments Log",
+ "description": "Get Web Apps Deployments Log."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments",
+ "operation": "Get Web Apps Deployments",
+ "description": "Get Web Apps Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/deployments/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Deployments",
+ "operation": "Update Web Apps Deployments",
+ "description": "Update Web Apps Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/frebanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics FREB Analysis",
+ "operation": "Get Web Apps Diagnostics FREB Analysis",
+ "description": "Get Web Apps Diagnostics FREB Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/frebanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics FREB Analysis",
+ "operation": "Get Web Apps Slots Diagnostics FREB Analysis",
+ "description": "Get Web Apps Slots Diagnostics FREB Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Category",
+ "operation": "Get Web Apps Diagnostics Category",
+ "description": "Get Web Apps Diagnostics Categories."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/runtimeavailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Runtime Availability",
+ "operation": "Get Web Apps Diagnostics Runtime Availability",
+ "description": "Get Web Apps Diagnostics Runtime Availability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/servicehealth/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Service Health",
+ "operation": "Get Web Apps Diagnostics Service Health",
+ "description": "Get Web Apps Diagnostics Service Health."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/workeravailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Workeravailability",
+ "operation": "Get Web Apps Diagnostics Workeravailability",
+ "description": "Get Web Apps Diagnostics Workeravailability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/workeravailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Workeravailability",
+ "operation": "Get Web Apps Slots Diagnostics Workeravailability",
+ "description": "Get Web Apps Slots Diagnostics Workeravailability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/workerprocessrecycle/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Worker Process Recycle",
+ "operation": "Get Web Apps Diagnostics Worker Process Recycle",
+ "description": "Get Web Apps Diagnostics Worker Process Recycle."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/workerprocessrecycle/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Worker Process Recycle",
+ "operation": "Get Web Apps Slots Diagnostics Worker Process Recycle",
+ "description": "Get Web Apps Slots Diagnostics Worker Process Recycle."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/aspnetcore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics ASP.NET Core",
+ "operation": "Get Web Apps Diagnostics ASP.NET Core",
+ "description": "Get Web Apps Diagnostics for ASP.NET Core app."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/aspnetcore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics ASP.NET Core",
+ "operation": "Get Web Apps Slots Diagnostics ASP.NET Core",
+ "description": "Get Web Apps Slots Diagnostics for ASP.NET Core app."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/domainownershipidentifiers/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Domain Ownership Identifiers",
+ "operation": "Get Web Apps Domain Ownership Identifiers",
+ "description": "Get Web Apps Domain Ownership Identifiers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/domainownershipidentifiers/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Domain Ownership Identifiers",
+ "operation": "Update Web Apps Domain Ownership Identifiers",
+ "description": "Update Web Apps Domain Ownership Identifiers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Functions Web Apps",
+ "description": "Functions Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "Delete Web Apps Functions",
+ "description": "Delete Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/listsecrets/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "List Secrets Web Apps Functions",
+ "description": "List Secrets Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "Get Web Apps Functions",
+ "description": "Get Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions",
+ "operation": "Update Web Apps Functions",
+ "description": "Update Web Apps Functions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hostnamebindings/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hostname Bindings",
+ "operation": "Delete Web Apps Hostname Bindings",
+ "description": "Delete Web Apps Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hostnamebindings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hostname Bindings",
+ "operation": "Get Web Apps Hostname Bindings",
+ "description": "Get Web Apps Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hostnamebindings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hostname Bindings",
+ "operation": "Update Web Apps Hostname Bindings",
+ "description": "Update Web Apps Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnection/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection",
+ "operation": "Delete Web Apps Hybrid Connection",
+ "description": "Delete Web Apps Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnection/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection",
+ "operation": "Get Web Apps Hybrid Connection",
+ "description": "Get Web Apps Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnection/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection",
+ "operation": "Update Web Apps Hybrid Connection",
+ "description": "Update Web Apps Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionrelays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Relays",
+ "operation": "Get Web Apps Hybrid Connection Relays",
+ "description": "Get Web Apps Hybrid Connection Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Deployments",
+ "operation": "Get Web Apps Instances Deployments",
+ "description": "Get Web Apps Instances Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/processes/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Processes",
+ "operation": "Delete Web Apps Instances Processes",
+ "description": "Delete Web Apps Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/processes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Processes",
+ "operation": "Get Web Apps Instances Processes",
+ "description": "Get Web Apps Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances",
+ "operation": "Get Web Apps Instances",
+ "description": "Get Web Apps Instances."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/listsyncfunctiontriggerstatus/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "List Sync Function Trigger Status Web Apps",
+ "description": "List Sync Function Trigger Status Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Metric Definitions",
+ "operation": "Get Web Apps Metric Definitions",
+ "description": "Get Web Apps Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Metrics",
+ "operation": "Get Web Apps Metrics",
+ "description": "Get Web Apps Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/networktrace/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Network Trace Web Apps",
+ "description": "Network Trace Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/newpassword/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Newpassword Web Apps",
+ "description": "Newpassword Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/operationresults/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Operation Results",
+ "operation": "Get Web Apps Operation Results",
+ "description": "Get Web Apps Operation Results."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/perfcounters/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Performance Counters",
+ "operation": "Get Web Apps Performance Counters",
+ "description": "Get Web Apps Performance Counters."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/premieraddons/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Premier Addons",
+ "operation": "Delete Web Apps Premier Addons",
+ "description": "Delete Web Apps Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/premieraddons/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Premier Addons",
+ "operation": "Get Web Apps Premier Addons",
+ "description": "Get Web Apps Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/premieraddons/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Premier Addons",
+ "operation": "Update Web Apps Premier Addons",
+ "description": "Update Web Apps Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publishxml/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Publishing XML",
+ "operation": "Get Web Apps Publishing XML",
+ "description": "Get Web Apps Publishing XML."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/recommendationhistory/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Recommendation History",
+ "operation": "Get Web Apps Recommendation History",
+ "description": "Get Web Apps Recommendation History."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/recommendations/disable/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Recommendations",
+ "operation": "Disable Web Apps Recommendations",
+ "description": "Disable Web Apps Recommendations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/restore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Restore",
+ "operation": "Get Web Apps Restore",
+ "description": "Get Web Apps Restore."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/analyzecustomhostname/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Analyze Custom Hostname",
+ "operation": "Get Web Apps Slots Analyze Custom Hostname",
+ "description": "Get Web Apps Slots Analyze Custom Hostname."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backup/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backup",
+ "operation": "Update Web Apps Slots Backup",
+ "description": "Update Web Apps Slots Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backups/list/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backups",
+ "operation": "List Web Apps Slots Backups",
+ "description": "List Web Apps Slots Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backups/restore/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backups",
+ "operation": "Restore Web Apps Slots Backups",
+ "description": "Restore Web Apps Slots Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/config/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Config",
+ "operation": "Delete Web Apps Slots Config",
+ "description": "Delete Web Apps Slots Config."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Delete Web Apps Slots Continuous Web Jobs",
+ "description": "Delete Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Get Web Apps Slots Continuous Web Jobs",
+ "description": "Get Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/start/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Start Web Apps Slots Continuous Web Jobs",
+ "description": "Start Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/continuouswebjobs/stop/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Continuous Web Jobs",
+ "operation": "Stop Web Apps Slots Continuous Web Jobs",
+ "description": "Stop Web Apps Slots Continuous Web Jobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments",
+ "operation": "Delete Web Apps Slots Deployments",
+ "description": "Delete Web Apps Slots Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/log/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments Log",
+ "operation": "Get Web Apps Slots Deployments Log",
+ "description": "Get Web Apps Slots Deployments Log."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments",
+ "operation": "Get Web Apps Slots Deployments",
+ "description": "Get Web Apps Slots Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/deployments/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Deployments",
+ "operation": "Update Web Apps Slots Deployments",
+ "description": "Update Web Apps Slots Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hostnamebindings/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hostname Bindings",
+ "operation": "Delete Web Apps Slots Hostname Bindings",
+ "description": "Delete Web Apps Slots Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hostnamebindings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hostname Bindings",
+ "operation": "Get Web Apps Slots Hostname Bindings",
+ "description": "Get Web Apps Slots Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hostnamebindings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hostname Bindings",
+ "operation": "Update Web Apps Slots Hostname Bindings",
+ "description": "Update Web Apps Slots Hostname Bindings."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnection/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection",
+ "operation": "Delete Web Apps Slots Hybrid Connection",
+ "description": "Delete Web Apps Slots Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnection/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection",
+ "operation": "Get Web Apps Slots Hybrid Connection",
+ "description": "Get Web Apps Slots Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnection/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection",
+ "operation": "Update Web Apps Slots Hybrid Connection",
+ "description": "Update Web Apps Slots Hybrid Connection."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances Deployments",
+ "operation": "Get Web Apps Slots Instances Deployments",
+ "description": "Get Web Apps Slots Instances Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/processes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances Processes",
+ "operation": "Get Web Apps Slots Instances Processes",
+ "description": "Get Web Apps Slots Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances",
+ "operation": "Get Web Apps Slots Instances",
+ "description": "Get Web Apps Slots Instances."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/metricdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Metric Definitions",
+ "operation": "Get Web Apps Slots Metric Definitions",
+ "description": "Get Web Apps Slots Metric Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/metrics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Metrics",
+ "operation": "Get Web Apps Slots Metrics",
+ "description": "Get Web Apps Slots Metrics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/newpassword/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Newpassword Web Apps Slots",
+ "description": "Newpassword Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/operationresults/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Operation Results",
+ "operation": "Get Web Apps Slots Operation Results",
+ "description": "Get Web Apps Slots Operation Results."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/phplogging/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Phplogging",
+ "operation": "Get Web Apps Slots Phplogging",
+ "description": "Get Web Apps Slots Phplogging."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/premieraddons/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Premier Addons",
+ "operation": "Delete Web Apps Slots Premier Addons",
+ "description": "Delete Web Apps Slots Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/premieraddons/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Premier Addons",
+ "operation": "Get Web Apps Slots Premier Addons",
+ "description": "Get Web Apps Slots Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/premieraddons/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Premier Addons",
+ "operation": "Update Web Apps Slots Premier Addons",
+ "description": "Update Web Apps Slots Premier Addons."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/restore/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Restore",
+ "operation": "Get Web Apps Slots Restore",
+ "description": "Get Web Apps Slots Restore."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/sync/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Sync Web Apps Slots",
+ "description": "Sync Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/triggeredwebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Triggered WebJobs",
+ "operation": "Delete Web Apps Slots Triggered WebJobs",
+ "description": "Delete Web Apps Slots Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/triggeredwebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Triggered WebJobs",
+ "operation": "Get Web Apps Slots Triggered WebJobs",
+ "description": "Get Web Apps Slots Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/triggeredwebjobs/run/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Triggered WebJobs",
+ "operation": "Run Web Apps Slots Triggered WebJobs",
+ "description": "Run Web Apps Slots Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Usages",
+ "operation": "Get Web Apps Slots Usages",
+ "description": "Get Web Apps Slots Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections",
+ "operation": "Delete Web Apps Slots Virtual Network Connections",
+ "description": "Delete Web Apps Slots Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/gateways/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections Gateways",
+ "operation": "Update Web Apps Slots Virtual Network Connections Gateways",
+ "description": "Update Web Apps Slots Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections",
+ "operation": "Get Web Apps Slots Virtual Network Connections",
+ "description": "Get Web Apps Slots Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/virtualnetworkconnections/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Virtual Network Connections",
+ "operation": "Update Web Apps Slots Virtual Network Connections",
+ "description": "Update Web Apps Slots Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/webjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots WebJobs",
+ "operation": "Get Web Apps Slots WebJobs",
+ "description": "Get Web Apps Slots WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/snapshots/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Snapshots",
+ "operation": "Get Web Apps Snapshots",
+ "description": "Get Web Apps Snapshots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/sync/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Sync Web Apps",
+ "description": "Sync Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs",
+ "operation": "Delete Web Apps Triggered WebJobs",
+ "description": "Delete Web Apps Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs",
+ "operation": "Get Web Apps Triggered WebJobs",
+ "description": "Get Web Apps Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/run/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs",
+ "operation": "Run Web Apps Triggered WebJobs",
+ "description": "Run Web Apps Triggered WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/usages/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Usages",
+ "operation": "Get Web Apps Usages",
+ "description": "Get Web Apps Usages."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections",
+ "operation": "Delete Web Apps Virtual Network Connections",
+ "description": "Delete Web Apps Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/gateways/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections Gateways",
+ "operation": "Get Web Apps Virtual Network Connections Gateways",
+ "description": "Get Web Apps Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/gateways/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections Gateways",
+ "operation": "Update Web Apps Virtual Network Connections Gateways",
+ "description": "Update Web Apps Virtual Network Connections Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections",
+ "operation": "Get Web Apps Virtual Network Connections",
+ "description": "Get Web Apps Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/virtualnetworkconnections/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Virtual Network Connections",
+ "operation": "Update Web Apps Virtual Network Connections",
+ "description": "Update Web Apps Virtual Network Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/webjobs/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps WebJobs",
+ "operation": "Get Web Apps WebJobs",
+ "description": "Get Web Apps WebJobs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/skus/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "SKUs",
+ "operation": "Get SKUs",
+ "description": "Get SKUs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sourcecontrols/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Source Controls",
+ "operation": "Get Source Controls",
+ "description": "Get Source Controls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sourcecontrols/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Source Controls",
+ "operation": "Update Source Controls",
+ "description": "Update Source Controls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/unregister/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Microsoft.Web resource provider",
+ "operation": "Unregister Microsoft.Web resource provider",
+ "description": "Unregister Microsoft.Web resource provider for the subscription."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/validate/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "",
+ "operation": "Validate ",
+ "description": "Validate ."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/register/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Microsoft.Web resource provider",
+ "operation": "Register Microsoft.Web resource provider",
+ "description": "Register Microsoft.Web resource provider for the subscription."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Namespaces Relays",
+ "operation": "Get App Service Plans Hybrid Connection Namespaces Relays",
+ "description": "Get App Service Plans Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/backups/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Backups",
+ "operation": "Delete Web Apps Backups",
+ "description": "Delete Web Apps Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "Delete Web Apps Hybrid Connection Namespaces Relays",
+ "description": "Delete Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/listkeys/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "List Keys Web Apps Hybrid Connection Namespaces Relays",
+ "description": "List Keys Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "Update Web Apps Hybrid Connection Namespaces Relays",
+ "description": "Update Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/metricsdefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Metrics Definitions",
+ "operation": "Get Web Apps Metrics Definitions",
+ "description": "Get Web Apps Metrics Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/migratemysql/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Migrate MySql Web Apps",
+ "description": "Migrate MySql Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/migratemysql/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Migrate MySql",
+ "operation": "Get Web Apps Migrate MySql",
+ "description": "Get Web Apps Migrate MySql."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/recover/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Recover Web Apps",
+ "description": "Recover Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/siteextensions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Site Extensions",
+ "operation": "Delete Web Apps Site Extensions",
+ "description": "Delete Web Apps Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/siteextensions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Site Extensions",
+ "operation": "Get Web Apps Site Extensions",
+ "description": "Get Web Apps Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/siteextensions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Site Extensions",
+ "operation": "Update Web Apps Site Extensions",
+ "description": "Update Web Apps Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backup/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backup",
+ "operation": "Get Web Apps Slots Backup",
+ "description": "Get Web Apps Slots Backup."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnectionrelays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection Relays",
+ "operation": "Get Web Apps Slots Hybrid Connection Relays",
+ "description": "Get Web Apps Slots Hybrid Connection Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/siteextensions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Site Extensions",
+ "operation": "Delete Web Apps Slots Site Extensions",
+ "description": "Delete Web Apps Slots Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/siteextensions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Site Extensions",
+ "operation": "Get Web Apps Slots Site Extensions",
+ "description": "Get Web Apps Slots Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/siteextensions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Site Extensions",
+ "operation": "Update Web Apps Slots Site Extensions",
+ "description": "Update Web Apps Slots Site Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/snapshots/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Snapshots",
+ "operation": "Get Web Apps Slots Snapshots",
+ "description": "Get Web Apps Slots Snapshots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/syncfunctiontriggers/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Sync Function Triggers for Web Apps",
+ "description": "Sync Function Triggers for Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/triggeredwebjobs/history/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Triggered WebJobs History",
+ "operation": "Get Web Apps Triggered WebJobs History",
+ "description": "Get Web Apps Triggered WebJobs History."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/connectiongateways/liststatus/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Connection Gateways",
+ "operation": "List Status Connection Gateways",
+ "description": "List Status Connection Gateways."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "App Service Plans Hybrid Connection Namespaces Relays",
+ "operation": "Delete App Service Plans Hybrid Connection Namespaces Relays",
+ "description": "Delete App Service Plans Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/deployment/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Deployment",
+ "operation": "Get Web Apps Diagnostics Deployment",
+ "description": "Get Web Apps Diagnostics Deployment."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitecpuanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site CPU Analysis",
+ "operation": "Get Web Apps Diagnostics Site CPU Analysis",
+ "description": "Get Web Apps Diagnostics Site CPU Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitelatency/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Latency",
+ "operation": "Get Web Apps Diagnostics Site Latency",
+ "description": "Get Web Apps Diagnostics Site Latency."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitememoryanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Memory Analysis",
+ "operation": "Get Web Apps Diagnostics Site Memory Analysis",
+ "description": "Get Web Apps Diagnostics Site Memory Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/threadcount/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Thread Count",
+ "operation": "Get Web Apps Diagnostics Thread Count",
+ "description": "Get Web Apps Diagnostics Thread Count."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/deployment/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Deployment",
+ "operation": "Get Web Apps Slots Diagnostics Deployment",
+ "description": "Get Web Apps Slots Diagnostics Deployment."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitecpuanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site CPU Analysis",
+ "operation": "Get Web Apps Slots Diagnostics Site CPU Analysis",
+ "description": "Get Web Apps Slots Diagnostics Site CPU Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Latency",
+ "operation": "Get Web Apps Slots Diagnostics Site Latency",
+ "description": "Get Web Apps Slots Diagnostics Site Latency."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitememoryanalysis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Memory Analysis",
+ "operation": "Get Web Apps Slots Diagnostics Site Memory Analysis",
+ "description": "Get Web Apps Slots Diagnostics Site Memory Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/threadcount/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Thread Count",
+ "operation": "Get Web Apps Slots Diagnostics Thread Count",
+ "description": "Get Web Apps Slots Diagnostics Thread Count."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/masterkey/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions Masterkey",
+ "operation": "Get Web Apps Functions Masterkey",
+ "description": "Get Web Apps Functions Masterkey."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Hybrid Connection Namespaces Relays",
+ "operation": "Get Web Apps Hybrid Connection Namespaces Relays",
+ "description": "Get Web Apps Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/extensions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Extensions",
+ "operation": "Get Web Apps Instances Extensions",
+ "description": "Get Web Apps Instances Extensions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Operations",
+ "operation": "Get Web Apps Operations",
+ "description": "Get Web Apps Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/resourcehealthmetadata/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Resource Health Metadata",
+ "operation": "Get Web Apps Resource Health Metadata",
+ "description": "Get Web Apps Resource Health Metadata."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/backups/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Backups",
+ "operation": "Delete Web Apps Slots Backups",
+ "description": "Delete Web Apps Slots Backups."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/domainownershipidentifiers/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Domain Ownership Identifiers",
+ "operation": "Get Web Apps Slots Domain Ownership Identifiers",
+ "description": "Get Web Apps Slots Domain Ownership Identifiers."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
+ "operation": "Delete Web Apps Slots Hybrid Connection Namespaces Relays",
+ "description": "Delete Web Apps Slots Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Hybrid Connection Namespaces Relays",
+ "operation": "Update Web Apps Slots Hybrid Connection Namespaces Relays",
+ "description": "Update Web Apps Slots Hybrid Connection Namespaces Relays."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/operations/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Operations",
+ "operation": "Get Web Apps Slots Operations",
+ "description": "Get Web Apps Slots Operations."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/perfcounters/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Performance Counters",
+ "operation": "Get Web Apps Slots Performance Counters",
+ "description": "Get Web Apps Slots Performance Counters."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/resourcehealthmetadata/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Resource Health Metadata",
+ "operation": "Get Web Apps Slots Resource Health Metadata",
+ "description": "Get Web Apps Slots Resource Health Metadata."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apiacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts Apiacls",
+ "operation": "Get Api Management Accounts Apiacls",
+ "description": "Get Api Management Accounts Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Get Api Management Accounts APIs Connections",
+ "description": "Get Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs",
+ "operation": "Get Api Management Accounts APIs",
+ "description": "Get Api Management Accounts APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/connectionacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts Connectionacls",
+ "operation": "Get Api Management Accounts Connectionacls",
+ "description": "Get Api Management Accounts Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/apiacls/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Apiacls",
+ "operation": "Delete Api Management Accounts APIs Apiacls",
+ "description": "Delete Api Management Accounts APIs Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/apiacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Apiacls",
+ "operation": "Get Api Management Accounts APIs Apiacls",
+ "description": "Get Api Management Accounts APIs Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/apiacls/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Apiacls",
+ "operation": "Update Api Management Accounts APIs Apiacls",
+ "description": "Update Api Management Accounts APIs Apiacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connectionacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connectionacls",
+ "operation": "Get Api Management Accounts APIs Connectionacls",
+ "description": "Get Api Management Accounts APIs Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/confirmconsentcode/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Confirm Consent Code Api Management Accounts APIs Connections",
+ "description": "Confirm Consent Code Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections Connectionacls",
+ "operation": "Delete Api Management Accounts APIs Connections Connectionacls",
+ "description": "Delete Api Management Accounts APIs Connections Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections Connectionacls",
+ "operation": "Get Api Management Accounts APIs Connections Connectionacls",
+ "description": "Get Api Management Accounts APIs Connections Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections Connectionacls",
+ "operation": "Update Api Management Accounts APIs Connections Connectionacls",
+ "description": "Update Api Management Accounts APIs Connections Connectionacls."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Delete Api Management Accounts APIs Connections",
+ "description": "Delete Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/getconsentlinks/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Get Consent Links for Api Management Accounts APIs Connections",
+ "description": "Get Consent Links for Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "Update Api Management Accounts APIs Connections",
+ "description": "Update Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs",
+ "operation": "Delete Api Management Accounts APIs",
+ "description": "Delete Api Management Accounts APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Localized Definitions",
+ "operation": "Delete Api Management Accounts APIs Localized Definitions",
+ "description": "Delete Api Management Accounts APIs Localized Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Localized Definitions",
+ "operation": "Get Api Management Accounts APIs Localized Definitions",
+ "description": "Get Api Management Accounts APIs Localized Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Localized Definitions",
+ "operation": "Update Api Management Accounts APIs Localized Definitions",
+ "description": "Update Api Management Accounts APIs Localized Definitions."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs",
+ "operation": "Update Api Management Accounts APIs",
+ "description": "Update Api Management Accounts APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/listconnectionkeys/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "List Connection Keys Api Management Accounts APIs Connections",
+ "description": "List Connection Keys Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/apimanagementaccounts/apis/connections/listsecrets/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Api Management Accounts APIs Connections",
+ "operation": "List Secrets Api Management Accounts APIs Connections",
+ "description": "List Secrets Api Management Accounts APIs Connections."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Deployments",
+ "operation": "Get Web Apps Diagnostics Deployments",
+ "description": "Get Web Apps Diagnostics Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/deployments/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Deployments",
+ "operation": "Get Web Apps Slots Diagnostics Deployments",
+ "description": "Get Web Apps Slots Diagnostics Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/loganalyzer/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Log Analyzer",
+ "operation": "Get Web Apps Diagnostics Log Analyzer",
+ "description": "Get Web Apps Diagnostics Log Analyzer."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/loganalyzer/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Log Analyzer",
+ "operation": "Get Web Apps Slots Diagnostics Log Analyzer",
+ "description": "Get Web Apps Slots Diagnostics Log Analyzer."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/sitecrashes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Crashes",
+ "operation": "Get Web Apps Diagnostics Site Crashes",
+ "description": "Get Web Apps Diagnostics Site Crashes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitecrashes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Crashes",
+ "operation": "Get Web Apps Slots Diagnostics Site Crashes",
+ "description": "Get Web Apps Slots Diagnostics Site Crashes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/siterestartsettingupdate/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Restart Setting Update",
+ "operation": "Get Web Apps Diagnostics Site Restart Setting Update",
+ "description": "Get Web Apps Diagnostics Site Restart Setting Update."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/siterestartsettingupdate/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Restart Setting Update",
+ "operation": "Get Web Apps Slots Diagnostics Site Restart Setting Update",
+ "description": "Get Web Apps Slots Diagnostics Site Restart Setting Update."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/siterestartuserinitiated/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Restart User Initiated",
+ "operation": "Get Web Apps Diagnostics Site Restart User Initiated",
+ "description": "Get Web Apps Diagnostics Site Restart User Initiated."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/siterestartuserinitiated/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Restart User Initiated",
+ "operation": "Get Web Apps Slots Diagnostics Site Restart User Initiated",
+ "description": "Get Web Apps Slots Diagnostics Site Restart User Initiated."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/siteswap/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Site Swap",
+ "operation": "Get Web Apps Diagnostics Site Swap",
+ "description": "Get Web Apps Diagnostics Site Swap."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/siteswap/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Swap",
+ "operation": "Get Web Apps Slots Diagnostics Site Swap",
+ "description": "Get Web Apps Slots Diagnostics Site Swap."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/functions/token/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Functions Token",
+ "operation": "Get Web Apps Functions Token",
+ "description": "Get Web Apps Functions Token."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/deployments/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Deployments",
+ "operation": "Delete Web Apps Instances Deployments",
+ "description": "Delete Web Apps Instances Deployments."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/processes/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Processes",
+ "operation": "Get Web Apps Processes",
+ "description": "Get Web Apps Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publiccertificates/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Public Certificates",
+ "operation": "Delete Web Apps Public Certificates",
+ "description": "Delete Web Apps Public Certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publiccertificates/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Public Certificates",
+ "operation": "Get Web Apps Public Certificates",
+ "description": "Get Web Apps Public Certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/publiccertificates/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Public Certificates",
+ "operation": "Update Web Apps Public Certificates",
+ "description": "Update Web Apps Public Certificates."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/networktrace/action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Network Trace Web Apps Slots",
+ "description": "Network Trace Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/autoheal/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Autoheal",
+ "operation": "Get Web Apps Diagnostics Autoheal",
+ "description": "Get Web Apps Diagnostics Autoheal."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/autoheal/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Autoheal",
+ "operation": "Get Web Apps Slots Diagnostics Autoheal",
+ "description": "Get Web Apps Slots Diagnostics Autoheal."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics",
+ "operation": "Get Web Apps Slots Diagnostics",
+ "description": "Get Web Apps Slots Diagnostics."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/runtimeavailability/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Runtime Availability",
+ "operation": "Get Web Apps Slots Diagnostics Runtime Availability",
+ "description": "Get Web Apps Slots Diagnostics Runtime Availability."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/servicehealth/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Service Health",
+ "operation": "Get Web Apps Slots Diagnostics Service Health",
+ "description": "Get Web Apps Slots Diagnostics Service Health."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Site Latency",
+ "operation": "Get Web Apps Slots Diagnostics Site Latency",
+ "description": "Get Web Apps Slots Diagnostics Site Latency."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/migratemysql/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Migrate MySql",
+ "operation": "Get Web Apps Slots Migrate MySql",
+ "description": "Get Web Apps Slots Migrate MySql."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App slot",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for Web App slot",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service plan",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service plan",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service Environment",
+ "operation": "Read diagnostic setting",
+ "description": "Gets the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Diagnostic setting for App Service Environment",
+ "operation": "Write diagnostic setting",
+ "description": "Creates or updates the diagnostic setting for the resource"
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/billingmeters/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Billing meters for Microsoft Web Apps",
+ "operation": "Read billing meters",
+ "description": "Get list of billing meters."
+ },
+ "origin": "system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/instances/processes/delete",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Instances Processes",
+ "operation": "Delete Web Apps Slots Instances Processes",
+ "description": "Delete Web Apps Slots Instances Processes."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/restore/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps",
+ "operation": "Restore Web Apps",
+ "description": "Restore Web Apps."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/instances/extensions/log/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Instances Extensions Log",
+ "operation": "Get Web Apps Instances Extensions Log",
+ "description": "Get Web Apps Instances Extensions Log."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/customapis/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Custom APIs",
+ "operation": "Update Custom APIs",
+ "description": "Update Custom APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/customapis/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Custom APIs",
+ "operation": "Get Custom APIs",
+ "description": "Get Custom APIs."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/failedrequestsperuri/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Failed Requests Per Uri",
+ "operation": "Get Web Apps Diagnostics Failed Requests Per Uri",
+ "description": "Get Web Apps Diagnostics Failed Requests Per Uri."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/restore/write",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots",
+ "operation": "Restore Web Apps Slots",
+ "description": "Restore Web Apps Slots."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/detectors/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Detector",
+ "operation": "Get Web Apps Diagnostics Detector",
+ "description": "Get Web Apps Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/analyses/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Analysis",
+ "operation": "Get Web Apps Diagnostics Analysis",
+ "description": "Get Web Apps Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/analyses/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Analysis",
+ "operation": "Get Web Apps Slots Diagnostics Analysis",
+ "description": "Get Web Apps Slots Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/detectors/read",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Detector",
+ "operation": "Get Web Apps Slots Diagnostics Detector",
+ "description": "Get Web Apps Slots Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/analyses/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Analysis",
+ "operation": "Run Web Apps Diagnostics Analysis",
+ "description": "Run Web Apps Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/diagnostics/detectors/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Diagnostics Detector",
+ "operation": "Run Web Apps Diagnostics Detector",
+ "description": "Run Web Apps Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/analyses/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Analysis",
+ "operation": "Run Web Apps Slots Diagnostics Analysis",
+ "description": "Run Web Apps Slots Diagnostics Analysis."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "microsoft.web/sites/slots/diagnostics/detectors/execute/Action",
+ "display": {
+ "provider": "Microsoft Web Apps",
+ "resource": "Web Apps Slots Diagnostics Detector",
+ "operation": "Run Web Apps Slots Diagnostics Detector",
+ "description": "Run Web Apps Slots Diagnostics Detector."
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.Web/serverfarms/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of App Service Plan",
+ "operation": "Read App Service Plan metric definitions",
+ "description": "Gets the available metrics for App Service Plan"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "CpuPercentage",
+ "displayName": "CPU Percentage",
+ "displayDescription": "CPU Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
}
- ]
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryPercentage",
+ "displayName": "Memory Percentage",
+ "displayDescription": "Memory Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "DiskQueueLength",
+ "displayName": "Disk Queue Length",
+ "displayDescription": "Disk Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "HttpQueueLength",
+ "displayName": "Http Queue Length",
+ "displayDescription": "Http Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/sites/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of Web App",
+ "operation": "Read Web App metric definitions",
+ "description": "Gets the available metrics for Web App"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "CpuTime",
+ "displayName": "CPU Time",
+ "displayDescription": "CPU Time",
+ "unit": "Seconds",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Requests",
+ "displayName": "Requests",
+ "displayDescription": "Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http101",
+ "displayName": "Http 101",
+ "displayDescription": "Http 101",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http2xx",
+ "displayName": "Http 2xx",
+ "displayDescription": "Http 2xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http3xx",
+ "displayName": "Http 3xx",
+ "displayDescription": "Http 3xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http401",
+ "displayName": "Http 401",
+ "displayDescription": "Http 401",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http403",
+ "displayName": "Http 403",
+ "displayDescription": "Http 403",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http404",
+ "displayName": "Http 404",
+ "displayDescription": "Http 404",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http406",
+ "displayName": "Http 406",
+ "displayDescription": "Http 406",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http4xx",
+ "displayName": "Http 4xx",
+ "displayDescription": "Http 4xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http5xx",
+ "displayName": "Http Server Errors",
+ "displayDescription": "Http Server Errors",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryWorkingSet",
+ "displayName": "Memory working set",
+ "displayDescription": "Memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageMemoryWorkingSet",
+ "displayName": "Average memory working set",
+ "displayDescription": "Average memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageResponseTime",
+ "displayName": "Average Response Time",
+ "displayDescription": "Average Response Time",
+ "unit": "Seconds",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionUnits",
+ "displayName": "Function Execution Units",
+ "displayDescription": "Function Execution Units",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionCount",
+ "displayName": "Function Execution Count",
+ "displayDescription": "Function Execution Count",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/sites/slots/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of Web App Slot",
+ "operation": "Read Web App Slot metric definitions",
+ "description": "Gets the available metrics for Web App Slot"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "CpuTime",
+ "displayName": "CPU Time",
+ "displayDescription": "CPU Time",
+ "unit": "Seconds",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Requests",
+ "displayName": "Requests",
+ "displayDescription": "Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http101",
+ "displayName": "Http 101",
+ "displayDescription": "Http 101",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http2xx",
+ "displayName": "Http 2xx",
+ "displayDescription": "Http 2xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http3xx",
+ "displayName": "Http 3xx",
+ "displayDescription": "Http 3xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http401",
+ "displayName": "Http 401",
+ "displayDescription": "Http 401",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http403",
+ "displayName": "Http 403",
+ "displayDescription": "Http 403",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http404",
+ "displayName": "Http 404",
+ "displayDescription": "Http 404",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http406",
+ "displayName": "Http 406",
+ "displayDescription": "Http 406",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http4xx",
+ "displayName": "Http 4xx",
+ "displayDescription": "Http 4xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http5xx",
+ "displayName": "Http Server Errors",
+ "displayDescription": "Http Server Errors",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryWorkingSet",
+ "displayName": "Memory working set",
+ "displayDescription": "Memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageMemoryWorkingSet",
+ "displayName": "Average memory working set",
+ "displayDescription": "Average memory working set",
+ "unit": "Bytes",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageResponseTime",
+ "displayName": "Average Response Time",
+ "displayDescription": "Average Response Time",
+ "unit": "Seconds",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "^(?!functionapp).*$",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionUnits",
+ "displayName": "Function Execution Units",
+ "displayDescription": "Function Execution Units",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "FunctionExecutionCount",
+ "displayName": "Function Execution Count",
+ "displayDescription": "Function Execution Count",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "metricFilterPattern": "(?i:functionapp)",
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/multiRolePools/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of App Service Environment MultiRole",
+ "operation": "Read App Service Environment MultiRole metric definitions",
+ "description": "Gets the available metrics for App Service Environment MultiRole"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "Requests",
+ "displayName": "Requests",
+ "displayDescription": "Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesReceived",
+ "displayName": "Data In",
+ "displayDescription": "Data In",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "BytesSent",
+ "displayName": "Data Out",
+ "displayDescription": "Data Out",
+ "unit": "Bytes",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http101",
+ "displayName": "Http 101",
+ "displayDescription": "Http 101",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http2xx",
+ "displayName": "Http 2xx",
+ "displayDescription": "Http 2xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http3xx",
+ "displayName": "Http 3xx",
+ "displayDescription": "Http 3xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http401",
+ "displayName": "Http 401",
+ "displayDescription": "Http 401",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http403",
+ "displayName": "Http 403",
+ "displayDescription": "Http 403",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http404",
+ "displayName": "Http 404",
+ "displayDescription": "Http 404",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http406",
+ "displayName": "Http 406",
+ "displayDescription": "Http 406",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http4xx",
+ "displayName": "Http 4xx",
+ "displayDescription": "Http 4xx",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "Http5xx",
+ "displayName": "Http Server Errors",
+ "displayDescription": "Http Server Errors",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "AverageResponseTime",
+ "displayName": "Average Response Time",
+ "displayDescription": "Average Response Time",
+ "unit": "Seconds",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "CpuPercentage",
+ "displayName": "CPU Percentage",
+ "displayDescription": "CPU Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MemoryPercentage",
+ "displayName": "Memory Percentage",
+ "displayDescription": "Memory Percentage",
+ "unit": "Percent",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "DiskQueueLength",
+ "displayName": "Disk Queue Length",
+ "displayDescription": "Disk Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "HttpQueueLength",
+ "displayName": "Http Queue Length",
+ "displayDescription": "Http Queue Length",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "ActiveRequests",
+ "displayName": "Active Requests",
+ "displayDescription": "Active Requests",
+ "unit": "Count",
+ "aggregationType": "Total",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "dimensions": [
+ {
+ "name": "Instance",
+ "displayName": "Instance",
+ "internalName": "ServerName",
+ "toBeExportedForShoebox": true
+ }
+ ],
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "TotalFrontEnds",
+ "displayName": "Total Front Ends",
+ "displayDescription": "Total Front Ends",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "SmallAppServicePlanInstances",
+ "displayName": "Small App Service Plan Workers",
+ "displayDescription": "Small App Service Plan Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "MediumAppServicePlanInstances",
+ "displayName": "Medium App Service Plan Workers",
+ "displayDescription": "Medium App Service Plan Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "LargeAppServicePlanInstances",
+ "displayName": "Large App Service Plan Workers",
+ "displayDescription": "Large App Service Plan Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "Microsoft.Web/hostingEnvironments/workerPools/providers/Microsoft.Insights/metricDefinitions/Read",
+ "display": {
+ "provider": "Microsoft.Web",
+ "resource": "The metric definition of App Service Environment WorkerPool",
+ "operation": "Read App Service Environment WorkerPool metric definitions",
+ "description": "Gets the available metrics for App Service Environment WorkerPool"
+ },
+ "origin": "system",
+ "properties": {
+ "serviceSpecification": {
+ "metricSpecifications": [
+ {
+ "name": "WorkersTotal",
+ "displayName": "Total Workers",
+ "displayDescription": "Total Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "WorkersAvailable",
+ "displayName": "Available Workers",
+ "displayDescription": "Available Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ },
+ {
+ "name": "WorkersUsed",
+ "displayName": "Used Workers",
+ "displayDescription": "Used Workers",
+ "unit": "Count",
+ "aggregationType": "Average",
+ "supportsInstanceLevelAggregation": false,
+ "enableRegionalMdmAccount": false,
+ "fillGapWithZero": true,
+ "isInternal": false,
+ "availabilities": [
+ {
+ "timeGrain": "PT1M",
+ "blobDuration": "P2D"
+ },
+ {
+ "timeGrain": "PT1H",
+ "blobDuration": "P30D"
+ },
+ {
+ "timeGrain": "P1D",
+ "blobDuration": "P90D"
+ }
+ ]
+ }
+ ]
+ }
}
- }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataByResourceGroup.json
index 8e86757c78d8..f1f7a8c7e5e1 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataByResourceGroup.json
@@ -1,25 +1,25 @@
{
- "parameters":{
- "api-version":"2018-02-01",
- "resourceGroupName":"Default-Web-NorthCentralUS",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38"
- },
- "responses":{
- "200":{
- "body":{
- "value":[
- {
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
- ],
- "nextLink":""
- }
+ "parameters": {
+ "api-version": "2018-02-01",
+ "resourceGroupName": "Default-Web-NorthCentralUS",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
+ }
+ ],
+ "nextLink": ""
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySite.json
index d7f4425f99a5..f846499d079a 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySite.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySite.json
@@ -1,27 +1,27 @@
{
- "parameters":{
- "api-version":"2018-02-01",
- "name":"newsiteinnewASE-NCUS",
- "slot":"Production",
- "resourceGroupName":"Default-Web-NorthCentralUS",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38"
- },
- "responses":{
- "200":{
- "body":{
- "value":[
- {
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
- ],
- "nextLink":""
- }
+ "parameters": {
+ "api-version": "2018-02-01",
+ "name": "newsiteinnewASE-NCUS",
+ "slot": "Production",
+ "resourceGroupName": "Default-Web-NorthCentralUS",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
+ }
+ ],
+ "nextLink": ""
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySubscription.json
index 5178f47ed1f1..3618bb55ecee 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySubscription.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListResourceHealthMetadataBySubscription.json
@@ -1,24 +1,24 @@
{
- "parameters":{
- "api-version":"2018-02-01",
- "subscriptionId":"4adb32ad-8327-4cbb-b775-b84b4465bb38"
- },
- "responses":{
- "200":{
- "body":{
- "value":[
- {
- "properties":{
- "category":"Shared",
- "signalAvailability":true
- },
- "id":"/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
- "name":"default",
- "type":"Microsoft.Web/sites/resourceHealthMetadata"
- }
- ],
- "nextLink":""
- }
+ "parameters": {
+ "api-version": "2018-02-01",
+ "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "properties": {
+ "category": "Shared",
+ "signalAvailability": true
+ },
+ "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default",
+ "name": "default",
+ "type": "Microsoft.Web/sites/resourceHealthMetadata"
+ }
+ ],
+ "nextLink": ""
}
- }
-}
\ No newline at end of file
+ }
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchAppServicePlan.json
index f5194919f0f5..660b50ce2151 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchAppServicePlan.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchAppServicePlan.json
@@ -1,89 +1,89 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testsf6141",
+ "api-version": "2016-09-01",
+ "appServicePlan": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "properties": {
+ "name": "testsf6141"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
"name": "testsf6141",
- "api-version": "2016-09-01",
- "appServicePlan": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "properties": {
- "name" : "testsf6141"
- }
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
+ },
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
},
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
+ },
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
+ "name": "testsf6141",
+ "type": "Microsoft.Web/serverfarms",
+ "kind": "app",
+ "location": "East US",
+ "properties": {
+ "name": "testsf6141",
+ "workerSize": "Default",
+ "numberOfWorkers": 1,
+ "currentWorkerSize": "Default",
+ "currentNumberOfWorkers": 1,
+ "status": "Ready",
+ "maximumNumberOfWorkers": 20,
+ "geoRegion": "East US",
+ "numberOfSites": 4,
+ "isSpot": false,
+ "reserved": false,
+ "mdmId": "waws-prod-blu-033_4740",
+ "targetWorkerCount": 0,
+ "targetWorkerSizeId": 0,
+ "provisioningState": "Succeeded"
},
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0"
- },
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141",
- "name": "testsf6141",
- "type": "Microsoft.Web/serverfarms",
- "kind": "app",
- "location": "East US",
- "properties": {
- "name": "testsf6141",
- "workerSize": "Default",
- "numberOfWorkers": 1,
- "currentWorkerSize": "Default",
- "currentNumberOfWorkers": 1,
- "status": "Ready",
- "maximumNumberOfWorkers": 20,
- "geoRegion": "East US",
- "numberOfSites": 4,
- "isSpot": false,
- "reserved": false,
- "mdmId": "waws-prod-blu-033_4740",
- "targetWorkerCount": 0,
- "targetWorkerSizeId": 0,
- "provisioningState": "Succeeded"
- },
- "sku": {
- "name": "P1",
- "tier": "Premium",
- "size": "P1",
- "family": "P",
- "capacity": 1
- }
- }
+ "sku": {
+ "name": "P1",
+ "tier": "Premium",
+ "size": "P1",
+ "family": "P",
+ "capacity": 1
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchCertificate.json
index e416ef6824b1..7651f0e55d39 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchCertificate.json
@@ -1,39 +1,39 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01",
+ "certificateEnvelope": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "properties": {
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2018-02-01",
- "certificateEnvelope": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "properties": {
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StartWebSiteNetworkTraceOperation.json
index 24465b2d26ee..f3c4bdf32918 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StartWebSiteNetworkTraceOperation.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StartWebSiteNetworkTraceOperation.json
@@ -1,35 +1,35 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "durationInSeconds": 60,
- "api-version": "2018-02-01"
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "durationInSeconds": 60,
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
+ }
+ ]
},
- "responses": {
- "200": {
- "headers": {},
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
- },
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
- },
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
+ },
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
}
+ ]
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StopWebSiteNetworkTrace.json
index d01dd784dae1..794e4d2d8a07 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StopWebSiteNetworkTrace.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/StopWebSiteNetworkTrace.json
@@ -1,13 +1,13 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/VerifyHostingEnvironmentVnet.json
index 0d2e5951c60d..444a4a3e95bb 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/VerifyHostingEnvironmentVnet.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/VerifyHostingEnvironmentVnet.json
@@ -1,15 +1,15 @@
{
"parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2018-02-01",
- "parameters": {
- "properties": {
- "vnetResourceGroup": "vNet123rg",
- "vnetName": "vNet123",
- "vnetSubnetName": "vNet123SubNet"
- }
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2018-02-01",
+ "parameters": {
+ "properties": {
+ "vnetResourceGroup": "vNet123rg",
+ "vnetName": "vNet123",
+ "vnetSubnetName": "vNet123SubNet"
}
- },
+ }
+ },
"responses": {
"200": {
"body": {
@@ -21,4 +21,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/Certificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/Certificates.json
index bbabb17bffce..f65a92201a8d 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/Certificates.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/Certificates.json
@@ -633,4 +633,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/CreateOrUpdateCertificate.json
index ed39b60acdb8..1b0774007c31 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/CreateOrUpdateCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/CreateOrUpdateCertificate.json
@@ -1,49 +1,49 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01",
+ "certificateEnvelope": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2018-02-01",
- "certificateEnvelope": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/DeleteCertificate.json
index 169358dcf88d..4a9880fec94e 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/DeleteCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/DeleteCertificate.json
@@ -1,12 +1,12 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "testc6282",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetCertificate.json
index b4b7e23152ea..ff9c72ff4e39 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetCertificate.json
@@ -1,31 +1,31 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraceOperation.json
index 8c57b1ef4153..1b4604871ca2 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraceOperation.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraceOperation.json
@@ -1,35 +1,35 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "api-version": "2018-11-01"
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "api-version": "2018-11-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
+ }
+ ]
},
- "responses": {
- "200": {
- "headers": {},
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
- },
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
- },
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
+ },
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
}
+ ]
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraces.json
index 6d8f23845310..76c118863ba0 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraces.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/GetWebSiteNetworkTraces.json
@@ -1,22 +1,22 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "api-version": "2018-11-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "api-version": "2018-11-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
}
+ ]
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificates.json
index 42971748ee2d..b2d10a34cbf8 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificates.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificates.json
@@ -1,51 +1,51 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
- "name": "testc4912",
- "type": "Microsoft.Web/certificates",
- "location": "West US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert2",
- "hostNames": [
- "ServerCert2"
- ],
- "issuer": "CACert",
- "issueDate": "2015-12-12T23:40:25+00:00",
- "expirationDate": "2040-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
+ "name": "testc4912",
+ "type": "Microsoft.Web/certificates",
+ "location": "West US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert2",
+ "hostNames": [
+ "ServerCert2"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-12-12T23:40:25+00:00",
+ "expirationDate": "2040-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificatesByResourceGroup.json
index 3c890a111948..e7eae6f3f626 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificatesByResourceGroup.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/ListCertificatesByResourceGroup.json
@@ -1,52 +1,52 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "api-version": "2018-02-01"
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "value": [
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- },
- {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
- "name": "testc4912",
- "type": "Microsoft.Web/certificates",
- "location": "West US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert2",
- "hostNames": [
- "ServerCert2"
- ],
- "issuer": "CACert",
- "issueDate": "2015-12-12T23:40:25+00:00",
- "expirationDate": "2040-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- ]
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "api-version": "2018-02-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "value": [
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
- }
+ },
+ {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912",
+ "name": "testc4912",
+ "type": "Microsoft.Web/certificates",
+ "location": "West US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert2",
+ "hostNames": [
+ "ServerCert2"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-12-12T23:40:25+00:00",
+ "expirationDate": "2040-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ ]
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/PatchCertificate.json
index e416ef6824b1..7651f0e55d39 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/PatchCertificate.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/PatchCertificate.json
@@ -1,39 +1,39 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "testc6282",
+ "api-version": "2018-02-01",
+ "certificateEnvelope": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
+ "name": "testc6282",
+ "type": "Microsoft.Web/certificates",
+ "properties": {
+ "password": "SWsSsd__233$Sdsds#%Sd!"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": {
+ "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
"name": "testc6282",
- "api-version": "2018-02-01",
- "certificateEnvelope": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "properties": {
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
- },
- "responses": {
- "200": {
- "headers": {},
- "body": {
- "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282",
- "name": "testc6282",
- "type": "Microsoft.Web/certificates",
- "location": "East US",
- "properties": {
- "friendlyName": "",
- "subjectName": "ServerCert",
- "hostNames": [
- "ServerCert"
- ],
- "issuer": "CACert",
- "issueDate": "2015-11-12T23:40:25+00:00",
- "expirationDate": "2039-12-31T23:59:59+00:00",
- "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
- "password": "SWsSsd__233$Sdsds#%Sd!"
- }
- }
+ "type": "Microsoft.Web/certificates",
+ "location": "East US",
+ "properties": {
+ "friendlyName": "",
+ "subjectName": "ServerCert",
+ "hostNames": [
+ "ServerCert"
+ ],
+ "issuer": "CACert",
+ "issueDate": "2015-11-12T23:40:25+00:00",
+ "expirationDate": "2039-12-31T23:59:59+00:00",
+ "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE",
+ "password": "SWsSsd__233$Sdsds#%Sd!"
}
+ }
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StartWebSiteNetworkTraceOperation.json
index 41e531434cb1..352203344062 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StartWebSiteNetworkTraceOperation.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StartWebSiteNetworkTraceOperation.json
@@ -1,35 +1,35 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "durationInSeconds": 60,
- "api-version": "2018-11-01"
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "durationInSeconds": 60,
+ "api-version": "2018-11-01"
+ },
+ "responses": {
+ "200": {
+ "headers": {},
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
+ }
+ ]
},
- "responses": {
- "200": {
- "headers": {},
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
- },
- "202": {
- "headers": {
- "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
- "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
- },
- "body": [
- {
- "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
- "status": "Succeeded",
- "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
- }
- ]
+ "202": {
+ "headers": {
+ "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d",
+ "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d"
+ },
+ "body": [
+ {
+ "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip",
+ "status": "Succeeded",
+ "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip"
}
+ ]
}
-}
\ No newline at end of file
+ }
+}
diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StopWebSiteNetworkTrace.json
index ad70cfc59011..dd62974f4450 100644
--- a/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StopWebSiteNetworkTrace.json
+++ b/specification/web/resource-manager/Microsoft.Web/stable/2018-11-01/examples/StopWebSiteNetworkTrace.json
@@ -1,13 +1,13 @@
{
- "parameters": {
- "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
- "resourceGroupName": "testrg123",
- "name": "SampleApp",
- "slot": "Production",
- "api-version": "2018-11-01"
- },
- "responses": {
- "200": { },
- "204": { }
- }
-}
\ No newline at end of file
+ "parameters": {
+ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
+ "resourceGroupName": "testrg123",
+ "name": "SampleApp",
+ "slot": "Production",
+ "api-version": "2018-11-01"
+ },
+ "responses": {
+ "200": {},
+ "204": {}
+ }
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/WindowsIotServices.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/WindowsIotServices.json
index 1f2ed9feabea..ddcee0b9e0b0 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/WindowsIotServices.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/WindowsIotServices.json
@@ -677,4 +677,4 @@
"x-ms-parameter-location": "method"
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/OperationsList.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/OperationsList.json
index bd7fbb7da7a7..bcbcefb01fda 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/OperationsList.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/OperationsList.json
@@ -55,4 +55,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_CheckNameAvailability.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_CheckNameAvailability.json
index 5e262a63b387..e82fd835bdc5 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_CheckNameAvailability.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_CheckNameAvailability.json
@@ -13,4 +13,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Create.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Create.json
index c91d9ff160eb..26d342519635 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Create.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Create.json
@@ -25,4 +25,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Delete.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Delete.json
index 854d399ca3a0..58615f33f2b4 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Delete.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Delete.json
@@ -19,4 +19,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_GetProperties.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_GetProperties.json
index 432bbd85ed8e..eed9c682f8de 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_GetProperties.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_GetProperties.json
@@ -10,7 +10,7 @@
"body": {
"id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/res9407/providers/Microsoft.WindowsIoT/Services/service8596",
"name": "service8596",
- "location": "westus",
+ "location": "westus",
"properties": {
"billingDomainName": "a.b.c",
"adminDomainName": "d.e.f",
@@ -22,4 +22,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_List.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_List.json
index 877b619f071e..af9c462af19b 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_List.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_List.json
@@ -71,4 +71,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_ListByResourceGroup.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_ListByResourceGroup.json
index 0e4ce008ab1e..756d3abb6901 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_ListByResourceGroup.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_ListByResourceGroup.json
@@ -36,4 +36,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Update.json b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Update.json
index b93d6efcd79f..62d74f11b286 100644
--- a/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Update.json
+++ b/specification/windowsiot/resource-manager/Microsoft.WindowsIoT/preview/2018-02-16-preview/examples/Service_Update.json
@@ -20,9 +20,9 @@
"startDate": "2018-01-01T12:00:00000Z",
"quantity": 1000000
},
- "location": "westus",
+ "location": "westus",
"type": "Microsoft.WindowsIoT/Services"
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/Microsoft.WorkloadMonitor.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/Microsoft.WorkloadMonitor.json
index 9e5ea17e4b56..08e3b6c84539 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/Microsoft.WorkloadMonitor.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/Microsoft.WorkloadMonitor.json
@@ -670,7 +670,7 @@
"type": "string"
},
{
- "$ref": "#/parameters/notificationSettingName"
+ "$ref": "#/parameters/notificationSettingName"
},
{
"$ref": "#/parameters/api-version"
@@ -737,7 +737,7 @@
"type": "string"
},
{
- "$ref": "#/parameters/notificationSettingName"
+ "$ref": "#/parameters/notificationSettingName"
},
{
"$ref": "#/parameters/api-version"
@@ -1869,4 +1869,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/ComponentsSummary_List.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/ComponentsSummary_List.json
index 7f4ac53823d8..9caceff64bf9 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/ComponentsSummary_List.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/ComponentsSummary_List.json
@@ -1,10 +1,10 @@
{
"parameters": {
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "$select" : "OSType",
- "$filter" : "HealthStateCategory eq 'Identity' and (ComponentTypeName eq 'Microsoft.Windows.Server.10.0.Full.Computer' or ComponentTypeName eq 'Microsoft.Linux.Universal.Computer') and WorkloadType eq 'BaseOS' and (ResourceGroupId eq 'viv_rg')",
- "$apply" : "groupby((OperatingSystem,HealthState),aggregate(VmId with countdistinct as VmCount))",
- "$orderby" : "Error",
+ "$select": "OSType",
+ "$filter": "HealthStateCategory eq 'Identity' and (ComponentTypeName eq 'Microsoft.Windows.Server.10.0.Full.Computer' or ComponentTypeName eq 'Microsoft.Linux.Universal.Computer') and WorkloadType eq 'BaseOS' and (ResourceGroupId eq 'viv_rg')",
+ "$apply": "groupby((OperatingSystem,HealthState),aggregate(VmId with countdistinct as VmCount))",
+ "$orderby": "Error",
"api-version": "2018-08-31-preview"
},
"responses": {
@@ -13,13 +13,10 @@
"value": [
{
"properties": {
-
"componentTypeGroupCategory": null,
-
"vmId": null,
"vmName": null,
"vmTags": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -48,13 +45,10 @@
},
{
"properties": {
-
"componentTypeGroupCategory": null,
-
"vmId": null,
"vmName": null,
"vmTags": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -86,4 +80,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_Get.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_Get.json
index 1e74ef7c48ab..c7917269a948 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_Get.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_Get.json
@@ -41,4 +41,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_ListByResource.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_ListByResource.json
index 7865bbebab67..fb5d7b3ead7f 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_ListByResource.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Components_ListByResource.json
@@ -3,433 +3,433 @@
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
"resourceGroupName": "viv_rg",
"resourceNamespace": "Microsoft.Compute",
- "resourceType" : "virtualMachines",
- "resourceName" : "Canary-WLI-2",
+ "resourceType": "virtualMachines",
+ "resourceName": "Canary-WLI-2",
"api-version": "2018-08-31-preview"
},
"responses": {
"200": {
"body": {
- "value": [
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:43:36+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T09:08:34+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "CPU0",
- "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:35:35+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Processor",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663'",
- "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:21:08+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:50:11+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:02:52+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:10:46+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='05a70c91-2163-d974-638d-2ddda2308153'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- },
- {
- "properties": {
- "componentTypeGroupCategory": null,
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmName": "Canary-WLI-2",
- "vmTags": {},
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Ethernet 2",
- "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
- "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:10:36+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "monitorCategory": "EntityHealth",
- "monitorType": "Aggregate",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad'",
- "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
- }
- ],
- "nextLink": null
- }
+ "value": [
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:43:36+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T09:08:34+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "CPU0",
+ "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:35:35+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Processor",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663'",
+ "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:21:08+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:50:11+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:02:52+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:10:46+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='05a70c91-2163-d974-638d-2ddda2308153'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ },
+ {
+ "properties": {
+ "componentTypeGroupCategory": null,
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmName": "Canary-WLI-2",
+ "vmTags": {},
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Ethernet 2",
+ "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:10:36+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "monitorCategory": "EntityHealth",
+ "monitorType": "Aggregate",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/components/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad'",
+ "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/components"
+ }
+ ],
+ "nextLink": null
+ }
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstancesSummary_List.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstancesSummary_List.json
index 3d3855911da0..fdaa5ce7d4c5 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstancesSummary_List.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstancesSummary_List.json
@@ -1,10 +1,10 @@
{
"parameters": {
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "$select" : "MonitorId,MonitorName,MonitorDisplayName,MonitorType,MonitorCategory,ComponentName,ComponentTypeDisplayName",
- "$filter" : "(ResourceGroupId eq 'viv_rg') and WorkloadType eq 'BaseOS' and HealthStateCategory eq 'CustomGroup' and MonitorKind eq 'Custom' and (MonitorType eq 'Unit') and (MonitorCategory eq 'PerformanceHealth' or MonitorCategory eq 'AvailabilityHealth' or MonitorCategory eq 'ConfigurationHealth' or MonitorCategory eq 'SecurityHealth')",
- "$apply" : "groupby((MonitorName,HealthState),aggregate($count as Instances))",
- "$orderby" : "Unhealthy desc",
+ "$select": "MonitorId,MonitorName,MonitorDisplayName,MonitorType,MonitorCategory,ComponentName,ComponentTypeDisplayName",
+ "$filter": "(ResourceGroupId eq 'viv_rg') and WorkloadType eq 'BaseOS' and HealthStateCategory eq 'CustomGroup' and MonitorKind eq 'Custom' and (MonitorType eq 'Unit') and (MonitorCategory eq 'PerformanceHealth' or MonitorCategory eq 'AvailabilityHealth' or MonitorCategory eq 'ConfigurationHealth' or MonitorCategory eq 'SecurityHealth')",
+ "$apply": "groupby((MonitorName,HealthState),aggregate($count as Instances))",
+ "$orderby": "Unhealthy desc",
"api-version": "2018-08-31-preview"
},
"responses": {
@@ -19,11 +19,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -57,11 +53,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -95,11 +87,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -133,11 +121,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -171,11 +155,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -209,11 +189,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -247,11 +223,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -285,11 +257,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -323,11 +291,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -361,11 +325,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -399,11 +359,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -437,11 +393,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -475,11 +427,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -513,11 +461,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -551,11 +495,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -589,11 +529,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -627,11 +563,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -665,11 +597,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -703,11 +631,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -741,11 +665,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -779,11 +699,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -817,11 +733,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -855,11 +767,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -893,11 +801,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -931,11 +835,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -969,11 +869,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1007,11 +903,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1045,11 +937,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1083,11 +971,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1121,11 +1005,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1159,11 +1039,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1197,11 +1073,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1235,11 +1107,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1273,11 +1141,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1311,11 +1175,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1349,11 +1209,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1387,11 +1243,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1425,11 +1277,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1463,11 +1311,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1501,11 +1345,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1539,11 +1379,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1577,11 +1413,7 @@
"monitorType": "Unit",
"monitorCategory": "PerformanceHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1615,11 +1447,7 @@
"monitorType": "Unit",
"monitorCategory": "AvailabilityHealth",
"healthStateChanges": null,
-
-
-
"alertGeneration": null,
-
"children": null,
"workspaceId": null,
"solutionId": null,
@@ -1650,4 +1478,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_Get.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_Get.json
index 90504e7415ed..a64caf85bf97 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_Get.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_Get.json
@@ -3,66 +3,66 @@
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
"resourceGroupName": "viv_rg",
"resourceNamespace": "Microsoft.Compute",
- "resourceType" : "virtualMachines",
- "resourceName" : "Canary-WLI-2",
- "monitorInstanceId" : "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
+ "resourceType": "virtualMachines",
+ "resourceName": "Canary-WLI-2",
+ "monitorInstanceId": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
"api-version": "2018-08-31-preview"
},
"responses": {
"200": {
"body": {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "052f9b7d-7bf0-7f61-966b-f372e207ef4e",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.FirewallServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:48:05+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_052f9b7d-7bf0-7f61-966b-f372e207ef4e",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Firewall Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- }
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "052f9b7d-7bf0-7f61-966b-f372e207ef4e",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.FirewallServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:48:05+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_052f9b7d-7bf0-7f61-966b-f372e207ef4e",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Firewall Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ }
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_ListByResource.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_ListByResource.json
index c6648079a2f2..0dad8d8e9b3e 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_ListByResource.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/MonitorInstances_ListByResource.json
@@ -3,3303 +3,3303 @@
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
"resourceGroupName": "viv_rg",
"resourceNamespace": "Microsoft.Compute",
- "resourceType" : "virtualMachines",
- "resourceName" : "Canary-WLI-2",
+ "resourceType": "virtualMachines",
+ "resourceName": "Canary-WLI-2",
"api-version": "2018-08-31-preview"
},
"responses": {
"200": {
"body": {
- "value": [
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "052f9b7d-7bf0-7f61-966b-f372e207ef4e",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.FirewallServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:48:05+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_052f9b7d-7bf0-7f61-966b-f372e207ef4e",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Firewall Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "b974db31-cf93-9d6b-740a-9f8508b92712",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.CoreServicesRollup",
- "monitorType": "Aggregate",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:50:35+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_b974db31-cf93-9d6b-740a-9f8508b92712",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Core Windows Services Rollup",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=b974db31-cf93-9d6b-740a-9f8508b92712'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=b974db31-cf93-9d6b-740a-9f8508b92712'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "a6c69968-61aa-a6b9-db6e-83a0da6110ea",
- "monitorName": "System.Health.AvailabilityState",
- "monitorType": "Aggregate",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:02:04+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_a6c69968-61aa-a6b9-db6e-83a0da6110ea",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Availability",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "c9db5e55-f3c8-7366-6b98-bc727e726a4b",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.DHCPClientServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:45:51+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_c9db5e55-f3c8-7366-6b98-bc727e726a4b",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "DHCP Client Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=c9db5e55-f3c8-7366-6b98-bc727e726a4b'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=c9db5e55-f3c8-7366-6b98-bc727e726a4b'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:43:36+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "b787a678-ce4b-c473-b6b4-6e1dbf184a61",
- "monitorName": "Microsoft.Windows.Server.Computer.OSAvailabilityRollup",
- "monitorType": "Dependency",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:06:21+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_b787a678-ce4b-c473-b6b4-6e1dbf184a61",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Computer Operating System Availability Rollup",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b787a678-ce4b-c473-b6b4-6e1dbf184a61'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b787a678-ce4b-c473-b6b4-6e1dbf184a61'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "9a86ee3f-d133-b183-a400-6ad3a3834c86",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.WindowsRemoteManagementServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:47:58+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_9a86ee3f-d133-b183-a400-6ad3a3834c86",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Remote Management Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=9a86ee3f-d133-b183-a400-6ad3a3834c86'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=9a86ee3f-d133-b183-a400-6ad3a3834c86'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "6799aaae-533c-9a8d-331f-ea833db85d1d",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.RPCServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:46:12+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_6799aaae-533c-9a8d-331f-ea833db85d1d",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "RPC Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=6799aaae-533c-9a8d-331f-ea833db85d1d'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=6799aaae-533c-9a8d-331f-ea833db85d1d'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "75472fe7-e406-32a6-4198-0502ecee1bfe",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.PercentCommittedBytesInUse",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:39:48+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_75472fe7-e406-32a6-4198-0502ecee1bfe",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Percentage of Committed Memory in Use",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=75472fe7-e406-32a6-4198-0502ecee1bfe'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=75472fe7-e406-32a6-4198-0502ecee1bfe'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerRead",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:48:34+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Logical Disk Seconds Per Read",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "887e162a-74f4-2951-64e5-87dd5f076342",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.MemoryFreeSystemPageTableEntries",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:10:45+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_887e162a-74f4-2951-64e5-87dd5f076342",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Free System Page Table Entries",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=887e162a-74f4-2951-64e5-87dd5f076342'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=887e162a-74f4-2951-64e5-87dd5f076342'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "a6c69968-61aa-a6b9-db6e-83a0da6110ea",
- "monitorName": "System.Health.AvailabilityState",
- "monitorType": "Aggregate",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T09:04:42+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_a6c69968-61aa-a6b9-db6e-83a0da6110ea",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Availability",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:48:09+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "3c184dff-8813-38f9-e965-2a9561425180",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.TotalDPCTime",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:37:42+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_3c184dff-8813-38f9-e965-2a9561425180",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Total DPC Time Percentage",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=3c184dff-8813-38f9-e965-2a9561425180'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=3c184dff-8813-38f9-e965-2a9561425180'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "4585a2f7-87c5-54e7-2b76-81af1073aec8",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.ServerServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:48:20+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_4585a2f7-87c5-54e7-2b76-81af1073aec8",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Server Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=4585a2f7-87c5-54e7-2b76-81af1073aec8'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=4585a2f7-87c5-54e7-2b76-81af1073aec8'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "37232a87-988f-6256-3033-ea0c102c2d43",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.DNSClientServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:45:42+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_37232a87-988f-6256-3033-ea0c102c2d43",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "DNS Client Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=37232a87-988f-6256-3033-ea0c102c2d43'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=37232a87-988f-6256-3033-ea0c102c2d43'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "50fd1db1-7111-d67e-3f81-e73203d073e3",
- "monitorName": "Microsoft.Windows.Server.Computer.OSPerformanceRollup",
- "monitorType": "Dependency",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:47:48+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_50fd1db1-7111-d67e-3f81-e73203d073e3",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Computer Operating System Performance Rollup",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=50fd1db1-7111-d67e-3f81-e73203d073e3'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=50fd1db1-7111-d67e-3f81-e73203d073e3'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "41eccc60-5578-2eea-e104-8bf7022ed5af",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.MemoryPagesPerSecond",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:43:54+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_41eccc60-5578-2eea-e104-8bf7022ed5af",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Memory Pages Per Second",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=41eccc60-5578-2eea-e104-8bf7022ed5af'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=41eccc60-5578-2eea-e104-8bf7022ed5af'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
- "monitorId": "e80001dc-3aa8-e5c8-f782-5b4ef144fd5c",
- "monitorName": "Microsoft.Windows.Server.10.0.Processor.PercentDPCTime",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "CPU0",
- "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:45:34+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_e80001dc-3aa8-e5c8-f782-5b4ef144fd5c",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "CPU DPC Time Percentage",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Processor",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e80001dc-3aa8-e5c8-f782-5b4ef144fd5c'",
- "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e80001dc-3aa8-e5c8-f782-5b4ef144fd5c'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "c688a072-2a8f-6409-1895-a0cc363cb326",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerRead",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:48:37+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_c688a072-2a8f-6409-1895-a0cc363cb326",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Read",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T09:08:34+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "850400b6-9fd2-d927-bc47-9934dfe28845",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerTransfer",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:50:20+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_850400b6-9fd2-d927-bc47-9934dfe28845",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Logical Disk Seconds Per Transfer",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
- "monitorId": "94df5e8c-989a-f595-86b0-0baba4662bfb",
- "monitorName": "Microsoft.Windows.Server.10.0.Processor.CPUUtilization",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "CPU0",
- "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:43:50+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_94df5e8c-989a-f595-86b0-0baba4662bfb",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "CPU Percentage Utilization",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Processor",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=94df5e8c-989a-f595-86b0-0baba4662bfb'",
- "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=94df5e8c-989a-f595-86b0-0baba4662bfb'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "33f2143c-d677-6d10-c676-2f2bac54bbbd",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.EventLogServiceHealth",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:46:06+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_33f2143c-d677-6d10-c676-2f2bac54bbbd",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Event Log Service Health",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=33f2143c-d677-6d10-c676-2f2bac54bbbd'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=33f2143c-d677-6d10-c676-2f2bac54bbbd'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "99dbb2f7-9335-40c1-562e-0bee9e43b029",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerWrite",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:50:24+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_99dbb2f7-9335-40c1-562e-0bee9e43b029",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Write (Logical Disk)",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "99dbb2f7-9335-40c1-562e-0bee9e43b029",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerWrite",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:50:15+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_99dbb2f7-9335-40c1-562e-0bee9e43b029",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Write (Logical Disk)",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "850400b6-9fd2-d927-bc47-9934dfe28845",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerTransfer",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:49:10+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_850400b6-9fd2-d927-bc47-9934dfe28845",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Logical Disk Seconds Per Transfer",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "584e5846-a4a3-a17a-26fd-25014f727ee9",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerWrite",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:43:34+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_584e5846-a4a3-a17a-26fd-25014f727ee9",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Write",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "8966cbe8-38d2-57be-5937-3d43e38a3df5",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerTransfer",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:50:20+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_8966cbe8-38d2-57be-5937-3d43e38a3df5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Transfer",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "584e5846-a4a3-a17a-26fd-25014f727ee9",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerWrite",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:46:22+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_584e5846-a4a3-a17a-26fd-25014f727ee9",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Write",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerRead",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:48:38+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Logical Disk Seconds Per Read",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "8966cbe8-38d2-57be-5937-3d43e38a3df5",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerTransfer",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:50:08+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_8966cbe8-38d2-57be-5937-3d43e38a3df5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Transfer",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
- "monitorId": "07cacb31-615d-5c7a-e118-fd55c17b5a2c",
- "monitorName": "Microsoft.Windows.Server.10.0.NetworkAdapter.PercentBandwidthUsedReads",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Ethernet 2",
- "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
- "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:42:23+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_07cacb31-615d-5c7a-e118-fd55c17b5a2c",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Percent Bandwidth Used Read",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=07cacb31-615d-5c7a-e118-fd55c17b5a2c'",
- "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=07cacb31-615d-5c7a-e118-fd55c17b5a2c'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
- "monitorId": "194d2011-69ed-50bb-4d50-a394d48fb048",
- "monitorName": "Microsoft.Windows.Server.10.0.Processor.PerformanceRollup",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "CPU0",
- "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:45:48+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_194d2011-69ed-50bb-4d50-a394d48fb048",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Server 2016 Processor Performance Rollup Monitor",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Processor",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=194d2011-69ed-50bb-4d50-a394d48fb048'",
- "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=194d2011-69ed-50bb-4d50-a394d48fb048'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "c688a072-2a8f-6409-1895-a0cc363cb326",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerRead",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T08:49:07+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_c688a072-2a8f-6409-1895-a0cc363cb326",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Average Disk Seconds Per Read",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
- "monitorId": "728733ca-14e2-9ddc-8ec8-5de911bdf35f",
- "monitorName": "Microsoft.Windows.Server.10.0.NetworkAdapter.PercentBandwidthUsedWrites",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Ethernet 2",
- "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
- "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:40:34+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_728733ca-14e2-9ddc-8ec8-5de911bdf35f",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Percent Bandwidth Used Write",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=728733ca-14e2-9ddc-8ec8-5de911bdf35f'",
- "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=728733ca-14e2-9ddc-8ec8-5de911bdf35f'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "1aa535e9-d09c-3557-297f-62923069ba81",
- "monitorName": "Microsoft.Windows.Server.10.0.MaxConcurrentAPI.Monitor",
- "monitorType": "Unit",
- "monitorCategory": "AvailabilityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:56:44+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_1aa535e9-d09c-3557-297f-62923069ba81",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Server 2016 Max Concurrent API Monitor",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=1aa535e9-d09c-3557-297f-62923069ba81'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=1aa535e9-d09c-3557-297f-62923069ba81'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T14:47:55+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T14:50:04+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "c2396f9e-22eb-9a72-0149-ea3b9a219e64",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.PercentIdleTime",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T14:43:38+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_c2396f9e-22eb-9a72-0149-ea3b9a219e64",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Disk Percent Idle Time",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
- "monitorId": "b12539ea-7122-af29-6af6-0047432bab6a",
- "monitorName": "Microsoft.Windows.Server.10.0.NetworkAdapter.PercentBandwidthUsedTotal",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Ethernet 2",
- "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
- "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:21:17+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_b12539ea-7122-af29-6af6-0047432bab6a",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Percent Bandwidth Used Total",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=b12539ea-7122-af29-6af6-0047432bab6a'",
- "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=b12539ea-7122-af29-6af6-0047432bab6a'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T14:43:45+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "c2396f9e-22eb-9a72-0149-ea3b9a219e64",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.PercentIdleTime",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T14:48:17+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_c2396f9e-22eb-9a72-0149-ea3b9a219e64",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Disk Percent Idle Time",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "CPU0",
- "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T08:49:35+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Processor",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:52:08+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "22e3b675-109e-9292-952e-7554604e3605",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.CurrentDiskQueueLength",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:33:41+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_22e3b675-109e-9292-952e-7554604e3605",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Current Disk Queue Length (Logical Disk)",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "CPU0",
- "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:35:35+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Processor",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "062d163a-0742-73d9-1d9d-a582c82127e4",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.CurrentDiskQueueLength",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:34:04+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_062d163a-0742-73d9-1d9d-a582c82127e4",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Current Disk Queue Length",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "062d163a-0742-73d9-1d9d-a582c82127e4",
- "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.CurrentDiskQueueLength",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:43:35+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_062d163a-0742-73d9-1d9d-a582c82127e4",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Current Disk Queue Length",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "22e3b675-109e-9292-952e-7554604e3605",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.CurrentDiskQueueLength",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:34:01+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_22e3b675-109e-9292-952e-7554604e3605",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Current Disk Queue Length (Logical Disk)",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "8a16058b-d31e-c156-3460-2c6cae7bfc49",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.TotalCPUUtilization",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:15:05+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_8a16058b-d31e-c156-3460-2c6cae7bfc49",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Total CPU Utilization Percentage",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=8a16058b-d31e-c156-3460-2c6cae7bfc49'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=8a16058b-d31e-c156-3460-2c6cae7bfc49'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.PercentIdleTime",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T14:39:33+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Logical Disk Percent Idle Time",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
- "monitorId": "b8375781-0835-15b6-c782-f497b54b65ea",
- "monitorName": "Microsoft.Windows.Server.Computer.HardwarePerformanceRollup",
- "monitorType": "Dependency",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Canary-WLI-2",
- "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:50:13+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_b8375781-0835-15b6-c782-f497b54b65ea",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Windows Computer Hardware Performance Rollup",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b8375781-0835-15b6-c782-f497b54b65ea'",
- "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b8375781-0835-15b6-c782-f497b54b65ea'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 0",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:21:08+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T14:45:35+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Disk 1",
- "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
- "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-22T08:50:11+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "D:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:02:52+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
- "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
- "monitorName": "System.Health.PerformanceState",
- "monitorType": "Aggregate",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Ethernet 2",
- "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
- "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T09:46:13+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_7db3eece-fd0d-fddd-3af7-f8371a914874",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Performance",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
- "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.PercentIdleTime",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-18T14:37:36+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Logical Disk Percent Idle Time",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Warning",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "C:",
- "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
- "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:10:46+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
- "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "monitorName": "System.Health.EntityState",
- "monitorType": "Aggregate",
- "monitorCategory": "EntityHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Ethernet 2",
- "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
- "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-21T09:10:36+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Entity Health",
- "monitorKind": "Standard",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Success",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- },
- {
- "properties": {
- "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
- "monitorId": "7af5bcb4-31e9-5ec9-268f-178c265a6c2c",
- "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.MemoryAvailableMBytes",
- "monitorType": "Unit",
- "monitorCategory": "PerformanceHealth",
- "healthStateChanges": null,
- "alertGeneration": null,
- "children": null,
- "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
- "solutionId": null,
- "workloadType": "BaseOS",
- "componentName": "Windows Operating System",
- "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
- "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
- "healthState": "Unknown",
- "healthStateCategory": null,
- "healthStateChangesStartTime": null,
- "healthStateChangesEndTime": null,
- "lastHealthStateChangeTime": "2018-08-19T09:17:06+05:30",
- "aggregateProperties": {
- "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_7af5bcb4-31e9-5ec9-268f-178c265a6c2c",
- "workloadId": "Canary-WLI-2",
- "workloadId_Lower": "canary-wli-2",
- "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
- "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
- "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
- "resourceGroupId": "viv_rg",
- "resourceGroupName_Lower": "viv_rg",
- "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
- "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
- "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
- "monitorDisplayName": "Available Megabytes of Memory",
- "monitorKind": "Custom",
- "currentHealth_CustomOrder": "03_Unknown",
- "previousHealth": "Error",
- "version": "2016.127.20180613",
- "edition": "2016-Datacenter",
- "location": "westcentralus",
- "vmTags": "",
- "vmName": "Canary-WLI-2",
- "vmName_Lower": "canary-wli-2",
- "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
- "osType": "Windows",
- "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
- }
- },
- "etag": null,
- "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7af5bcb4-31e9-5ec9-268f-178c265a6c2c'",
- "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7af5bcb4-31e9-5ec9-268f-178c265a6c2c'",
- "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
- }
- ],
- "nextLink": null
- }
+ "value": [
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "052f9b7d-7bf0-7f61-966b-f372e207ef4e",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.FirewallServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:48:05+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_052f9b7d-7bf0-7f61-966b-f372e207ef4e",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Firewall Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=052f9b7d-7bf0-7f61-966b-f372e207ef4e'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "b974db31-cf93-9d6b-740a-9f8508b92712",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.CoreServicesRollup",
+ "monitorType": "Aggregate",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:50:35+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_b974db31-cf93-9d6b-740a-9f8508b92712",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Core Windows Services Rollup",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=b974db31-cf93-9d6b-740a-9f8508b92712'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=b974db31-cf93-9d6b-740a-9f8508b92712'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "a6c69968-61aa-a6b9-db6e-83a0da6110ea",
+ "monitorName": "System.Health.AvailabilityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:02:04+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_a6c69968-61aa-a6b9-db6e-83a0da6110ea",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Availability",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "c9db5e55-f3c8-7366-6b98-bc727e726a4b",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.DHCPClientServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:45:51+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_c9db5e55-f3c8-7366-6b98-bc727e726a4b",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "DHCP Client Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=c9db5e55-f3c8-7366-6b98-bc727e726a4b'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=c9db5e55-f3c8-7366-6b98-bc727e726a4b'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:43:36+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "b787a678-ce4b-c473-b6b4-6e1dbf184a61",
+ "monitorName": "Microsoft.Windows.Server.Computer.OSAvailabilityRollup",
+ "monitorType": "Dependency",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:06:21+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_b787a678-ce4b-c473-b6b4-6e1dbf184a61",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Computer Operating System Availability Rollup",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b787a678-ce4b-c473-b6b4-6e1dbf184a61'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b787a678-ce4b-c473-b6b4-6e1dbf184a61'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "9a86ee3f-d133-b183-a400-6ad3a3834c86",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.WindowsRemoteManagementServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:47:58+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_9a86ee3f-d133-b183-a400-6ad3a3834c86",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Remote Management Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=9a86ee3f-d133-b183-a400-6ad3a3834c86'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=9a86ee3f-d133-b183-a400-6ad3a3834c86'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "6799aaae-533c-9a8d-331f-ea833db85d1d",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.RPCServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:46:12+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_6799aaae-533c-9a8d-331f-ea833db85d1d",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "RPC Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=6799aaae-533c-9a8d-331f-ea833db85d1d'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=6799aaae-533c-9a8d-331f-ea833db85d1d'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "75472fe7-e406-32a6-4198-0502ecee1bfe",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.PercentCommittedBytesInUse",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:39:48+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_75472fe7-e406-32a6-4198-0502ecee1bfe",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Percentage of Committed Memory in Use",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=75472fe7-e406-32a6-4198-0502ecee1bfe'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=75472fe7-e406-32a6-4198-0502ecee1bfe'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerRead",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:48:34+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Logical Disk Seconds Per Read",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "887e162a-74f4-2951-64e5-87dd5f076342",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.MemoryFreeSystemPageTableEntries",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:10:45+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_887e162a-74f4-2951-64e5-87dd5f076342",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Free System Page Table Entries",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=887e162a-74f4-2951-64e5-87dd5f076342'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=887e162a-74f4-2951-64e5-87dd5f076342'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "a6c69968-61aa-a6b9-db6e-83a0da6110ea",
+ "monitorName": "System.Health.AvailabilityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T09:04:42+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_a6c69968-61aa-a6b9-db6e-83a0da6110ea",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Availability",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=a6c69968-61aa-a6b9-db6e-83a0da6110ea'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:48:09+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "3c184dff-8813-38f9-e965-2a9561425180",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.TotalDPCTime",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:37:42+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_3c184dff-8813-38f9-e965-2a9561425180",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Total DPC Time Percentage",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=3c184dff-8813-38f9-e965-2a9561425180'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=3c184dff-8813-38f9-e965-2a9561425180'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "4585a2f7-87c5-54e7-2b76-81af1073aec8",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.ServerServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:48:20+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_4585a2f7-87c5-54e7-2b76-81af1073aec8",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Server Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=4585a2f7-87c5-54e7-2b76-81af1073aec8'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=4585a2f7-87c5-54e7-2b76-81af1073aec8'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "37232a87-988f-6256-3033-ea0c102c2d43",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.DNSClientServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:45:42+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_37232a87-988f-6256-3033-ea0c102c2d43",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "DNS Client Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=37232a87-988f-6256-3033-ea0c102c2d43'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=37232a87-988f-6256-3033-ea0c102c2d43'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "50fd1db1-7111-d67e-3f81-e73203d073e3",
+ "monitorName": "Microsoft.Windows.Server.Computer.OSPerformanceRollup",
+ "monitorType": "Dependency",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:47:48+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_50fd1db1-7111-d67e-3f81-e73203d073e3",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Computer Operating System Performance Rollup",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=50fd1db1-7111-d67e-3f81-e73203d073e3'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=50fd1db1-7111-d67e-3f81-e73203d073e3'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "41eccc60-5578-2eea-e104-8bf7022ed5af",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.MemoryPagesPerSecond",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:43:54+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_41eccc60-5578-2eea-e104-8bf7022ed5af",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Memory Pages Per Second",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=41eccc60-5578-2eea-e104-8bf7022ed5af'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=41eccc60-5578-2eea-e104-8bf7022ed5af'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
+ "monitorId": "e80001dc-3aa8-e5c8-f782-5b4ef144fd5c",
+ "monitorName": "Microsoft.Windows.Server.10.0.Processor.PercentDPCTime",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "CPU0",
+ "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:45:34+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_e80001dc-3aa8-e5c8-f782-5b4ef144fd5c",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "CPU DPC Time Percentage",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Processor",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e80001dc-3aa8-e5c8-f782-5b4ef144fd5c'",
+ "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e80001dc-3aa8-e5c8-f782-5b4ef144fd5c'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "c688a072-2a8f-6409-1895-a0cc363cb326",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerRead",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:48:37+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_c688a072-2a8f-6409-1895-a0cc363cb326",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Read",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T09:08:34+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "850400b6-9fd2-d927-bc47-9934dfe28845",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerTransfer",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:50:20+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_850400b6-9fd2-d927-bc47-9934dfe28845",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Logical Disk Seconds Per Transfer",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
+ "monitorId": "94df5e8c-989a-f595-86b0-0baba4662bfb",
+ "monitorName": "Microsoft.Windows.Server.10.0.Processor.CPUUtilization",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "CPU0",
+ "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:43:50+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_94df5e8c-989a-f595-86b0-0baba4662bfb",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "CPU Percentage Utilization",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Processor",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=94df5e8c-989a-f595-86b0-0baba4662bfb'",
+ "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=94df5e8c-989a-f595-86b0-0baba4662bfb'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "33f2143c-d677-6d10-c676-2f2bac54bbbd",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.EventLogServiceHealth",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:46:06+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_33f2143c-d677-6d10-c676-2f2bac54bbbd",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Event Log Service Health",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=33f2143c-d677-6d10-c676-2f2bac54bbbd'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=33f2143c-d677-6d10-c676-2f2bac54bbbd'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "99dbb2f7-9335-40c1-562e-0bee9e43b029",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerWrite",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:50:24+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_99dbb2f7-9335-40c1-562e-0bee9e43b029",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Write (Logical Disk)",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "99dbb2f7-9335-40c1-562e-0bee9e43b029",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerWrite",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:50:15+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_99dbb2f7-9335-40c1-562e-0bee9e43b029",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Write (Logical Disk)",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=99dbb2f7-9335-40c1-562e-0bee9e43b029'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "850400b6-9fd2-d927-bc47-9934dfe28845",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerTransfer",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:49:10+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_850400b6-9fd2-d927-bc47-9934dfe28845",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Logical Disk Seconds Per Transfer",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=850400b6-9fd2-d927-bc47-9934dfe28845'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "584e5846-a4a3-a17a-26fd-25014f727ee9",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerWrite",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:43:34+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_584e5846-a4a3-a17a-26fd-25014f727ee9",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Write",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "8966cbe8-38d2-57be-5937-3d43e38a3df5",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerTransfer",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:50:20+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_8966cbe8-38d2-57be-5937-3d43e38a3df5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Transfer",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "584e5846-a4a3-a17a-26fd-25014f727ee9",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerWrite",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:46:22+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_584e5846-a4a3-a17a-26fd-25014f727ee9",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Write",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=584e5846-a4a3-a17a-26fd-25014f727ee9'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.AvgDiskSecPerRead",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:48:38+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_f69b8b3f-3ba6-adf0-cdec-7c01b385d13c",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Logical Disk Seconds Per Read",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=f69b8b3f-3ba6-adf0-cdec-7c01b385d13c'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "8966cbe8-38d2-57be-5937-3d43e38a3df5",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerTransfer",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:50:08+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_8966cbe8-38d2-57be-5937-3d43e38a3df5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Transfer",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=8966cbe8-38d2-57be-5937-3d43e38a3df5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
+ "monitorId": "07cacb31-615d-5c7a-e118-fd55c17b5a2c",
+ "monitorName": "Microsoft.Windows.Server.10.0.NetworkAdapter.PercentBandwidthUsedReads",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Ethernet 2",
+ "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:42:23+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_07cacb31-615d-5c7a-e118-fd55c17b5a2c",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Percent Bandwidth Used Read",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=07cacb31-615d-5c7a-e118-fd55c17b5a2c'",
+ "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=07cacb31-615d-5c7a-e118-fd55c17b5a2c'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
+ "monitorId": "194d2011-69ed-50bb-4d50-a394d48fb048",
+ "monitorName": "Microsoft.Windows.Server.10.0.Processor.PerformanceRollup",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "CPU0",
+ "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:45:48+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_194d2011-69ed-50bb-4d50-a394d48fb048",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Server 2016 Processor Performance Rollup Monitor",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Processor",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=194d2011-69ed-50bb-4d50-a394d48fb048'",
+ "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=194d2011-69ed-50bb-4d50-a394d48fb048'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "c688a072-2a8f-6409-1895-a0cc363cb326",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.AvgDiskSecPerRead",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T08:49:07+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_c688a072-2a8f-6409-1895-a0cc363cb326",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Average Disk Seconds Per Read",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c688a072-2a8f-6409-1895-a0cc363cb326'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
+ "monitorId": "728733ca-14e2-9ddc-8ec8-5de911bdf35f",
+ "monitorName": "Microsoft.Windows.Server.10.0.NetworkAdapter.PercentBandwidthUsedWrites",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Ethernet 2",
+ "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:40:34+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_728733ca-14e2-9ddc-8ec8-5de911bdf35f",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Percent Bandwidth Used Write",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=728733ca-14e2-9ddc-8ec8-5de911bdf35f'",
+ "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=728733ca-14e2-9ddc-8ec8-5de911bdf35f'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "1aa535e9-d09c-3557-297f-62923069ba81",
+ "monitorName": "Microsoft.Windows.Server.10.0.MaxConcurrentAPI.Monitor",
+ "monitorType": "Unit",
+ "monitorCategory": "AvailabilityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:56:44+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_1aa535e9-d09c-3557-297f-62923069ba81",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Server 2016 Max Concurrent API Monitor",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=1aa535e9-d09c-3557-297f-62923069ba81'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=1aa535e9-d09c-3557-297f-62923069ba81'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T14:47:55+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T14:50:04+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "c2396f9e-22eb-9a72-0149-ea3b9a219e64",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.PercentIdleTime",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T14:43:38+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_c2396f9e-22eb-9a72-0149-ea3b9a219e64",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Disk Percent Idle Time",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
+ "monitorId": "b12539ea-7122-af29-6af6-0047432bab6a",
+ "monitorName": "Microsoft.Windows.Server.10.0.NetworkAdapter.PercentBandwidthUsedTotal",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Ethernet 2",
+ "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:21:17+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_b12539ea-7122-af29-6af6-0047432bab6a",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Percent Bandwidth Used Total",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=b12539ea-7122-af29-6af6-0047432bab6a'",
+ "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=b12539ea-7122-af29-6af6-0047432bab6a'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T14:43:45+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "c2396f9e-22eb-9a72-0149-ea3b9a219e64",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.PercentIdleTime",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T14:48:17+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_c2396f9e-22eb-9a72-0149-ea3b9a219e64",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Disk Percent Idle Time",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=c2396f9e-22eb-9a72-0149-ea3b9a219e64'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "CPU0",
+ "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T08:49:35+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Processor",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:52:08+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "22e3b675-109e-9292-952e-7554604e3605",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.CurrentDiskQueueLength",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:33:41+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_22e3b675-109e-9292-952e-7554604e3605",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Current Disk Queue Length (Logical Disk)",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "804fc44e-c49d-58f0-3b03-bf24f7d11663",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "CPU0",
+ "componentTypeId": "933c8d32-3668-6c84-8855-11f301d04589",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Processor",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:35:35+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_804fc44e-c49d-58f0-3b03-bf24f7d11663_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Processor",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='804fc44e-c49d-58f0-3b03-bf24f7d11663',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "062d163a-0742-73d9-1d9d-a582c82127e4",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.CurrentDiskQueueLength",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:34:04+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_062d163a-0742-73d9-1d9d-a582c82127e4",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Current Disk Queue Length",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "062d163a-0742-73d9-1d9d-a582c82127e4",
+ "monitorName": "Microsoft.Windows.Server.10.0.PhysicalDisk.CurrentDiskQueueLength",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:43:35+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_062d163a-0742-73d9-1d9d-a582c82127e4",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Current Disk Queue Length",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=062d163a-0742-73d9-1d9d-a582c82127e4'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "22e3b675-109e-9292-952e-7554604e3605",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.CurrentDiskQueueLength",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:34:01+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_22e3b675-109e-9292-952e-7554604e3605",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Current Disk Queue Length (Logical Disk)",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=22e3b675-109e-9292-952e-7554604e3605'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "8a16058b-d31e-c156-3460-2c6cae7bfc49",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.TotalCPUUtilization",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:15:05+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_8a16058b-d31e-c156-3460-2c6cae7bfc49",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Total CPU Utilization Percentage",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=8a16058b-d31e-c156-3460-2c6cae7bfc49'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=8a16058b-d31e-c156-3460-2c6cae7bfc49'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.PercentIdleTime",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T14:39:33+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Logical Disk Percent Idle Time",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "06400e6a-6bac-1717-1e0d-e28f31a2e88b",
+ "monitorId": "b8375781-0835-15b6-c782-f497b54b65ea",
+ "monitorName": "Microsoft.Windows.Server.Computer.HardwarePerformanceRollup",
+ "monitorType": "Dependency",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Canary-WLI-2",
+ "componentTypeId": "ea99500d-8d52-fc52-b5a5-10dcd1e9d2bd",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.Computer",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:50:13+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_06400e6a-6bac-1717-1e0d-e28f31a2e88b_b8375781-0835-15b6-c782-f497b54b65ea",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Windows Computer Hardware Performance Rollup",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Computer (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b8375781-0835-15b6-c782-f497b54b65ea'",
+ "name": "ComponentId='06400e6a-6bac-1717-1e0d-e28f31a2e88b',MonitorId=b8375781-0835-15b6-c782-f497b54b65ea'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "1a526816-f757-7328-d0b2-7daf65fd919b",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 0",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:21:08+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_1a526816-f757-7328-d0b2-7daf65fd919b_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='1a526816-f757-7328-d0b2-7daf65fd919b',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T14:45:35+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "767aea7b-2a28-8c7b-9a61-153eeced9466",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Disk 1",
+ "componentTypeId": "d4a60d0b-5d4e-d1b2-e215-2027a73ab38e",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.PhysicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-22T08:50:11+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_767aea7b-2a28-8c7b-9a61-153eeced9466_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Physical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='767aea7b-2a28-8c7b-9a61-153eeced9466',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "ebf38b50-d78a-817b-89ee-0e5870c643ef",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "D:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:02:52+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_ebf38b50-d78a-817b-89ee-0e5870c643ef_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='ebf38b50-d78a-817b-89ee-0e5870c643ef',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
+ "monitorId": "7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "monitorName": "System.Health.PerformanceState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Ethernet 2",
+ "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T09:46:13+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_7db3eece-fd0d-fddd-3af7-f8371a914874",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Performance",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=7db3eece-fd0d-fddd-3af7-f8371a914874'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
+ "monitorName": "Microsoft.Windows.Server.10.0.LogicalDisk.PercentIdleTime",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-18T14:37:36+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_08ec2bb4-32be-2fae-2d5a-6b65feb200a6",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Logical Disk Percent Idle Time",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Warning",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=08ec2bb4-32be-2fae-2d5a-6b65feb200a6'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "05a70c91-2163-d974-638d-2ddda2308153",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "C:",
+ "componentTypeId": "75582e9b-cae6-397b-6764-f7cf6cc620b0",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.LogicalDisk",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:10:46+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_05a70c91-2163-d974-638d-2ddda2308153_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Logical Disk",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='05a70c91-2163-d974-638d-2ddda2308153',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "3d945642-b98c-37b1-a75c-ee03cdb599ad",
+ "monitorId": "e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "monitorName": "System.Health.EntityState",
+ "monitorType": "Aggregate",
+ "monitorCategory": "EntityHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Ethernet 2",
+ "componentTypeId": "794a5028-be4c-caf5-3063-d4a75999f3c4",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.NetworkAdapter",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-21T09:10:36+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_3d945642-b98c-37b1-a75c-ee03cdb599ad_e3ab86a1-34fa-35b5-b864-da4db993c0f5",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Entity Health",
+ "monitorKind": "Standard",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Success",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Network Adapter",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "name": "ComponentId='3d945642-b98c-37b1-a75c-ee03cdb599ad',MonitorId=e3ab86a1-34fa-35b5-b864-da4db993c0f5'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ },
+ {
+ "properties": {
+ "componentId": "d91ce384-b682-883a-d02b-129bf37f218b",
+ "monitorId": "7af5bcb4-31e9-5ec9-268f-178c265a6c2c",
+ "monitorName": "Microsoft.Windows.Server.10.0.OperatingSystem.MemoryAvailableMBytes",
+ "monitorType": "Unit",
+ "monitorCategory": "PerformanceHealth",
+ "healthStateChanges": null,
+ "alertGeneration": null,
+ "children": null,
+ "workspaceId": "d00ad535-951e-4c6b-ae1b-5d4a5c7a8a3d",
+ "solutionId": null,
+ "workloadType": "BaseOS",
+ "componentName": "Windows Operating System",
+ "componentTypeId": "2dd80822-b238-41ed-2b0c-ccc3f8d0ad92",
+ "componentTypeName": "Microsoft.Windows.Server.10.0.Full.OperatingSystem",
+ "healthState": "Unknown",
+ "healthStateCategory": null,
+ "healthStateChangesStartTime": null,
+ "healthStateChangesEndTime": null,
+ "lastHealthStateChangeTime": "2018-08-19T09:17:06+05:30",
+ "aggregateProperties": {
+ "id": "a7f23fdb-e626-4f95-89aa-3a360a90861e_viv_rg_0f512229-ba29-4a4d-a9b8-d97b375ab8b1_canary-wli-2_d91ce384-b682-883a-d02b-129bf37f218b_7af5bcb4-31e9-5ec9-268f-178c265a6c2c",
+ "workloadId": "Canary-WLI-2",
+ "workloadId_Lower": "canary-wli-2",
+ "workloadResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.WorkloadMonitor/workloadInsights/Canary-WLI-2",
+ "workloadResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.workloadmonitor/workloadinsights/canary-wli-2",
+ "subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
+ "resourceGroupId": "viv_rg",
+ "resourceGroupName_Lower": "viv_rg",
+ "vmId": "0f512229-ba29-4a4d-a9b8-d97b375ab8b1",
+ "vmResourceId": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2",
+ "machineResourceId_Lower": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/microsoft.compute/virtualmachines/canary-wli-2",
+ "monitorDisplayName": "Available Megabytes of Memory",
+ "monitorKind": "Custom",
+ "currentHealth_CustomOrder": "03_Unknown",
+ "previousHealth": "Error",
+ "version": "2016.127.20180613",
+ "edition": "2016-Datacenter",
+ "location": "westcentralus",
+ "vmTags": "",
+ "vmName": "Canary-WLI-2",
+ "vmName_Lower": "canary-wli-2",
+ "componentTypeDisplayName": "Windows Server 2016 Operating System (Full)",
+ "osType": "Windows",
+ "operatingSystem": "Microsoft Windows Server 2016 Datacenter"
+ }
+ },
+ "etag": null,
+ "id": "/subscriptions/a7f23fdb-e626-4f95-89aa-3a360a90861e/resourcegroups/viv_rg/providers/Microsoft.Compute/virtualMachines/Canary-WLI-2/providers/Microsoft.WorkloadMonitor/healthInstances/ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7af5bcb4-31e9-5ec9-268f-178c265a6c2c'",
+ "name": "ComponentId='d91ce384-b682-883a-d02b-129bf37f218b',MonitorId=7af5bcb4-31e9-5ec9-268f-178c265a6c2c'",
+ "type": "Microsoft.WorkloadMonitor/workloadInsights/healthInstances"
+ }
+ ],
+ "nextLink": null
+ }
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Get.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Get.json
index e0667b1d173d..9ca9dd6502c3 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Get.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Get.json
@@ -3,9 +3,9 @@
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
"resourceGroupName": "viv_rg",
"resourceNamespace": "Microsoft.Compute",
- "resourceType" : "virtualMachines",
- "resourceName" : "Canary-WLI-2",
- "monitorId" : "1bbf53b8-2557-a521-f7c1-1023de57367a",
+ "resourceType": "virtualMachines",
+ "resourceName": "Canary-WLI-2",
+ "monitorId": "1bbf53b8-2557-a521-f7c1-1023de57367a",
"api-version": "2018-08-31-preview"
},
"responses": {
@@ -50,4 +50,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_ListByResource.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_ListByResource.json
index 4ec6f2919719..99e69d70cf97 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_ListByResource.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_ListByResource.json
@@ -3,8 +3,8 @@
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
"resourceGroupName": "viv_rg",
"resourceNamespace": "Microsoft.Compute",
- "resourceType" : "virtualMachines",
- "resourceName" : "Canary-WLI-2",
+ "resourceType": "virtualMachines",
+ "resourceName": "Canary-WLI-2",
"api-version": "2018-08-31-preview"
},
"responses": {
@@ -1840,4 +1840,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Update.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Update.json
index 2a9c8e4498e0..5c6660a5053e 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Update.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Monitors_Update.json
@@ -3,13 +3,13 @@
"subscriptionId": "a7f23fdb-e626-4f95-89aa-3a360a90861e",
"resourceGroupName": "viv_rg",
"resourceNamespace": "Microsoft.Compute",
- "resourceType" : "virtualMachines",
- "resourceName" : "Canary-WLI-2",
- "monitorId" : "1bbf53b8-2557-a521-f7c1-1023de57367a",
+ "resourceType": "virtualMachines",
+ "resourceName": "Canary-WLI-2",
+ "monitorId": "1bbf53b8-2557-a521-f7c1-1023de57367a",
"api-version": "2018-08-31-preview",
- "body":{
+ "body": {
"properties": {
- "criteria": [
+ "criteria": [
{
"healthState": "Warning",
"comparisonOperator": "LessThan",
@@ -27,8 +27,7 @@
},
"responses": {
"200": {
- "body": {
- }
- }
+ "body": {}
+ }
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Get.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Get.json
index f3a7d89b4f54..be28bfaad527 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Get.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Get.json
@@ -21,4 +21,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_ListByResource.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_ListByResource.json
index 2ac99f1039bb..0e592be2df8c 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_ListByResource.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_ListByResource.json
@@ -10,14 +10,14 @@
"responses": {
"200": {
"body": {
- "value": [
+ "value": [
{
"properties": {
- "actionGroupResourceIds": []
- }
- }
- ]
+ "actionGroupResourceIds": []
+ }
+ }
+ ]
}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Update.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Update.json
index 03397340f7b7..223d7fd95fe6 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Update.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/NotificationSettings_Update.json
@@ -5,7 +5,7 @@
"resourceNamespace": "Microsoft.Compute",
"resourceType": "virtualMachines",
"resourceName": "Canary-WLI-2",
- "notificationSettingName": "default",
+ "notificationSettingName": "default",
"api-version": "2018-08-31-preview",
"body": {
"properties": {
@@ -17,9 +17,7 @@
},
"responses": {
"200": {
- "body": {
-
- }
+ "body": {}
}
}
-}
\ No newline at end of file
+}
diff --git a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Operations_List.json b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Operations_List.json
index 959174d2cc49..d22931a57324 100644
--- a/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Operations_List.json
+++ b/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/examples/Operations_List.json
@@ -5,98 +5,98 @@
"responses": {
"200": {
"body": {
- "value": [
- {
- "name": "Microsoft.WorkloadMonitor/operations/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "operations",
- "operation": "Get operations",
- "description": "Gets the supported operations"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/monitorInstancesSummary/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "operation": "Get monitor instances summary",
- "description": "Gets summary of monitor instances"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/componentsSummary/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Components summary",
- "operation": "Get components summary",
- "description": "Gets summary of components"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/monitorInstances/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Monitor instances",
- "operation": "Get monitor instances",
- "description": "Gets instances of monitors for the resource"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/components/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Components",
- "operation": "Get components",
- "description": "Gets components for the resource"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/monitors/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Monitors",
- "operation": "Get monitors",
- "description": "Gets monitors for the resource"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/monitors/write",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Monitors",
- "operation": "Configure monitor",
- "description": "Configure monitor for the resource"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/notificationSettings/read",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Notification settings",
- "operation": "Get notification settings",
- "description": "Gets notification settings for the resource"
- },
- "origin": "user,system"
- },
- {
- "name": "Microsoft.WorkloadMonitor/notificationSettings/write",
- "display": {
- "provider": "Microsoft.WorkloadMonitor",
- "resource": "Notification settings",
- "operation": "Configure notification settings",
- "description": "Configure notification settings for the resource"
- },
- "origin": "user,system"
- }
- ]
- }
+ "value": [
+ {
+ "name": "Microsoft.WorkloadMonitor/operations/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "operations",
+ "operation": "Get operations",
+ "description": "Gets the supported operations"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/monitorInstancesSummary/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "operation": "Get monitor instances summary",
+ "description": "Gets summary of monitor instances"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/componentsSummary/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Components summary",
+ "operation": "Get components summary",
+ "description": "Gets summary of components"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/monitorInstances/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Monitor instances",
+ "operation": "Get monitor instances",
+ "description": "Gets instances of monitors for the resource"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/components/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Components",
+ "operation": "Get components",
+ "description": "Gets components for the resource"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/monitors/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Monitors",
+ "operation": "Get monitors",
+ "description": "Gets monitors for the resource"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/monitors/write",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Monitors",
+ "operation": "Configure monitor",
+ "description": "Configure monitor for the resource"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/notificationSettings/read",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Notification settings",
+ "operation": "Get notification settings",
+ "description": "Gets notification settings for the resource"
+ },
+ "origin": "user,system"
+ },
+ {
+ "name": "Microsoft.WorkloadMonitor/notificationSettings/write",
+ "display": {
+ "provider": "Microsoft.WorkloadMonitor",
+ "resource": "Notification settings",
+ "operation": "Configure notification settings",
+ "description": "Configure notification settings for the resource"
+ },
+ "origin": "user,system"
+ }
+ ]
+ }
}
}
-}
\ No newline at end of file
+}